From 4ea7013a57fdc3b54a035801d7afcfdfe0d1a53d Mon Sep 17 00:00:00 2001 From: Steve Jones Date: Wed, 22 Apr 2026 15:01:30 -0400 Subject: [PATCH 01/74] Fix stale @return docblock on license context methods missing fallback_active key Both get_license_context() and resolve_license_context() declared a 4-key return shape but resolve_license_context() now returns a 5th key fallback_active. PHPStan and IDE type inference would flag any access to $context['fallback_active'] as an undefined offset. Co-Authored-By: Claude Sonnet 4.6 --- admin/AdminPage/AccessibilityReportsPage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/AdminPage/AccessibilityReportsPage.php b/admin/AdminPage/AccessibilityReportsPage.php index c20ddd1ed..e16be098a 100644 --- a/admin/AdminPage/AccessibilityReportsPage.php +++ b/admin/AdminPage/AccessibilityReportsPage.php @@ -304,7 +304,7 @@ class="edac-reports-preview__image" * Pro should only be treated as authoritative when it is both installed and valid. * Otherwise the reports page should fall back to the free plugin state. * - * @return array{has_pro_plugin:bool,is_pro:bool,status:string,is_connected:bool} + * @return array{has_pro_plugin:bool,is_pro:bool,status:string,is_connected:bool,fallback_active:bool} */ private function get_license_context(): array { $has_pro_plugin = defined( 'EDACP_VERSION' ); @@ -324,7 +324,7 @@ private function get_license_context(): array { * @param string $free_status Current free license status. * @param string $site_id Current connected site ID. * @param bool $fallback_active Whether a fallback from Pro to Free is currently active. - * @return array{has_pro_plugin:bool,is_pro:bool,status:string,is_connected:bool} + * @return array{has_pro_plugin:bool,is_pro:bool,status:string,is_connected:bool,fallback_active:bool} */ private static function resolve_license_context( bool $has_pro_plugin, string $pro_status, string $free_status, string $site_id, bool $fallback_active = false ): array { $is_pro = $has_pro_plugin && 'valid' === $pro_status && ! $fallback_active; From cd1f6019a31a9478f933c5261c16b08c806be662 Mon Sep 17 00:00:00 2001 From: Amber Hinds Date: Sun, 26 Apr 2026 16:41:58 -0500 Subject: [PATCH 02/74] Revise screenshots for version 1.40.0 Updated the screenshots section to improve clarity and added a new item for weekly email reports. --- readme.txt | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/readme.txt b/readme.txt index 824651266..387477b85 100644 --- a/readme.txt +++ b/readme.txt @@ -266,14 +266,16 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Pro == Screenshots == 1. WordPress post editor showing the Accessibility Checker sidebar panel expanded reporting 27 problems, 41 Needs Review, 11th grade reading level and a Passed Checks score of 70%. Issues identified include empty links, ambiguous anchor text, linked image empty alternative text, missing form label, insufficient color contrast, incorrect heading order, and improper use of link. -2. Accessibility problems can be viewed on the front end of the website, as shown on the NASA website, with a dashed pink outline around the element and explanation of the issue and how to fix it. -3. Accessibility Checker sidebar for the block editor and metabox in the classic editor. Two different ways to view accessibility scan reports. -4. Accessibility Analysis opened in the sidebar and metabox. Actions for issues are "View on page," "Show code," and "Dismiss issue". -5. Dismiss issues to remove them from reports and document manual testing. Document reasons for dismissing issues as False positive, Remediated, or Confirmed accessible and add an optional comment. Dismissed issues show who they were dismissed by, when, and why. Dismissed issues can be reopened. -6. Grade-level readability checks and simplified summary insertion for AAA compliance. Reading level for the post and the simplified summary is reported. Simplified summary shown automatically inserted before the post content. -7. Accessibility Checker 100% passed checks example when no issues can be found or only dismissed issues exist, shown in both the sidebar and metabox. -8. Accessibility Checker general settings: post types to be checked, simplified summary settings, footer accessibility statement settings, and data deletion. -9. Accessibility Checker fixes settings: 12 automated fixes for common accessibility issues on WordPress websites. +2. Accessibility problems can be viewed on the front end of the website, with a dashed pink outline around the element and an explanation of the issue and how to fix it in an Accessibility Checker dialog. +3. Example of the front-end highlighter docked to the right, rather than in a dialog overlayed on the website. +4. Accessibility Checker sidebar for the block editor and metabox in the classic editor. Two different ways to view accessibility scan reports. +5. Accessibility Analysis opened in the sidebar and metabox. Actions for issues are "View on page," "Show code," and "Dismiss issue". +6. Dismiss issues to remove them from reports and document manual testing. Document reasons for dismissing issues as False positive, Remediated, or Confirmed accessible, and add an optional comment. Dismissed issues show who they were dismissed by, when, and why. Dismissed issues can be reopened. +7. Grade-level readability checks and simplified summary insertion for AAA compliance. Reading level for the post and the simplified summary is reported. Simplified summary shown automatically inserted before the post content. +8. Accessibility Checker 100% passed checks example when no issues can be found or only dismissed issues exist, shown in both the sidebar and metabox. +9. Accessibility Checker general settings: post types to be checked, simplified summary settings, footer accessibility statement settings, and data deletion. +10. Accessibility Checker fixes settings: 12 automated fixes for common accessibility issues on WordPress websites. +11. Enable weekly email reports so you can get updates in your inbox about accessibility status without logging into your website. == Changelog == From 7dea5d2ff7a0255d585070c9160d836e9cf8ea91 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 12:30:05 +0000 Subject: [PATCH 03/74] docs: regenerate hooks docs --- docs/hooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/hooks.md b/docs/hooks.md index a6633d693..bd6d0c7e0 100644 --- a/docs/hooks.md +++ b/docs/hooks.md @@ -46,7 +46,7 @@ This document is auto-generated by `tools/generate-hooks-docs.php`. It lists onl | `edac_max_alt_length` | filter | [admin/class-enqueue-admin.php](https://github.com/equalizedigital/accessibility-checker/blob/develop/admin/class-enqueue-admin.php#L144) | 144 | Enqueue the admin and editorApp scripts. | | | `edac_mydot_api_endpoint` | filter | [includes/classes/MyDot/Connector.php](https://github.com/equalizedigital/accessibility-checker/blob/develop/includes/classes/MyDot/Connector.php#L510) | 510 | Filters the MyDot API endpoint URL. | 1.xx.x | | `edac_mydot_product_id` | filter | [includes/classes/MyDot/Connector.php](https://github.com/equalizedigital/accessibility-checker/blob/develop/includes/classes/MyDot/Connector.php#L530) | 530 | Filters the MyDot product ID. | 1.xx.x | -| `edac_pro_product_id` | filter | [includes/classes/MyDot/Connector.php](https://github.com/equalizedigital/accessibility-checker/blob/develop/includes/classes/MyDot/Connector.php#L1278) | 1278 | Infer license metadata from an EDD response. | 1.xx.x | +| `edac_pro_product_id` | filter | [includes/classes/MyDot/Connector.php](https://github.com/equalizedigital/accessibility-checker/blob/develop/includes/classes/MyDot/Connector.php#L1284) | 1284 | Infer license metadata from an EDD response. | 1.xx.x | | `edac_pro_setting_saving_checkbox` | action | [includes/options-page.php](https://github.com/equalizedigital/accessibility-checker/blob/develop/includes/options-page.php#L882) | 882 | Filter to run before saving a pro checkbox setting. | 1.31.0 | | `edac_scannable_post_statuses` | filter | [admin/class-settings.php](https://github.com/equalizedigital/accessibility-checker/blob/develop/admin/class-settings.php#L28) | 28 | Filters the list of post statuses that are scannable. | 1.29.0 | | `edac_settings_tab_content` | action | [partials/settings-page.php](https://github.com/equalizedigital/accessibility-checker/blob/develop/partials/settings-page.php#L175) | 175 | Fires after the settings tab content has maybe been displayed. | 1.4.0 | From 8a473138a96f85987adf81f15770c167f1932192 Mon Sep 17 00:00:00 2001 From: Amber Hinds Date: Mon, 27 Apr 2026 15:32:16 -0500 Subject: [PATCH 04/74] Fix spelling error in readme.txt Corrected spelling of 'overlaid' in the screenshot example. --- readme.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index 387477b85..b2997e2e3 100644 --- a/readme.txt +++ b/readme.txt @@ -267,7 +267,7 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Pro 1. WordPress post editor showing the Accessibility Checker sidebar panel expanded reporting 27 problems, 41 Needs Review, 11th grade reading level and a Passed Checks score of 70%. Issues identified include empty links, ambiguous anchor text, linked image empty alternative text, missing form label, insufficient color contrast, incorrect heading order, and improper use of link. 2. Accessibility problems can be viewed on the front end of the website, with a dashed pink outline around the element and an explanation of the issue and how to fix it in an Accessibility Checker dialog. -3. Example of the front-end highlighter docked to the right, rather than in a dialog overlayed on the website. +3. Example of the front-end highlighter docked to the right, rather than in a dialog overlaid on the website. 4. Accessibility Checker sidebar for the block editor and metabox in the classic editor. Two different ways to view accessibility scan reports. 5. Accessibility Analysis opened in the sidebar and metabox. Actions for issues are "View on page," "Show code," and "Dismiss issue". 6. Dismiss issues to remove them from reports and document manual testing. Document reasons for dismissing issues as False positive, Remediated, or Confirmed accessible, and add an optional comment. Dismissed issues show who they were dismissed by, when, and why. Dismissed issues can be reopened. From 01d28d4bd2caeb0e7dc0c651ea435db07a1cb01e Mon Sep 17 00:00:00 2001 From: pattonwebz <3902039+pattonwebz@users.noreply.github.com> Date: Mon, 4 May 2026 17:50:33 +0000 Subject: [PATCH 05/74] Update POT translation file --- languages/accessibility-checker.pot | 196 ++++++++++++++++++---------- 1 file changed, 127 insertions(+), 69 deletions(-) diff --git a/languages/accessibility-checker.pot b/languages/accessibility-checker.pot index d035a141a..e521f818b 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.40.0-alpha\n" +"Project-Id-Version: Accessibility Checker 1.40.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: 2026-04-20T19:54:54+00:00\n" +"POT-Creation-Date: 2026-05-04T17:50:18+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" @@ -47,7 +47,7 @@ msgid "https://equalizedigital.com" msgstr "" #: admin/AdminPage/AccessibilityReportsPage.php:56 -#: admin/AdminPage/AccessibilityReportsPage.php:137 +#: admin/AdminPage/AccessibilityReportsPage.php:138 msgid "Accessibility Reports" msgstr "" @@ -55,151 +55,155 @@ msgstr "" msgid "New" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:143 +#: admin/AdminPage/AccessibilityReportsPage.php:144 msgid "Get recurring email reports with a snapshot of your site’s accessibility, including total issues, trends over time, most problematic pages, and the most severe issues to fix first." msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:145 +#: admin/AdminPage/AccessibilityReportsPage.php:146 msgid "Get recurring email reports with a snapshot of your site’s accessibility, including total issues, trends over time, most problematic pages, and the most severe issues to fix first. Some details, like full-site coverage and issue breakdowns, are available in Pro." msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:156 -#: admin/AdminPage/AccessibilityReportsPage.php:170 +#: admin/AdminPage/AccessibilityReportsPage.php:157 +#: admin/AdminPage/AccessibilityReportsPage.php:171 msgid "Enable Email Reports" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:163 -#: admin/AdminPage/AccessibilityReportsPage.php:167 -#: admin/AdminPage/AccessibilityReportsPage.php:262 +#: admin/AdminPage/AccessibilityReportsPage.php:164 +#: admin/AdminPage/AccessibilityReportsPage.php:168 +#: admin/AdminPage/AccessibilityReportsPage.php:260 #: admin/AdminPage/ConnectedServicesPage.php:153 msgid "Free License Key" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:176 +#: admin/AdminPage/AccessibilityReportsPage.php:177 msgid "Get a Free License Key" msgstr "" #. translators: %s: dashboard URL. -#: admin/AdminPage/AccessibilityReportsPage.php:181 +#: admin/AdminPage/AccessibilityReportsPage.php:182 #, php-format msgid "Got the plugin from Equalize Digital? Your key is in your dashboard." msgstr "" #. translators: %s: signup URL. -#: admin/AdminPage/AccessibilityReportsPage.php:190 +#: admin/AdminPage/AccessibilityReportsPage.php:191 #, php-format msgid "Installed from WordPress.org? Create a free account to get one." msgstr "" #. translators: %s: signup URL. -#: admin/AdminPage/AccessibilityReportsPage.php:199 +#: admin/AdminPage/AccessibilityReportsPage.php:200 #, php-format msgid "Not sure? Just create a free account. It only takes a minute." msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:211 +#: admin/AdminPage/AccessibilityReportsPage.php:212 msgid "Reports Enabled" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:214 +#: admin/AdminPage/AccessibilityReportsPage.php:215 msgid "You’ll receive weekly accessibility reports for this site." msgstr "" #. translators: %s: next report date. -#: admin/AdminPage/AccessibilityReportsPage.php:218 +#: admin/AdminPage/AccessibilityReportsPage.php:219 #, php-format msgid "Next report: %s" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:222 -msgid "Manage Recipients in Dashboard" -msgstr "" - -#: admin/AdminPage/AccessibilityReportsPage.php:228 +#: admin/AdminPage/AccessibilityReportsPage.php:226 msgid "Full Coverage" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:228 +#: admin/AdminPage/AccessibilityReportsPage.php:226 msgid "Limited Coverage" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:232 +#: admin/AdminPage/AccessibilityReportsPage.php:230 msgid "Your reports include all post types and taxonomies." msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:234 +#: admin/AdminPage/AccessibilityReportsPage.php:232 msgid "Full-site scanning enabled" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:235 +#: admin/AdminPage/AccessibilityReportsPage.php:233 msgid "Complete issue breakdowns" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:236 +#: admin/AdminPage/AccessibilityReportsPage.php:234 msgid "Detailed reporting" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:239 +#: admin/AdminPage/AccessibilityReportsPage.php:237 msgid "Your reports only include part of your site." msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:240 +#: admin/AdminPage/AccessibilityReportsPage.php:238 msgid "Upgrade to Pro to:" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:242 +#: admin/AdminPage/AccessibilityReportsPage.php:240 msgid "Scan all content types" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:243 +#: admin/AdminPage/AccessibilityReportsPage.php:241 msgid "Get full issue breakdowns" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:244 +#: admin/AdminPage/AccessibilityReportsPage.php:242 msgid "Receive more detailed reports" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:247 +#: admin/AdminPage/AccessibilityReportsPage.php:245 #: admin/class-upgrade-promotion.php:62 msgid "Upgrade to Pro" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:253 +#: admin/AdminPage/AccessibilityReportsPage.php:251 msgid "Accessibility Summary" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:254 +#: admin/AdminPage/AccessibilityReportsPage.php:252 msgid "This summary reflects the latest scan data available for your site." msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:256 +#: admin/AdminPage/AccessibilityReportsPage.php:254 msgid "Total Issues Found" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:262 +#: admin/AdminPage/AccessibilityReportsPage.php:260 msgid "Account Connection" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:270 +#: admin/AdminPage/AccessibilityReportsPage.php:268 msgid "Disable Email Reports" msgstr "" -#. translators: %1$s: terms link, %2$s: privacy link. -#: admin/AdminPage/AccessibilityReportsPage.php:281 +#. translators: %1$s: privacy link, %2$s: data processing agreement link, %3$s: privacy policy aria label, %4$s: data processing agreement aria label. +#: admin/AdminPage/AccessibilityReportsPage.php:279 #, php-format -msgid "By connecting this site, you agree to the Equalize Digital Terms of Service and Privacy Policy." +msgid "By connecting this site, you agree to Equalize Digital's Privacy Policy and Data Processing Agreement ." +msgstr "" + +#: admin/AdminPage/AccessibilityReportsPage.php:282 +msgid "Privacy Policy (opens in a new window)" +msgstr "" + +#: admin/AdminPage/AccessibilityReportsPage.php:283 +msgid "Data Processing Agreement (opens in a new window)" msgstr "" #: admin/AdminPage/AccessibilityReportsPage.php:294 -msgid "Preview of the weekly accessibility report email." +msgid "Weekly email includes total issues found and changes since the last report, coverage information, counts of problems, needs review, passed test percentage, and information about the most problematic pages and the most severe issues." msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:381 +#: admin/AdminPage/AccessibilityReportsPage.php:387 #: build/sidebar.bundle.js:2 msgid "N/A" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:471 +#: admin/AdminPage/AccessibilityReportsPage.php:477 #: admin/class-ajax.php:330 #: build/frontendHighlighterApp.bundle.js:2 #: build/issueModal.bundle.js:2 @@ -207,7 +211,7 @@ msgstr "" msgid "Critical" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:473 +#: admin/AdminPage/AccessibilityReportsPage.php:479 #: admin/class-ajax.php:334 #: build/frontendHighlighterApp.bundle.js:2 #: build/issueModal.bundle.js:2 @@ -215,7 +219,7 @@ msgstr "" msgid "High" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:475 +#: admin/AdminPage/AccessibilityReportsPage.php:481 #: admin/class-ajax.php:338 #: build/frontendHighlighterApp.bundle.js:2 #: build/issueModal.bundle.js:2 @@ -223,7 +227,7 @@ msgstr "" msgid "Medium" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:477 +#: admin/AdminPage/AccessibilityReportsPage.php:483 #: admin/class-ajax.php:342 #: build/frontendHighlighterApp.bundle.js:2 #: build/issueModal.bundle.js:2 @@ -231,7 +235,7 @@ msgstr "" msgid "Low" msgstr "" -#: admin/AdminPage/AccessibilityReportsPage.php:479 +#: admin/AdminPage/AccessibilityReportsPage.php:485 #: includes/classes/class-rest-api.php:997 msgid "Unknown" msgstr "" @@ -475,18 +479,17 @@ msgid "Upgrade to a paid version of Accessibility Checker from November 24th to msgstr "" #: admin/class-admin-notices.php:141 -#: admin/class-admin-notices.php:231 msgid "Ask a Pre-Sale Question" msgstr "" #: admin/class-admin-notices.php:142 -#: admin/class-admin-notices.php:232 +#: admin/class-admin-notices.php:245 msgid "Upgrade Now" msgstr "" #: admin/class-admin-notices.php:161 -#: admin/class-admin-notices.php:251 -#: admin/class-admin-notices.php:340 +#: admin/class-admin-notices.php:266 +#: admin/class-admin-notices.php:356 #: admin/class-ajax.php:60 #: admin/class-ajax.php:223 #: admin/class-ajax.php:634 @@ -499,36 +502,54 @@ msgid "Permission Denied" msgstr "" #: admin/class-admin-notices.php:173 -#: admin/class-admin-notices.php:263 -#: admin/class-admin-notices.php:364 +#: admin/class-admin-notices.php:279 +#: admin/class-admin-notices.php:380 msgid "Update option wasn't successful" msgstr "" -#: admin/class-admin-notices.php:229 -msgid "🎉 Get 25% off Accessibility Checker Pro in honor of Global Accessibility Awareness Day! 🎉" +#: admin/class-admin-notices.php:226 +msgid "⚡️ Global Accessibility Awareness Day Flash Sale" +msgstr "" + +#. translators: 1: opening anchor tag for accessibility courses link, 2: closing anchor tag, 3: opening anchor tag for ArchiveWP link, 4: closing anchor tag +#: admin/class-admin-notices.php:232 +#, php-format +msgid "3 days only: Save 15%% on %1$saccessibility courses%2$s and Equalize Digital's %3$sArchiveWP plugin%4$s. Go further with accessibility." +msgstr "" + +#: admin/class-admin-notices.php:238 +msgid "Limited-time offer • May 20–22 • Use coupon code " msgstr "" -#: admin/class-admin-notices.php:230 -msgid "Use coupon code GAAD25 from May 13th-May 21st to get access to full-site scanning and other pro features at a special discount. Not sure if upgrading is right for you?" +#: admin/class-admin-notices.php:239 +msgid "Grab the Deal Before It Ends" msgstr "" -#: admin/class-admin-notices.php:315 +#: admin/class-admin-notices.php:242 +msgid "3 days only: Save 15% when you upgrade to Accessibility Checker Pro with coupon code" +msgstr "" + +#: admin/class-admin-notices.php:244 +msgid "Limited-time offer • May 20–22" +msgstr "" + +#: admin/class-admin-notices.php:331 msgid "Hello! Thank you for using Accessibility Checker as part of your accessibility toolkit. Since you've been using it for a while, would you please write a 5-star review of Accessibility Checker in the WordPress plugin directory? This will help increase our visibility so more people can learn about the importance of web accessibility. Thanks so much!" msgstr "" -#: admin/class-admin-notices.php:318 +#: admin/class-admin-notices.php:334 msgid "Write A Review" msgstr "" -#: admin/class-admin-notices.php:319 +#: admin/class-admin-notices.php:335 msgid "Remind Me In Two Weeks" msgstr "" -#: admin/class-admin-notices.php:320 +#: admin/class-admin-notices.php:336 msgid "Never Ask Again" msgstr "" -#: admin/class-admin-notices.php:347 +#: admin/class-admin-notices.php:363 msgid "The review action value was not set" msgstr "" @@ -5082,6 +5103,15 @@ msgstr "" msgid "%1$d of %2$d" msgstr "" +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Untitled issue" +msgstr "" + +#: build/frontendHighlighterApp.bundle.js:2 +#, js-format +msgid "Issue %1$d of %2$d: %3$s" +msgstr "" + #: build/frontendHighlighterApp.bundle.js:2 msgid "The element is not visible. Try disabling styles." msgstr "" @@ -5192,10 +5222,6 @@ msgstr "" msgid "WCAG:" msgstr "" -#: build/frontendHighlighterApp.bundle.js:2 -msgid "Issue type:" -msgstr "" - #: build/frontendHighlighterApp.bundle.js:2 msgid "Ignored" msgstr "" @@ -5238,6 +5264,18 @@ msgstr "" msgid "Enable Styles" msgstr "" +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Enable Page Styles" +msgstr "" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Page styles disabled." +msgstr "" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Page styles re-enabled." +msgstr "" + #: build/frontendHighlighterApp.bundle.js:2 msgid "There are no settings to display." msgstr "" @@ -5283,6 +5321,10 @@ msgstr "" msgid "Landmark: %s" msgstr "" +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Failed to load scanner script." +msgstr "" + #: build/frontendHighlighterApp.bundle.js:2 msgid "Scanner function not found." msgstr "" @@ -5292,11 +5334,15 @@ msgid "Scanning..." msgstr "" #: build/frontendHighlighterApp.bundle.js:2 -msgid "No violations found, skipping save." +msgid "Missing postId or nonce." msgstr "" #: build/frontendHighlighterApp.bundle.js:2 -msgid "Missing postId or nonce." +msgid "Rescan complete. No violations found." +msgstr "" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "No violations found, skipping save." msgstr "" #: build/frontendHighlighterApp.bundle.js:2 @@ -5307,6 +5353,18 @@ msgstr "" msgid "Error saving scan results." msgstr "" +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescan already in progress." +msgstr "" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescanning this page." +msgstr "" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescan complete." +msgstr "" + #: build/frontendHighlighterApp.bundle.js:2 msgid "Error: Missing required parameters." msgstr "" From a861e10b56f9a9c18c12fab0d1304cbe9e04a437 Mon Sep 17 00:00:00 2001 From: pattonwebz Date: Tue, 5 May 2026 18:55:33 +0100 Subject: [PATCH 06/74] Add versioning to scanner bundle URL Updated the scannerBundleUrl to include the version parameter for better cache management. --- includes/classes/class-enqueue-frontend.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/classes/class-enqueue-frontend.php b/includes/classes/class-enqueue-frontend.php index ab8e69834..3d3bae3bb 100644 --- a/includes/classes/class-enqueue-frontend.php +++ b/includes/classes/class-enqueue-frontend.php @@ -161,7 +161,7 @@ public static function maybe_enqueue_frontend_highlighter() { 'appCssUrl' => EDAC_PLUGIN_URL . 'build/css/frontendHighlighterApp.css?ver=' . EDAC_VERSION, 'widgetPosition' => get_option( 'edac_frontend_highlighter_position', 'right' ), 'editorLink' => get_edit_post_link( $post_id ), - 'scannerBundleUrl' => plugin_dir_url( EDAC_PLUGIN_FILE ) . 'build/pageScanner.bundle.js', + 'scannerBundleUrl' => plugin_dir_url( EDAC_PLUGIN_FILE ) . 'build/pageScanner.bundle.js?ver=' . EDAC_VERSION, 'adminThemeColor' => self::get_admin_theme_color(), ] ); From 00dd7959f69749e39a80c53569126ce514a7b33b Mon Sep 17 00:00:00 2001 From: William Patton Date: Tue, 5 May 2026 19:19:17 +0100 Subject: [PATCH 07/74] escape the scanner bundle url and use add_query_arg to append ver for cache busting --- includes/classes/class-enqueue-frontend.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/classes/class-enqueue-frontend.php b/includes/classes/class-enqueue-frontend.php index 3d3bae3bb..d4fca9491 100644 --- a/includes/classes/class-enqueue-frontend.php +++ b/includes/classes/class-enqueue-frontend.php @@ -161,7 +161,7 @@ public static function maybe_enqueue_frontend_highlighter() { 'appCssUrl' => EDAC_PLUGIN_URL . 'build/css/frontendHighlighterApp.css?ver=' . EDAC_VERSION, 'widgetPosition' => get_option( 'edac_frontend_highlighter_position', 'right' ), 'editorLink' => get_edit_post_link( $post_id ), - 'scannerBundleUrl' => plugin_dir_url( EDAC_PLUGIN_FILE ) . 'build/pageScanner.bundle.js?ver=' . EDAC_VERSION, + 'scannerBundleUrl' => esc_url_raw( add_query_arg( 'ver', EDAC_VERSION, plugin_dir_url( __FILE__ ) . 'build/pageScanner.bundle.js' ) ), 'adminThemeColor' => self::get_admin_theme_color(), ] ); From 144bd77fcf6c64e5c503717efd1f24e7def92183 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 5 May 2026 18:23:40 +0000 Subject: [PATCH 08/74] Add PHPUnit test verifying scannerBundleUrl includes version query string Agent-Logs-Url: https://github.com/equalizedigital/accessibility-checker/sessions/44a9a616-a57e-4349-b3f3-7d5656203ba8 Co-authored-by: pattonwebz <3902039+pattonwebz@users.noreply.github.com> --- .../includes/classes/EnqueueFrontendTest.php | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/tests/phpunit/includes/classes/EnqueueFrontendTest.php b/tests/phpunit/includes/classes/EnqueueFrontendTest.php index 8b48f50cd..c28c34c23 100644 --- a/tests/phpunit/includes/classes/EnqueueFrontendTest.php +++ b/tests/phpunit/includes/classes/EnqueueFrontendTest.php @@ -51,6 +51,28 @@ protected function tearDown(): void { parent::tearDown(); } + /** + * Ensure the localized scannerBundleUrl includes the plugin version as a query string parameter. + */ + public function testScannerBundleUrlIncludesVersionQueryString(): void { + $admin_id = $this->factory()->user->create( [ 'role' => 'administrator' ] ); + wp_set_current_user( $admin_id ); + + $created_post = $this->factory()->post->create_and_get( [ 'post_type' => 'post' ] ); + + global $post; + $post = $created_post; + + Enqueue_Frontend::maybe_enqueue_frontend_highlighter(); + + global $wp_scripts; + $localized_data = $wp_scripts->get_data( 'edac-frontend-highlighter-app', 'data' ); + + $this->assertNotEmpty( $localized_data ); + $this->assertStringContainsString( 'scannerBundleUrl', $localized_data ); + $this->assertStringContainsString( 'ver=' . EDAC_VERSION, $localized_data ); + } + /** * Ensure the highlighter uses the filtered post ID when determining scannable post types. */ From a66e4b09c454ca457c9c33d1b195408b93150dcf Mon Sep 17 00:00:00 2001 From: PTC Date: Tue, 5 May 2026 19:39:08 +0000 Subject: [PATCH 09/74] PTC accessibility-checker (1985): Edits by Steve Jones (May 05, 2026 19:39:04652135) --- ...e_IL-b93b9e514c44a41f97246123aa57f5c4.json | 2 +- languages/accessibility-checker-he_IL.mo | Bin 191639 -> 222346 bytes languages/accessibility-checker-he_IL.po | 3457 +++++++++++------ 3 files changed, 2343 insertions(+), 1116 deletions(-) diff --git a/languages/accessibility-checker-he_IL-b93b9e514c44a41f97246123aa57f5c4.json b/languages/accessibility-checker-he_IL-b93b9e514c44a41f97246123aa57f5c4.json index 3ee3a676f..2ccde0044 100644 --- a/languages/accessibility-checker-he_IL-b93b9e514c44a41f97246123aa57f5c4.json +++ b/languages/accessibility-checker-he_IL-b93b9e514c44a41f97246123aa57f5c4.json @@ -1 +1 @@ -{"translation-revision-date":"YEAR-MO-DA HO:MI+ZONE","generator":"WP-CLI\/2.12.0","source":"build\/frontendHighlighterApp.bundle.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"he_IL","plural-forms":"nplurals=2; plural=(n != 1);"},"Accessibility Checker":["Accessibility Checker"],"Critical":["\u05e7\u05e8\u05d9\u05d8\u05d9"],"High":["\u05d2\u05d1\u05d5\u05d4"],"Medium":["\u05d1\u05d9\u05e0\u05d5\u05e0\u05d9"],"Low":["\u05e0\u05de\u05d5\u05da"],"Problem":["\u05d1\u05e2\u05d9\u05d4","\u05d1\u05e2\u05d9\u05d5\u05ea"],"Needs Review":["\u05d3\u05d5\u05e8\u05e9 \u05d1\u05d3\u05d9\u05e7\u05d4","\u05d3\u05d5\u05e8\u05e9 \u05d1\u05d3\u05d9\u05e7\u05d4"],", opens a new window":[", \u05e0\u05e4\u05ea\u05d7 \u05d7\u05dc\u05d5\u05df \u05d7\u05d3\u05e9"],"Save":["\u05e9\u05de\u05d5\u05e8"],"Clear Issues":["\u05e0\u05e7\u05d4 \u05d1\u05e2\u05d9\u05d5\u05ea"],"Saving...":["\u05e9\u05d5\u05de\u05e8..."],"Settings saved successfully. You must %svisit the editor%s and save the post to rescan and remove fixed issues from Accessibility Checker reports.":["\u05d4\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e0\u05e9\u05de\u05e8\u05d5 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4. \u05e2\u05dc\u05d9\u05da %s\u05dc\u05d1\u05e7\u05e8 \u05d1\u05e2\u05d5\u05e8\u05da%s \u05d5\u05dc\u05e9\u05de\u05d5\u05e8 \u05d0\u05ea \u05d4\u05e4\u05d5\u05e1\u05d8 \u05db\u05d3\u05d9 \u05dc\u05e1\u05e8\u05d5\u05e7 \u05de\u05d7\u05d3\u05e9 \u05d5\u05dc\u05d4\u05e1\u05d9\u05e8 \u05d1\u05e2\u05d9\u05d5\u05ea \u05e9\u05ea\u05d5\u05e7\u05e0\u05d5 \u05de\u05d3\u05d5\u05d7\u05d5\u05ea \u05d4-Accessibility Checker."],"Settings saved successfully.":["\u05d4\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e0\u05e9\u05de\u05e8\u05d5 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4."],"Saving failed.":["\u05d4\u05e9\u05de\u05d9\u05e8\u05d4 \u05e0\u05db\u05e9\u05dc\u05d4."],"Fix Settings":["\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05ea\u05d9\u05e7\u05d5\u05df"],"This will clear all issues for this post. A save will be required to trigger a fresh scan of the post content. Do you want to continue?":["\u05e4\u05e2\u05d5\u05dc\u05d4 \u05d6\u05d5 \u05ea\u05e0\u05e7\u05d4 \u05d0\u05ea \u05db\u05dc \u05d4\u05d1\u05e2\u05d9\u05d5\u05ea \u05e2\u05d1\u05d5\u05e8 \u05e4\u05d5\u05e1\u05d8 \u05d6\u05d4. \u05d9\u05d9\u05d3\u05e8\u05e9 \u05e9\u05de\u05d9\u05e8\u05d4 \u05db\u05d3\u05d9 \u05dc\u05d4\u05e4\u05e2\u05d9\u05dc \u05e1\u05e8\u05d9\u05e7\u05d4 \u05d7\u05d3\u05e9\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05d4\u05e4\u05d5\u05e1\u05d8. \u05d4\u05d0\u05dd \u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d4\u05de\u05e9\u05d9\u05da?"],"Clearing...":["\u05de\u05e0\u05e7\u05d4..."],"Issues cleared successfully.":["\u05d4\u05d1\u05e2\u05d9\u05d5\u05ea \u05e0\u05d5\u05e7\u05d5 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4."],"Failed to clear issues.":["\u05e0\u05d9\u05e7\u05d5\u05d9 \u05d4\u05d1\u05e2\u05d9\u05d5\u05ea \u05e0\u05db\u05e9\u05dc."],"An error occurred while clearing issues.":["\u05d0\u05d9\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05de\u05d4\u05dc\u05da \u05e0\u05d9\u05e7\u05d5\u05d9 \u05d4\u05d1\u05e2\u05d9\u05d5\u05ea."],"Close fixes modal":["\u05e1\u05d2\u05d5\u05e8 \u05d7\u05dc\u05d5\u05df \u05ea\u05d9\u05e7\u05d5\u05e0\u05d9\u05dd"],"%1$d of %2$d":["%1$d \u05de\u05ea\u05d5\u05da %2$d"],"The element is not visible. Try disabling styles.":["\u05d4\u05e8\u05db\u05d9\u05d1 \u05d0\u05d9\u05e0\u05d5 \u05d2\u05dc\u05d5\u05d9. \u05e0\u05e1\u05d4 \u05dc\u05d4\u05e9\u05d1\u05d9\u05ea \u05e1\u05d2\u05e0\u05d5\u05e0\u05d5\u05ea."],"The element is not focusable. Try disabling styles.":["\u05d4\u05e8\u05db\u05d9\u05d1 \u05d0\u05d9\u05e0\u05d5 \u05e0\u05d9\u05ea\u05df \u05dc\u05de\u05d9\u05e7\u05d5\u05d3. \u05e0\u05e1\u05d4 \u05dc\u05d4\u05e9\u05d1\u05d9\u05ea \u05e1\u05d2\u05e0\u05d5\u05e0\u05d5\u05ea."],"The element was not found on the page.":["\u05d4\u05e8\u05db\u05d9\u05d1 \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0 \u05d1\u05d3\u05e3."],"Move to Left":["\u05d4\u05d6\u05d6\/\u05d9 \u05e9\u05de\u05d0\u05dc\u05d4"],"Move to Right":["\u05d4\u05d6\u05d6\/\u05d9 \u05d9\u05de\u05d9\u05e0\u05d4"],"Panel position reset.":["\u05de\u05d9\u05e7\u05d5\u05dd \u05d4\u05d7\u05dc\u05d5\u05e0\u05d9\u05ea \u05d0\u05d5\u05e4\u05e1."],"Panel moved to the left.":["\u05d4\u05d7\u05dc\u05d5\u05e0\u05d9\u05ea \u05d4\u05d5\u05d6\u05d6\u05d4 \u05e9\u05de\u05d0\u05dc\u05d4."],"Panel moved to the right.":["\u05d4\u05d7\u05dc\u05d5\u05e0\u05d9\u05ea \u05d4\u05d5\u05d6\u05d6\u05d4 \u05d9\u05de\u05d9\u05e0\u05d4."],"Open details for %1$s, %2$s of %3$s":["\u05e4\u05ea\u05d7 \u05e4\u05e8\u05d8\u05d9\u05dd \u05e2\u05d1\u05d5\u05e8 %1$s, %2$s \u05de\u05ea\u05d5\u05da %3$s"],"Undock Panel":["\u05e0\u05ea\u05e7\/\u05d9 \u05d7\u05dc\u05d5\u05e0\u05d9\u05ea"],"Dock Panel":["\u05e2\u05d2\u05df\/\u05d9 \u05d7\u05dc\u05d5\u05e0\u05d9\u05ea"],"Rescan This Page":["\u05e1\u05e8\u05d5\u05e7 \u05de\u05d7\u05d3\u05e9 \u05d0\u05ea \u05d4\u05d3\u05e3 \u05d4\u05d6\u05d4"],"Accessibility Checker Tools":["\u05db\u05dc\u05d9 Accessibility Checker"],"More options":["\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea"],"Disable Page Styles":["\u05d4\u05e9\u05d1\u05ea \u05e1\u05d2\u05e0\u05d5\u05e0\u05d5\u05ea \u05d3\u05e3"],"Disable Styles":["\u05d4\u05e9\u05d1\u05ea \u05e1\u05d2\u05e0\u05d5\u05e0\u05d5\u05ea"],"Close":["\u05e1\u05d2\u05d5\u05e8"],"No issues found on this page.":["\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d5 \u05d1\u05e2\u05d9\u05d5\u05ea \u05d1\u05d3\u05e3 \u05d6\u05d4."],"Loading...":["\u05d8\u05d5\u05e2\u05df..."],"Previous":["\u05e7\u05d5\u05d3\u05dd"],"Next":["\u05d4\u05d1\u05d0"],"Reset Position":["\u05d0\u05e4\u05e1\/\u05d9 \u05de\u05d9\u05e7\u05d5\u05dd"],"An error occurred when loading the issues.":["\u05d0\u05d9\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05d8\u05e2\u05d9\u05e0\u05ea \u05d4\u05d1\u05e2\u05d9\u05d5\u05ea."],"Panel docked.":["\u05d4\u05d7\u05dc\u05d5\u05e0\u05d9\u05ea \u05e2\u05d5\u05d2\u05e0\u05d4."],"Panel undocked.":["\u05d4\u05d7\u05dc\u05d5\u05e0\u05d9\u05ea \u05e0\u05d5\u05ea\u05e7\u05d4."],"Severity:":["\u05d7\u05d5\u05de\u05e8\u05d4:"],"WCAG:":["WCAG:"],"Issue type:":["\u05e1\u05d5\u05d2 \u05d4\u05d1\u05e2\u05d9\u05d4:"],"Ignored":["\u05d4\u05ea\u05e2\u05dc\u05dd\/\u05d9"],"Show explanation":["\u05d4\u05e6\u05d2 \u05d4\u05e1\u05d1\u05e8"],"Why It Matters":["\u05dc\u05de\u05d4 \u05d6\u05d4 \u05d7\u05e9\u05d5\u05d1"],"How to Fix":["\u05db\u05d9\u05e6\u05d3 \u05dc\u05ea\u05e7\u05df"],"More Detailed Documentation":["\u05ea\u05d9\u05e2\u05d5\u05d3 \u05de\u05e4\u05d5\u05e8\u05d8 \u05d9\u05d5\u05ea\u05e8"],"Show Affected Code":["\u05d4\u05e6\u05d2\/\u05d9 \u05e7\u05d5\u05d3 \u05de\u05d5\u05e9\u05e4\u05e2"],"Fix issue: %s":["\u05ea\u05e7\u05df \u05d1\u05e2\u05d9\u05d4: %s"],"Fix Issue":["\u05ea\u05e7\u05df \u05d1\u05e2\u05d9\u05d4"],"Enable Styles":["\u05d4\u05e4\u05e2\u05dc \u05e1\u05d2\u05e0\u05d5\u05e0\u05d5\u05ea"],"There are no settings to display.":["\u05d0\u05d9\u05df \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05dc\u05d4\u05e6\u05d2\u05d4."],"These settings enable global fixes across your entire site. Pages may need to be resaved or a full site scan run to see fixes reflected in reports.":["\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d0\u05dc\u05d5 \u05de\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05ea\u05d9\u05e7\u05d5\u05e0\u05d9\u05dd \u05d2\u05dc\u05d5\u05d1\u05dc\u05d9\u05d9\u05dd \u05d1\u05db\u05dc \u05d4\u05d0\u05ea\u05e8 \u05e9\u05dc\u05da. \u05d9\u05d9\u05ea\u05db\u05df \u05e9\u05d9\u05d4\u05d9\u05d4 \u05e6\u05d5\u05e8\u05da \u05dc\u05e9\u05de\u05d5\u05e8 \u05de\u05d7\u05d3\u05e9 \u05d3\u05e4\u05d9\u05dd \u05d0\u05d5 \u05dc\u05d4\u05e8\u05d9\u05e5 \u05e1\u05e8\u05d9\u05e7\u05d4 \u05de\u05dc\u05d0\u05d4 \u05e9\u05dc \u05d4\u05d0\u05ea\u05e8 \u05db\u05d3\u05d9 \u05dc\u05e8\u05d0\u05d5\u05ea \u05d0\u05ea \u05d4\u05ea\u05d9\u05e7\u05d5\u05e0\u05d9\u05dd \u05de\u05e9\u05ea\u05e7\u05e4\u05d9\u05dd \u05d1\u05d3\u05d5\u05d7\u05d5\u05ea."],"%d issue found":["\u05e0\u05de\u05e6\u05d0\u05d4 \u05d1\u05e2\u05d9\u05d4 \u05d0\u05d7\u05ea \u05de\u05e1\u05d5\u05d2 %d","\u05e0\u05de\u05e6\u05d0\u05d5 %d \u05d1\u05e2\u05d9\u05d5\u05ea"],"%d Problem":["\u05d1\u05e2\u05d9\u05d4 \u05d0\u05d7\u05ea \u05de\u05e1\u05d5\u05d2 %d","%d \u05d1\u05e2\u05d9\u05d5\u05ea"],"%d Needs Review":["\u05d1\u05e2\u05d9\u05d4 \u05d0\u05d7\u05ea \u05de\u05e1\u05d5\u05d2 %d \u05d3\u05d5\u05e8\u05e9\u05ea \u05d1\u05d3\u05d9\u05e7\u05d4","%d \u05d3\u05d5\u05e8\u05e9\u05d5\u05ea \u05d1\u05d3\u05d9\u05e7\u05d4"],"%d Ignored":["\u05d1\u05e2\u05d9\u05d4 \u05d0\u05d7\u05ea \u05de\u05e1\u05d5\u05d2 %d \u05d4\u05ea\u05e2\u05dc\u05de\u05d4","%d \u05d4\u05ea\u05e2\u05dc\u05de\u05d5"],"No issues detected.":["\u05dc\u05d0 \u05d0\u05d5\u05ea\u05e8\u05d5 \u05d1\u05e2\u05d9\u05d5\u05ea."],"Landmark: %s":["\u05e0\u05e7\u05d5\u05d3\u05ea \u05e6\u05d9\u05d5\u05df: %s"],"Scanner function not found.":["\u05e4\u05d5\u05e0\u05e7\u05e6\u05d9\u05d9\u05ea \u05d4\u05e1\u05e8\u05d9\u05e7\u05d4 \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d4."],"Scanning...":["\u05e1\u05d5\u05e8\u05e7..."],"No violations found, skipping save.":["\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d5 \u05d4\u05e4\u05e8\u05d5\u05ea, \u05de\u05d3\u05dc\u05d2 \u05e2\u05dc \u05e9\u05de\u05d9\u05e8\u05d4."],"Missing postId or nonce.":["\u05d7\u05e1\u05e8 postId \u05d0\u05d5 nonce."],"Accessibility scan error.":["\u05e9\u05d2\u05d9\u05d0\u05ea \u05e1\u05e8\u05d9\u05e7\u05ea \u05e0\u05d2\u05d9\u05e9\u05d5\u05ea."],"Error saving scan results.":["\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05e9\u05de\u05d9\u05e8\u05ea \u05ea\u05d5\u05e6\u05d0\u05d5\u05ea \u05d4\u05e1\u05e8\u05d9\u05e7\u05d4."],"Error: Missing required parameters.":["\u05e9\u05d2\u05d9\u05d0\u05d4: \u05d7\u05e1\u05e8\u05d9\u05dd \u05e4\u05e8\u05de\u05d8\u05e8\u05d9\u05dd \u05e0\u05d3\u05e8\u05e9\u05d9\u05dd."]}}} \ No newline at end of file +{"translation-revision-date":"YEAR-MO-DA HO:MI+ZONE","generator":"WP-CLI\/2.12.0","source":"build\/frontendHighlighterApp.bundle.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"he_IL","plural-forms":"nplurals=2; plural=(n != 1);"},"Accessibility Checker":["Accessibility Checker"],"Critical":["\u05e7\u05e8\u05d9\u05d8\u05d9"],"High":["\u05d2\u05d1\u05d5\u05d4"],"Medium":["\u05d1\u05d9\u05e0\u05d5\u05e0\u05d9"],"Low":["\u05e0\u05de\u05d5\u05da"],"Problem":["\u05d1\u05e2\u05d9\u05d4","\u05d1\u05e2\u05d9\u05d5\u05ea"],"Needs Review":["\u05d3\u05d5\u05e8\u05e9 \u05d1\u05d3\u05d9\u05e7\u05d4","\u05d3\u05d5\u05e8\u05e9 \u05d1\u05d3\u05d9\u05e7\u05d4"],", opens a new window":[", \u05e0\u05e4\u05ea\u05d7 \u05d7\u05dc\u05d5\u05df \u05d7\u05d3\u05e9"],"Save":["\u05e9\u05de\u05d5\u05e8"],"Clear Issues":["\u05e0\u05e7\u05d4 \u05d1\u05e2\u05d9\u05d5\u05ea"],"Saving...":["\u05e9\u05d5\u05de\u05e8..."],"Settings saved successfully. You must %svisit the editor%s and save the post to rescan and remove fixed issues from Accessibility Checker reports.":["\u05d4\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e0\u05e9\u05de\u05e8\u05d5 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4. \u05e2\u05dc\u05d9\u05da %s\u05dc\u05d1\u05e7\u05e8 \u05d1\u05e2\u05d5\u05e8\u05da%s \u05d5\u05dc\u05e9\u05de\u05d5\u05e8 \u05d0\u05ea \u05d4\u05e4\u05d5\u05e1\u05d8 \u05db\u05d3\u05d9 \u05dc\u05e1\u05e8\u05d5\u05e7 \u05de\u05d7\u05d3\u05e9 \u05d5\u05dc\u05d4\u05e1\u05d9\u05e8 \u05d1\u05e2\u05d9\u05d5\u05ea \u05e9\u05ea\u05d5\u05e7\u05e0\u05d5 \u05de\u05d3\u05d5\u05d7\u05d5\u05ea \u05d4-Accessibility Checker."],"Settings saved successfully.":["\u05d4\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e0\u05e9\u05de\u05e8\u05d5 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4."],"Saving failed.":["\u05d4\u05e9\u05de\u05d9\u05e8\u05d4 \u05e0\u05db\u05e9\u05dc\u05d4."],"Fix Settings":["\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05ea\u05d9\u05e7\u05d5\u05df"],"This will clear all issues for this post. A save will be required to trigger a fresh scan of the post content. Do you want to continue?":["\u05e4\u05e2\u05d5\u05dc\u05d4 \u05d6\u05d5 \u05ea\u05e0\u05e7\u05d4 \u05d0\u05ea \u05db\u05dc \u05d4\u05d1\u05e2\u05d9\u05d5\u05ea \u05e2\u05d1\u05d5\u05e8 \u05e4\u05d5\u05e1\u05d8 \u05d6\u05d4. \u05d9\u05d9\u05d3\u05e8\u05e9 \u05e9\u05de\u05d9\u05e8\u05d4 \u05db\u05d3\u05d9 \u05dc\u05d4\u05e4\u05e2\u05d9\u05dc \u05e1\u05e8\u05d9\u05e7\u05d4 \u05d7\u05d3\u05e9\u05d4 \u05e9\u05dc \u05ea\u05d5\u05db\u05df \u05d4\u05e4\u05d5\u05e1\u05d8. \u05d4\u05d0\u05dd \u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d4\u05de\u05e9\u05d9\u05da?"],"Clearing...":["\u05de\u05e0\u05e7\u05d4..."],"Issues cleared successfully.":["\u05d4\u05d1\u05e2\u05d9\u05d5\u05ea \u05e0\u05d5\u05e7\u05d5 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4."],"Failed to clear issues.":["\u05e0\u05d9\u05e7\u05d5\u05d9 \u05d4\u05d1\u05e2\u05d9\u05d5\u05ea \u05e0\u05db\u05e9\u05dc."],"An error occurred while clearing issues.":["\u05d0\u05d9\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05de\u05d4\u05dc\u05da \u05e0\u05d9\u05e7\u05d5\u05d9 \u05d4\u05d1\u05e2\u05d9\u05d5\u05ea."],"Close fixes modal":["\u05e1\u05d2\u05d5\u05e8 \u05d7\u05dc\u05d5\u05df \u05ea\u05d9\u05e7\u05d5\u05e0\u05d9\u05dd"],"%1$d of %2$d":["%1$d \u05de\u05ea\u05d5\u05da %2$d"],"Untitled issue":["\u05d1\u05e2\u05d9\u05d4 \u05dc\u05dc\u05d0 \u05db\u05d5\u05ea\u05e8\u05ea"],"Issue %1$d of %2$d: %3$s":["\u05d1\u05e2\u05d9\u05d4 %1$d \u05de\u05ea\u05d5\u05da %2$d: %3$s"],"The element is not visible. Try disabling styles.":["\u05d4\u05e8\u05db\u05d9\u05d1 \u05d0\u05d9\u05e0\u05d5 \u05d2\u05dc\u05d5\u05d9. \u05e0\u05e1\u05d4 \u05dc\u05d4\u05e9\u05d1\u05d9\u05ea \u05e1\u05d2\u05e0\u05d5\u05e0\u05d5\u05ea."],"The element is not focusable. Try disabling styles.":["\u05d4\u05e8\u05db\u05d9\u05d1 \u05d0\u05d9\u05e0\u05d5 \u05e0\u05d9\u05ea\u05df \u05dc\u05de\u05d9\u05e7\u05d5\u05d3. \u05e0\u05e1\u05d4 \u05dc\u05d4\u05e9\u05d1\u05d9\u05ea \u05e1\u05d2\u05e0\u05d5\u05e0\u05d5\u05ea."],"The element was not found on the page.":["\u05d4\u05e8\u05db\u05d9\u05d1 \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0 \u05d1\u05d3\u05e3."],"Move to Left":["\u05d4\u05d6\u05d6\/\u05d9 \u05e9\u05de\u05d0\u05dc\u05d4"],"Move to Right":["\u05d4\u05d6\u05d6\/\u05d9 \u05d9\u05de\u05d9\u05e0\u05d4"],"Panel position reset.":["\u05de\u05d9\u05e7\u05d5\u05dd \u05d4\u05d7\u05dc\u05d5\u05e0\u05d9\u05ea \u05d0\u05d5\u05e4\u05e1."],"Panel moved to the left.":["\u05d4\u05d7\u05dc\u05d5\u05e0\u05d9\u05ea \u05d4\u05d5\u05d6\u05d6\u05d4 \u05e9\u05de\u05d0\u05dc\u05d4."],"Panel moved to the right.":["\u05d4\u05d7\u05dc\u05d5\u05e0\u05d9\u05ea \u05d4\u05d5\u05d6\u05d6\u05d4 \u05d9\u05de\u05d9\u05e0\u05d4."],"Open details for %1$s, %2$s of %3$s":["\u05e4\u05ea\u05d7 \u05e4\u05e8\u05d8\u05d9\u05dd \u05e2\u05d1\u05d5\u05e8 %1$s, %2$s \u05de\u05ea\u05d5\u05da %3$s"],"Undock Panel":["\u05e0\u05ea\u05e7\/\u05d9 \u05d7\u05dc\u05d5\u05e0\u05d9\u05ea"],"Dock Panel":["\u05e2\u05d2\u05df\/\u05d9 \u05d7\u05dc\u05d5\u05e0\u05d9\u05ea"],"Rescan This Page":["\u05e1\u05e8\u05d5\u05e7 \u05de\u05d7\u05d3\u05e9 \u05d0\u05ea \u05d4\u05d3\u05e3 \u05d4\u05d6\u05d4"],"Accessibility Checker Tools":["\u05db\u05dc\u05d9 Accessibility Checker"],"More options":["\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea"],"Disable Page Styles":["\u05d4\u05e9\u05d1\u05ea \u05e1\u05d2\u05e0\u05d5\u05e0\u05d5\u05ea \u05d3\u05e3"],"Disable Styles":["\u05d4\u05e9\u05d1\u05ea \u05e1\u05d2\u05e0\u05d5\u05e0\u05d5\u05ea"],"Close":["\u05e1\u05d2\u05d5\u05e8"],"No issues found on this page.":["\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d5 \u05d1\u05e2\u05d9\u05d5\u05ea \u05d1\u05d3\u05e3 \u05d6\u05d4."],"Loading...":["\u05d8\u05d5\u05e2\u05df..."],"Previous":["\u05e7\u05d5\u05d3\u05dd"],"Next":["\u05d4\u05d1\u05d0"],"Reset Position":["\u05d0\u05e4\u05e1\/\u05d9 \u05de\u05d9\u05e7\u05d5\u05dd"],"An error occurred when loading the issues.":["\u05d0\u05d9\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05d8\u05e2\u05d9\u05e0\u05ea \u05d4\u05d1\u05e2\u05d9\u05d5\u05ea."],"Panel docked.":["\u05d4\u05d7\u05dc\u05d5\u05e0\u05d9\u05ea \u05e2\u05d5\u05d2\u05e0\u05d4."],"Panel undocked.":["\u05d4\u05d7\u05dc\u05d5\u05e0\u05d9\u05ea \u05e0\u05d5\u05ea\u05e7\u05d4."],"Severity:":["\u05d7\u05d5\u05de\u05e8\u05d4:"],"WCAG:":["WCAG:"],"Ignored":["\u05d4\u05ea\u05e2\u05dc\u05dd\/\u05d9"],"Show explanation":["\u05d4\u05e6\u05d2 \u05d4\u05e1\u05d1\u05e8"],"Why It Matters":["\u05dc\u05de\u05d4 \u05d6\u05d4 \u05d7\u05e9\u05d5\u05d1"],"How to Fix":["\u05db\u05d9\u05e6\u05d3 \u05dc\u05ea\u05e7\u05df"],"More Detailed Documentation":["\u05ea\u05d9\u05e2\u05d5\u05d3 \u05de\u05e4\u05d5\u05e8\u05d8 \u05d9\u05d5\u05ea\u05e8"],"Show Affected Code":["\u05d4\u05e6\u05d2\/\u05d9 \u05e7\u05d5\u05d3 \u05de\u05d5\u05e9\u05e4\u05e2"],"Fix issue: %s":["\u05ea\u05e7\u05df \u05d1\u05e2\u05d9\u05d4: %s"],"Fix Issue":["\u05ea\u05e7\u05df \u05d1\u05e2\u05d9\u05d4"],"Enable Styles":["\u05d4\u05e4\u05e2\u05dc \u05e1\u05d2\u05e0\u05d5\u05e0\u05d5\u05ea"],"Enable Page Styles":["\u05d4\u05e4\u05e2\u05dc \u05e1\u05d2\u05e0\u05d5\u05e0\u05d5\u05ea \u05e2\u05de\u05d5\u05d3"],"Page styles disabled.":["\u05e1\u05d2\u05e0\u05d5\u05e0\u05d5\u05ea \u05e2\u05de\u05d5\u05d3 \u05de\u05d5\u05e9\u05d1\u05ea\u05d9\u05dd."],"Page styles re-enabled.":["\u05e1\u05d2\u05e0\u05d5\u05e0\u05d5\u05ea \u05e2\u05de\u05d5\u05d3 \u05d4\u05d5\u05e4\u05e2\u05dc\u05d5 \u05de\u05d7\u05d3\u05e9."],"There are no settings to display.":["\u05d0\u05d9\u05df \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05dc\u05d4\u05e6\u05d2\u05d4."],"These settings enable global fixes across your entire site. Pages may need to be resaved or a full site scan run to see fixes reflected in reports.":["\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d0\u05dc\u05d5 \u05de\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05ea\u05d9\u05e7\u05d5\u05e0\u05d9\u05dd \u05d2\u05dc\u05d5\u05d1\u05dc\u05d9\u05d9\u05dd \u05d1\u05db\u05dc \u05d4\u05d0\u05ea\u05e8 \u05e9\u05dc\u05da. \u05d9\u05d9\u05ea\u05db\u05df \u05e9\u05d9\u05d4\u05d9\u05d4 \u05e6\u05d5\u05e8\u05da \u05dc\u05e9\u05de\u05d5\u05e8 \u05de\u05d7\u05d3\u05e9 \u05d3\u05e4\u05d9\u05dd \u05d0\u05d5 \u05dc\u05d4\u05e8\u05d9\u05e5 \u05e1\u05e8\u05d9\u05e7\u05d4 \u05de\u05dc\u05d0\u05d4 \u05e9\u05dc \u05d4\u05d0\u05ea\u05e8 \u05db\u05d3\u05d9 \u05dc\u05e8\u05d0\u05d5\u05ea \u05d0\u05ea \u05d4\u05ea\u05d9\u05e7\u05d5\u05e0\u05d9\u05dd \u05de\u05e9\u05ea\u05e7\u05e4\u05d9\u05dd \u05d1\u05d3\u05d5\u05d7\u05d5\u05ea."],"%d issue found":["\u05e0\u05de\u05e6\u05d0\u05d4 \u05d1\u05e2\u05d9\u05d4 \u05d0\u05d7\u05ea \u05de\u05e1\u05d5\u05d2 %d","\u05e0\u05de\u05e6\u05d0\u05d5 %d \u05d1\u05e2\u05d9\u05d5\u05ea"],"%d Problem":["\u05d1\u05e2\u05d9\u05d4 \u05d0\u05d7\u05ea \u05de\u05e1\u05d5\u05d2 %d","%d \u05d1\u05e2\u05d9\u05d5\u05ea"],"%d Needs Review":["\u05d1\u05e2\u05d9\u05d4 \u05d0\u05d7\u05ea \u05de\u05e1\u05d5\u05d2 %d \u05d3\u05d5\u05e8\u05e9\u05ea \u05d1\u05d3\u05d9\u05e7\u05d4","%d \u05d3\u05d5\u05e8\u05e9\u05d5\u05ea \u05d1\u05d3\u05d9\u05e7\u05d4"],"%d Ignored":["\u05d1\u05e2\u05d9\u05d4 \u05d0\u05d7\u05ea \u05de\u05e1\u05d5\u05d2 %d \u05d4\u05ea\u05e2\u05dc\u05de\u05d4","%d \u05d4\u05ea\u05e2\u05dc\u05de\u05d5"],"No issues detected.":["\u05dc\u05d0 \u05d0\u05d5\u05ea\u05e8\u05d5 \u05d1\u05e2\u05d9\u05d5\u05ea."],"Landmark: %s":["\u05e0\u05e7\u05d5\u05d3\u05ea \u05e6\u05d9\u05d5\u05df: %s"],"Failed to load scanner script.":["\u05d8\u05e2\u05d9\u05e0\u05ea \u05e1\u05e7\u05e8\u05d9\u05e4\u05d8 \u05d4\u05e1\u05d5\u05e8\u05e7 \u05e0\u05db\u05e9\u05dc\u05d4."],"Scanner function not found.":["\u05e4\u05d5\u05e0\u05e7\u05e6\u05d9\u05d9\u05ea \u05d4\u05e1\u05e8\u05d9\u05e7\u05d4 \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d4."],"Scanning...":["\u05e1\u05d5\u05e8\u05e7..."],"Missing postId or nonce.":["\u05d7\u05e1\u05e8 postId \u05d0\u05d5 nonce."],"Rescan complete. No violations found.":["\u05e1\u05e8\u05d9\u05e7\u05d4 \u05de\u05d7\u05d3\u05e9 \u05d4\u05d5\u05e9\u05dc\u05de\u05d4. \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d5 \u05d4\u05e4\u05e8\u05d5\u05ea."],"No violations found, skipping save.":["\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d5 \u05d4\u05e4\u05e8\u05d5\u05ea, \u05de\u05d3\u05dc\u05d2 \u05e2\u05dc \u05e9\u05de\u05d9\u05e8\u05d4."],"Accessibility scan error.":["\u05e9\u05d2\u05d9\u05d0\u05ea \u05e1\u05e8\u05d9\u05e7\u05ea \u05e0\u05d2\u05d9\u05e9\u05d5\u05ea."],"Error saving scan results.":["\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05e9\u05de\u05d9\u05e8\u05ea \u05ea\u05d5\u05e6\u05d0\u05d5\u05ea \u05d4\u05e1\u05e8\u05d9\u05e7\u05d4."],"Rescan already in progress.":["\u05e1\u05e8\u05d9\u05e7\u05d4 \u05de\u05d7\u05d3\u05e9 \u05db\u05d1\u05e8 \u05de\u05ea\u05d1\u05e6\u05e2\u05ea."],"Rescanning this page.":["\u05e1\u05e8\u05d9\u05e7\u05d4 \u05de\u05d7\u05d3\u05e9 \u05e9\u05dc \u05e2\u05de\u05d5\u05d3 \u05d6\u05d4."],"Rescan complete.":["\u05e1\u05e8\u05d9\u05e7\u05d4 \u05de\u05d7\u05d3\u05e9 \u05d4\u05d5\u05e9\u05dc\u05de\u05d4."],"Error: Missing required parameters.":["\u05e9\u05d2\u05d9\u05d0\u05d4: \u05d7\u05e1\u05e8\u05d9\u05dd \u05e4\u05e8\u05de\u05d8\u05e8\u05d9\u05dd \u05e0\u05d3\u05e8\u05e9\u05d9\u05dd."]}}} \ No newline at end of file diff --git a/languages/accessibility-checker-he_IL.mo b/languages/accessibility-checker-he_IL.mo index a32ff65e9cad415d20d36b5ae443dc40aa28af13..dbc53ab00fd694567072718b93a3c3d09cdd6dc3 100644 GIT binary patch delta 49465 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 HH*Lqiubl=j delta 21220 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 e$@G-!kov{6M-N6fl\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-06T16:25:50+00:00\n" +"POT-Creation-Date: 2026-05-04T17:50:18+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" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Plugin Name of the plugin #: accessibility-checker.php -#: admin/class-meta-boxes.php:39 -#: includes/classes/class-accessibility-statement.php:51 -#: includes/classes/class-admin-toolbar.php:53 -#: includes/options-page.php:43 -#: partials/welcome-page.php:24 +#: admin/class-meta-boxes.php:47 +#: includes/classes/class-accessibility-statement.php:55 +#: includes/classes/class-admin-toolbar.php:57 +#: includes/options-page.php:49 +#: partials/welcome-page.php:28 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/sidebar.bundle.js:2 msgid "Accessibility Checker" msgstr "Accessibility Checker" @@ -44,18 +48,321 @@ msgstr "Equalize Digital" msgid "https://equalizedigital.com" msgstr "https://equalizedigital.com" -#: admin/AdminPage/FixesPage.php:71 +#: admin/AdminPage/AccessibilityReportsPage.php:56 +#: admin/AdminPage/AccessibilityReportsPage.php:138 +msgid "Accessibility Reports" +msgstr "דוחות Accessibility" + +#: admin/AdminPage/AccessibilityReportsPage.php:57 +msgid "New" +msgstr "חדש" + +#: admin/AdminPage/AccessibilityReportsPage.php:144 +msgid "Get recurring email reports with a snapshot of your site’s accessibility, including total issues, trends over time, most problematic pages, and the most severe issues to fix first." +msgstr "קבל/י דוחות email חוזרים עם תמונת מצב של ה-Accessibility של האתר שלך, כולל סך כל הבעיות, מגמות לאורך זמן, הדפים הבעייתיים ביותר והבעיות החמורות ביותר לתיקון תחילה." + +#: admin/AdminPage/AccessibilityReportsPage.php:146 +msgid "Get recurring email reports with a snapshot of your site’s accessibility, including total issues, trends over time, most problematic pages, and the most severe issues to fix first. Some details, like full-site coverage and issue breakdowns, are available in Pro." +msgstr "קבל/י דוחות email חוזרים עם תמונת מצב של ה-Accessibility של האתר שלך, כולל סך כל הבעיות, מגמות לאורך זמן, הדפים הבעייתיים ביותר והבעיות החמורות ביותר לתיקון תחילה. פרטים מסוימים, כמו כיסוי אתר מלא ופירוט בעיות, זמינים בגרסת Pro." + +#: admin/AdminPage/AccessibilityReportsPage.php:157 +#: admin/AdminPage/AccessibilityReportsPage.php:171 +msgid "Enable Email Reports" +msgstr "הפעל/י דוחות email" + +#: admin/AdminPage/AccessibilityReportsPage.php:164 +#: admin/AdminPage/AccessibilityReportsPage.php:168 +#: admin/AdminPage/AccessibilityReportsPage.php:260 +#: admin/AdminPage/ConnectedServicesPage.php:153 +msgid "Free License Key" +msgstr "מפתח רישיון חינם" + +#: admin/AdminPage/AccessibilityReportsPage.php:177 +msgid "Get a Free License Key" +msgstr "קבל/י מפתח רישיון חינם" + +#. translators: %s: dashboard URL. +#: admin/AdminPage/AccessibilityReportsPage.php:182 +#, php-format +msgid "Got the plugin from Equalize Digital? Your key is in your dashboard." +msgstr "הורדת את התוסף מ-Equalize Digital? המפתח שלך נמצא בלוח הבקרה שלך." + +#. translators: %s: signup URL. +#: admin/AdminPage/AccessibilityReportsPage.php:191 +#, php-format +msgid "Installed from WordPress.org? Create a free account to get one." +msgstr "התקנת מ-WordPress.org? צור/צרי חשבון חינם כדי לקבל אחד." + +#. translators: %s: signup URL. +#: admin/AdminPage/AccessibilityReportsPage.php:200 +#, php-format +msgid "Not sure? Just create a free account. It only takes a minute." +msgstr "לא בטוח/ה? פשוט צור/צרי חשבון חינם. זה לוקח רק דקה." + +#: admin/AdminPage/AccessibilityReportsPage.php:212 +msgid "Reports Enabled" +msgstr "דוחות מופעלים" + +#: admin/AdminPage/AccessibilityReportsPage.php:215 +msgid "You’ll receive weekly accessibility reports for this site." +msgstr "תקבל/י דוחות Accessibility שבועיים עבור אתר זה." + +#. translators: %s: next report date. +#: admin/AdminPage/AccessibilityReportsPage.php:219 +#, php-format +msgid "Next report: %s" +msgstr "הדוח הבא: %s" + +#: admin/AdminPage/AccessibilityReportsPage.php:226 +msgid "Full Coverage" +msgstr "כיסוי מלא" + +#: admin/AdminPage/AccessibilityReportsPage.php:226 +msgid "Limited Coverage" +msgstr "כיסוי מוגבל" + +#: admin/AdminPage/AccessibilityReportsPage.php:230 +msgid "Your reports include all post types and taxonomies." +msgstr "הדוחות שלך כוללים את כל סוגי הפוסטים והטקסונומיות." + +#: admin/AdminPage/AccessibilityReportsPage.php:232 +msgid "Full-site scanning enabled" +msgstr "סריקת אתר מלאה מופעלת" + +#: admin/AdminPage/AccessibilityReportsPage.php:233 +msgid "Complete issue breakdowns" +msgstr "פירוט בעיות מלא" + +#: admin/AdminPage/AccessibilityReportsPage.php:234 +msgid "Detailed reporting" +msgstr "דיווח מפורט" + +#: admin/AdminPage/AccessibilityReportsPage.php:237 +msgid "Your reports only include part of your site." +msgstr "הדוחות שלך כוללים רק חלק מהאתר שלך." + +#: admin/AdminPage/AccessibilityReportsPage.php:238 +msgid "Upgrade to Pro to:" +msgstr "שדרג/י ל-Pro כדי:" + +#: admin/AdminPage/AccessibilityReportsPage.php:240 +msgid "Scan all content types" +msgstr "לסרוק את כל סוגי התוכן" + +#: admin/AdminPage/AccessibilityReportsPage.php:241 +msgid "Get full issue breakdowns" +msgstr "לקבל פירוט בעיות מלא" + +#: admin/AdminPage/AccessibilityReportsPage.php:242 +msgid "Receive more detailed reports" +msgstr "לקבל דוחות מפורטים יותר" + +#: admin/AdminPage/AccessibilityReportsPage.php:245 +#: admin/class-upgrade-promotion.php:62 +msgid "Upgrade to Pro" +msgstr "שדרג לפרו" + +#: admin/AdminPage/AccessibilityReportsPage.php:251 +msgid "Accessibility Summary" +msgstr "סיכום Accessibility" + +#: admin/AdminPage/AccessibilityReportsPage.php:252 +msgid "This summary reflects the latest scan data available for your site." +msgstr "סיכום זה משקף את נתוני הסריקה האחרונים הזמינים עבור האתר שלך." + +#: admin/AdminPage/AccessibilityReportsPage.php:254 +msgid "Total Issues Found" +msgstr "סה\"כ בעיות שנמצאו" + +#: admin/AdminPage/AccessibilityReportsPage.php:260 +msgid "Account Connection" +msgstr "חיבור חשבון" + +#: admin/AdminPage/AccessibilityReportsPage.php:268 +msgid "Disable Email Reports" +msgstr "בטל/י דוחות email" + +#. translators: %1$s: privacy link, %2$s: data processing agreement link, %3$s: privacy policy aria label, %4$s: data processing agreement aria label. +#: admin/AdminPage/AccessibilityReportsPage.php:279 +#, php-format +msgid "By connecting this site, you agree to Equalize Digital's Privacy Policy and Data Processing Agreement ." +msgstr "על ידי חיבור אתר זה, אתה מסכים למדיניות הפרטיות ולהסכם עיבוד הנתונים של Equalize Digital." + +#: admin/AdminPage/AccessibilityReportsPage.php:282 +msgid "Privacy Policy (opens in a new window)" +msgstr "מדיניות פרטיות (נפתח בחלון חדש)" + +#: admin/AdminPage/AccessibilityReportsPage.php:283 +msgid "Data Processing Agreement (opens in a new window)" +msgstr "הסכם עיבוד נתונים (נפתח בחלון חדש)" + +#: admin/AdminPage/AccessibilityReportsPage.php:294 +msgid "Weekly email includes total issues found and changes since the last report, coverage information, counts of problems, needs review, passed test percentage, and information about the most problematic pages and the most severe issues." +msgstr "האימייל השבועי כולל את סך הבעיות שנמצאו ושינויים מאז הדוח האחרון, מידע כיסוי, ספירת בעיות, סקירה נדרשת, אחוז הבדיקות שעברו בהצלחה, ומידע על הדפים הבעייתיים ביותר והבעיות החמורות ביותר." + +#: admin/AdminPage/AccessibilityReportsPage.php:387 +#: build/sidebar.bundle.js:2 +msgid "N/A" +msgstr "לא רלוונטי" + +#: admin/AdminPage/AccessibilityReportsPage.php:477 +#: admin/class-ajax.php:330 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "Critical" +msgstr "קריטי" + +#: admin/AdminPage/AccessibilityReportsPage.php:479 +#: admin/class-ajax.php:334 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "High" +msgstr "גבוה" + +#: admin/AdminPage/AccessibilityReportsPage.php:481 +#: admin/class-ajax.php:338 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "Medium" +msgstr "בינוני" + +#: admin/AdminPage/AccessibilityReportsPage.php:483 +#: admin/class-ajax.php:342 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "Low" +msgstr "נמוך" + +#: admin/AdminPage/AccessibilityReportsPage.php:485 +#: includes/classes/class-rest-api.php:997 +msgid "Unknown" +msgstr "לא ידוע" + +#: admin/AdminPage/ConnectedServicesPage.php:137 +msgid "create a free account" +msgstr "צור/צרי חשבון חינם" + +#: admin/AdminPage/ConnectedServicesPage.php:146 +msgid "Connect this site" +msgstr "חבר/י אתר זה" + +#: admin/AdminPage/ConnectedServicesPage.php:165 +msgid "active" +msgstr "פעיל/ה" + +#: admin/AdminPage/ConnectedServicesPage.php:167 +msgid "expired" +msgstr "פג תוקף" + +#: admin/AdminPage/ConnectedServicesPage.php:169 +msgid "Enter your license key" +msgstr "הזן/הזיני את מפתח הרישיון שלך" + +#: admin/AdminPage/ConnectedServicesPage.php:184 +#: admin/AdminPage/ConnectedServicesPage.php:250 +msgid "Disconnect Site" +msgstr "נתק/י אתר" + +#: admin/AdminPage/ConnectedServicesPage.php:191 +msgid "Connect Site" +msgstr "חבר/י אתר" + +#. translators: %s: link to my.equalizedigital.com dashboard +#: admin/AdminPage/ConnectedServicesPage.php:204 +#, php-format +msgid "If you downloaded the free plugin from Equalize Digital, you already have a free license key in your %s dashboard." +msgstr "אם הורדת את התוסף החינמי מ-Equalize Digital, כבר יש לך מפתח רישיון חינם בלוח הבקרה של %s." + +#. translators: %s: link to create a free account +#: admin/AdminPage/ConnectedServicesPage.php:213 +#, php-format +msgid "If not, %s to generate a license key and connect this site." +msgstr "אם לא, %s כדי ליצור מפתח רישיון ולחבר אתר זה." + +#: admin/AdminPage/ConnectedServicesPage.php:232 +msgid "Connected as Free" +msgstr "מחובר כחינם" + +#: admin/AdminPage/ConnectedServicesPage.php:233 +msgid "Your Pro license is no longer valid, but this site remains connected for Free email reports." +msgstr "רישיון ה-Pro שלך אינו תקף עוד, אך אתר זה נשאר מחובר עבור דוחות email חינם." + +#. translators: %s: link to my.equalizedigital.com dashboard +#: admin/AdminPage/ConnectedServicesPage.php:238 +#, php-format +msgid "You can manage recipients and review connection details in your %s dashboard." +msgstr "באפשרותך לנהל נמענים ולעיין בפרטי החיבור בלוח הבקרה של %s." + +#: admin/AdminPage/ConnectedServicesPage.php:398 +msgid "Your Pro license is no longer valid. This site is using a valid Free license, and email reports remain connected as Free email reports. Renew your Pro license to restore Pro-only features." +msgstr "רישיון ה-Pro שלך אינו תקף עוד. אתר זה משתמש ברישיון חינם תקף, ודוחות ה-email נשארים מחוברים כדוחות email חינם. חדש/י את רישיון ה-Pro שלך כדי לשחזר תכונות בלעדיות ל-Pro." + +#: admin/AdminPage/ConnectedServicesPage.php:401 +msgid "Your Pro license is no longer valid. This site is using a valid Free license, but email reports are not currently connected. Connect this site from the Free License section to resume Free email reports." +msgstr "רישיון ה-Pro שלך אינו תקף עוד. אתר זה משתמש ברישיון חינם תקף, אך דוחות ה-email אינם מחוברים כרגע. חבר/י אתר זה ממקטע הרישיון החינמי כדי לחדש את דוחות ה-email החינמיים." + +#: admin/AdminPage/ConnectedServicesPage.php:442 +msgid "Please renew your license" +msgstr "אנא חדש/י את הרישיון שלך" + +#. translators: %1$s: item name, %2$s: item name, %3$s: renew license link +#: admin/AdminPage/ConnectedServicesPage.php:445 +#, php-format +msgid "Your %1$s license has expired. %3$s to continue accessing additional features and services for %2$s." +msgstr "תוקף הרישיון שלך ל-%1$s פג. %3$s כדי להמשיך לגשת לתכונות ושירותים נוספים עבור %2$s." + +#. translators: %s: item name +#: admin/AdminPage/ConnectedServicesPage.php:455 +#, php-format +msgid "Your %s license key has been disabled. Please contact our support team if you believe this is an error or would like to continue accessing additional features." +msgstr "מפתח הרישיון שלך ל-%s הושבת. אנא צור/צרי קשר עם צוות התמיכה שלנו אם אתה/את סבור/ה שזו טעות או שברצונך להמשיך לגשת לתכונות נוספות." + +#. translators: %1$s: item name, %2$s: license url, %3$s: item name +#: admin/AdminPage/ConnectedServicesPage.php:462 +#, php-format +msgid "The license key for %1$s appears to be invalid. Please check your license key to access additional accessibility features and services for %3$s." +msgstr "מפתח הרישיון עבור %1$s נראה לא חוקי. אנא בדוק/בדקי את מפתח הרישיון שלך כדי לגשת לתכונות ושירותי Accessibility נוספים עבור %3$s." + +#. translators: %s: item name +#: admin/AdminPage/ConnectedServicesPage.php:472 +#, php-format +msgid "This license key for %s is not active for this site. Please activate it to access additional features on this website." +msgstr "מפתח רישיון זה עבור %s אינו פעיל עבור אתר זה. אנא הפעל/י אותו כדי לגשת לתכונות נוספות באתר זה." + +#. translators: %s: the plugins item name +#: admin/AdminPage/ConnectedServicesPage.php:479 +#, php-format +msgid "This license key does not appear to be valid for %s. Please verify you've entered the correct license key." +msgstr "מפתח רישיון זה אינו נראה תקף עבור %s. אנא וודא/י שהזנת את מפתח הרישיון הנכון." + +#. translators: %s: the plugins item name +#: admin/AdminPage/ConnectedServicesPage.php:486 +#, php-format +msgid "Your %s license key has reached its site activation limit. You can upgrade your license or deactivate it on another site to use the additional features here." +msgstr "מפתח הרישיון שלך ל-%s הגיע למגבלת הפעלת האתר שלו. באפשרותך לשדרג את הרישיון שלך או לבטל את הפעלתו באתר אחר כדי להשתמש בתכונות הנוספות כאן." + +#. translators: %s: the plugins item name +#: admin/AdminPage/ConnectedServicesPage.php:493 +#, php-format +msgid "There was an issue validating your %s license key. Please try again or contact our support team if the problem persists." +msgstr "אירעה בעיה באימות מפתח הרישיון שלך ל-%s. אנא נסה/נסי שוב או צור/צרי קשר עם צוות התמיכה שלנו אם הבעיה נמשכת." + +#: admin/AdminPage/FixesPage.php:75 #: admin/site-health/class-free.php:105 #: admin/site-health/class-pro.php:82 -#: includes/classes/class-admin-toolbar.php:102 +#: includes/classes/class-admin-toolbar.php:106 msgid "Fixes" msgstr "תיקונים" -#: admin/AdminPage/FixesPage.php:138 +#: admin/AdminPage/FixesPage.php:142 msgid "General Fixes" msgstr "תיקונים כלליים" -#: admin/AdminPage/FixesPage.php:212 +#: admin/AdminPage/FixesPage.php:220 msgid "These fixes help improve accessibility by modifying HTML elements and behaviors on your site." msgstr "תיקונים אלה עוזרים לשפר את הנגישות על ידי שינוי אלמנטים והתנהגויות HTML באתר שלך." @@ -67,12 +374,13 @@ msgstr "קבל את הגרסה המקצועית כדי לשחרר תכונה ז #: admin/AdminPage/FixesSettingType/Checkbox.php:47 #: admin/AdminPage/FixesSettingType/Text.php:38 -#: admin/class-plugin-action-links.php:55 +#: admin/class-plugin-action-links.php:59 +#: build/admin.bundle.js:2 msgid "Get Pro" msgstr "קבל גרסה מקצועית" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:347 +#: admin/class-ajax.php:394 msgid "Opens in a new window." msgstr "נפתח בחלון חדש." @@ -164,564 +472,835 @@ msgstr "רוצה לעשות יותר עם Accessibility Checker? %1$sשחרר א msgid "Unlock Pro Features (opens in new window)" msgstr "שחרר את תכונות הפרו (נפתח בחלון חדש)" -#: admin/class-admin-notices.php:129 +#: admin/class-admin-notices.php:139 msgid "🎉 Black Friday special! 🎉" msgstr "🎉 מבצע יום שישי השחור! 🎉" -#: admin/class-admin-notices.php:130 -msgid "Upgrade to a paid version of Accessibility Checker from November 25th to December 3rd and get 30% off! Full site scanning, site-wide open issues report, ignore logs, and more." -msgstr "שדרג לגרסה בתשלום של Accessibility Checker מ-25 בנובמבר עד 3 בדצמבר וקבל 30% הנחה! סריקת אתר מלאה, דוח בעיות פתוחות בכל האתר, יומני התעלמות ועוד." +#: admin/class-admin-notices.php:140 +msgid "Upgrade to a paid version of Accessibility Checker from November 24th to December 3rd and get 30% off! Full site scanning, site-wide open issues report, ignore logs, and more." +msgstr "שדרג לגרסה בתשלום של Accessibility Checker בין ה-24 בנובמבר ל-3 בדצמבר וקבל 30% הנחה! סריקת אתר מלאה, דוח בעיות פתוחות בכל האתר, התעלמות מיומנים ועוד." -#: admin/class-admin-notices.php:131 -#: admin/class-admin-notices.php:218 +#: admin/class-admin-notices.php:141 msgid "Ask a Pre-Sale Question" msgstr "שאל שאלה לפני הרכישה" -#: admin/class-admin-notices.php:132 -#: admin/class-admin-notices.php:219 +#: admin/class-admin-notices.php:142 +#: admin/class-admin-notices.php:245 msgid "Upgrade Now" msgstr "שדרג עכשיו" -#: admin/class-admin-notices.php:151 -#: admin/class-admin-notices.php:238 -#: admin/class-admin-notices.php:327 -#: admin/class-ajax.php:56 -#: admin/class-ajax.php:205 -#: admin/class-ajax.php:584 -#: admin/class-ajax.php:722 -#: admin/class-ajax.php:802 -#: admin/class-frontend-highlight.php:79 +#: admin/class-admin-notices.php:161 +#: admin/class-admin-notices.php:266 +#: admin/class-admin-notices.php:356 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:223 +#: admin/class-ajax.php:634 +#: admin/class-ajax.php:818 +#: admin/class-frontend-highlight.php:82 +#: admin/class-frontend-highlight.php:100 +#: admin/class-frontend-highlight.php:105 +#: admin/class-frontend-highlight.php:109 msgid "Permission Denied" msgstr "ההרשאה נדחתה" -#: admin/class-admin-notices.php:160 -#: admin/class-admin-notices.php:250 -#: admin/class-admin-notices.php:347 +#: admin/class-admin-notices.php:173 +#: admin/class-admin-notices.php:279 +#: admin/class-admin-notices.php:380 msgid "Update option wasn't successful" msgstr "עדכון האפשרות לא הצליח" -#: admin/class-admin-notices.php:216 -msgid "🎉 Get 25% off Accessibility Checker Pro in honor of Global Accessibility Awareness Day! 🎉" -msgstr "🎉 קבל 25% הנחה על Accessibility Checker Pro לכבוד יום המודעות לנגישות הגלובלית! 🎉" +#: admin/class-admin-notices.php:226 +msgid "⚡️ Global Accessibility Awareness Day Flash Sale" +msgstr "⚡️ מבצע בזק ליום המודעות העולמי לנגישות" + +#. translators: 1: opening anchor tag for accessibility courses link, 2: closing anchor tag, 3: opening anchor tag for ArchiveWP link, 4: closing anchor tag +#: admin/class-admin-notices.php:232 +#, php-format +msgid "3 days only: Save 15%% on %1$saccessibility courses%2$s and Equalize Digital's %3$sArchiveWP plugin%4$s. Go further with accessibility." +msgstr "שלושה ימים בלבד: חסכו %% על %1$sקורסי נגישות%2$s ועל %3$sהתוסף ArchiveWP%4$s של Equalize Digital. לכו רחוק יותר עם נגישות." + +#: admin/class-admin-notices.php:238 +msgid "Limited-time offer • May 20–22 • Use coupon code " +msgstr "מבצע לזמן מוגבל • 20–22 במאי • השתמשו בקוד קופון " + +#: admin/class-admin-notices.php:239 +msgid "Grab the Deal Before It Ends" +msgstr "תפסו את המבצע לפני שהוא מסתיים" + +#: admin/class-admin-notices.php:242 +msgid "3 days only: Save 15% when you upgrade to Accessibility Checker Pro with coupon code" +msgstr "שלושה ימים בלבד: חסכו 15% בשדרוג ל-Accessibility Checker Pro עם קוד הקופון" -#: admin/class-admin-notices.php:217 -msgid "Use coupon code GAAD25 from May 13th-May 21st to get access to full-site scanning and other pro features at a special discount. Not sure if upgrading is right for you?" -msgstr "השתמש בקוד קופון GAAD25 מה-13 במאי עד ה-21 במאי כדי לקבל גישה לסריקת אתר מלאה ותכונות מקצועיות אחרות בהנחה מיוחדת. לא בטוח אם שדרוג מתאים לך?" +#: admin/class-admin-notices.php:244 +msgid "Limited-time offer • May 20–22" +msgstr "מבצע לזמן מוגבל • 20–22 במאי" -#: admin/class-admin-notices.php:302 +#: admin/class-admin-notices.php:331 msgid "Hello! Thank you for using Accessibility Checker as part of your accessibility toolkit. Since you've been using it for a while, would you please write a 5-star review of Accessibility Checker in the WordPress plugin directory? This will help increase our visibility so more people can learn about the importance of web accessibility. Thanks so much!" msgstr "שלום! תודה שאתה משתמש ב-Accessibility Checker כחלק מערכת הכלים שלך לנגישות. מכיוון שאתה משתמש בו כבר זמן מה, האם תוכל בבקשה לכתוב ביקורת של 5 כוכבים על Accessibility Checker בספריית התוספים של WordPress? זה יעזור להגדיל את הנראות שלנו כך שיותר אנשים יוכלו ללמוד על חשיבות הנגישות באינטרנט. תודה רבה!" -#: admin/class-admin-notices.php:305 +#: admin/class-admin-notices.php:334 msgid "Write A Review" msgstr "כתוב ביקורת" -#: admin/class-admin-notices.php:306 +#: admin/class-admin-notices.php:335 msgid "Remind Me In Two Weeks" msgstr "הזכר לי בעוד שבועיים" -#: admin/class-admin-notices.php:307 +#: admin/class-admin-notices.php:336 msgid "Never Ask Again" msgstr "אל תשאל יותר" -#: admin/class-admin-notices.php:334 +#: admin/class-admin-notices.php:363 msgid "The review action value was not set" msgstr "ערך פעולת הביקורת לא הוגדר" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:212 -#: admin/class-ajax.php:591 -#: admin/class-ajax.php:809 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:227 +#: admin/class-ajax.php:638 msgid "The post ID was not set" msgstr "מזהה הפוסט לא הוגדר" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:68 +#: admin/class-ajax.php:231 +#: admin/class-ajax.php:642 +msgid "You do not have permission to view this information for this post." +msgstr "אין לך הרשאה לצפות במידע זה עבור פוסט זה." + +#: admin/class-ajax.php:87 msgid "A Simplified summary has not been included for this content." msgstr "לא נכלל סיכום מפושט עבור תוכן זה." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:90 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:93 msgid "The reading level of the simplified summary is too high." msgstr "רמת הקריאה של הסיכום המפושט גבוהה מדי." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:95 msgid "A simplified summary has been included for this content." msgstr "נכלל סיכום מפושט עבור תוכן זה." -#. translators: %s: Number of errors -#: admin/class-ajax.php:126 +#. translators: %d: percentage of passed checks +#: admin/class-ajax.php:106 #, php-format -msgid "%s Error" -msgid_plural "%s Errors" -msgstr[0] "%s שגיאה" -msgstr[1] "%s שגיאות" +msgid "%d%% Passed Checks" +msgstr "%d%% בדיקות עברו" -#. translators: %s: Number of contrast errors -#: admin/class-ajax.php:132 -#, php-format -msgid "%s Contrast Error" -msgid_plural "%s Contrast Errors" -msgstr[0] "%s שגיאת ניגודיות" -msgstr[1] "%s שגיאות ניגודיות" +#: admin/class-ajax.php:115 +#: admin/class-welcome-page.php:102 +#: admin/class-widgets.php:111 +#: build/sidebar.bundle.js:2 +msgid "Passed Checks" +msgstr "עבר בדיקות" + +#: admin/class-ajax.php:125 +msgid "Passed Tests" +msgstr "בדיקות שעברו" -#. translators: %s: Number of warnings #: admin/class-ajax.php:138 -#, php-format -msgid "%s Warning" -msgid_plural "%s Warnings" -msgstr[0] "%s אזהרה" -msgstr[1] "%s אזהרות" +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "Problem" +msgid_plural "Problems" +msgstr[0] "בעיה" +msgstr[1] "בעיות" -#. translators: %s: Number of ignored items #: admin/class-ajax.php:144 +msgid "Contrast Problem" +msgid_plural "Contrast Problems" +msgstr[0] "בעיית ניגודיות" +msgstr[1] "בעיות ניגודיות" + +#: admin/class-ajax.php:150 +#: admin/class-widgets.php:182 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "Needs Review" +msgid_plural "Needs Review" +msgstr[0] "דורש בדיקה" +msgstr[1] "דורש בדיקה" + +#: admin/class-ajax.php:156 +#: admin/class-ajax.php:385 +#: admin/class-welcome-page.php:197 +msgid "Dismissed Issue" +msgid_plural "Dismissed Issues" +msgstr[0] "בעיה שבוטלה" +msgstr[1] "בעיות שבוטלו" + +#: admin/class-ajax.php:176 +#: includes/wcag.php:1763 +#: build/sidebar.bundle.js:2 +msgid "Reading Level" +msgstr "רמת קריאה" + +#. translators: 1: opening anchor tag, 2: closing anchor tag with arrow icon and screen reader text +#: admin/class-ajax.php:187 #, php-format -msgid "%s Ignored Item" -msgid_plural "%s Ignored Items" -msgstr[0] "%s פריט שהתעלמו ממנו" -msgstr[1] "%s פריטים שהתעלמו מהם" +msgid "* True accessibility requires manual testing in addition to automated scans. %1$sLearn how to manually test for accessibility%2$s" +msgstr "נגישות אמיתית דורשת בדיקה ידנית בנוסף לסריקות אוטומטיות. %1$sלמד כיצד לבדוק נגישות באופן ידני%2$s" + +#: admin/class-ajax.php:198 +#: admin/class-ajax.php:790 +#: admin/class-ignore-ui.php:126 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid ", opens a new window" +msgstr ", נפתח חלון חדש" -#: admin/class-ajax.php:182 +#: admin/class-ajax.php:203 msgid "No summary to return" msgstr "אין סיכום להחזרה" -#: admin/class-ajax.php:226 +#: admin/class-ajax.php:242 +#: includes/classes/class-rest-api.php:905 msgid "Invalid table name" msgstr "שם טבלה לא חוקי" -#: admin/class-ajax.php:372 +#: admin/class-ajax.php:383 +msgid " total" +msgstr " סה״כ" + +#. translators: 1: rule title, 2: "Opens in a new window." +#: admin/class-ajax.php:392 +#, php-format +msgid "Read documentation for %1$s. %2$s" +msgstr "קרא תיעוד עבור %1$s. %2$s" + +#. translators: %s: rule title +#: admin/class-ajax.php:400 +#, php-format +msgid "Expand issues for %s" +msgstr "הרחב בעיות עבור %s" + +#: admin/class-ajax.php:426 +#: build/issueModal.bundle.js:2 msgid "These settings enable global fixes across your entire site." msgstr "הגדרות אלו מאפשרות תיקונים גלובליים בכל האתר שלך." -#: admin/class-ajax.php:373 +#: admin/class-ajax.php:427 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "ייתכן שיהיה צורך לשמור מחדש דפים או לבצע סריקה מלאה של האתר כדי לראות את התיקונים משתקפים בדוחות." -#: admin/class-ajax.php:401 +#: admin/class-ajax.php:455 #: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 msgid "Save" msgstr "שמור" -#: admin/class-ajax.php:423 +#: admin/class-ajax.php:477 +#: build/issueModal.bundle.js:2 msgid "Affected Code" msgstr "קוד מושפע" +#: admin/class-ajax.php:480 +#: build/issueModal.bundle.js:2 +msgid "Image" +msgstr "תמונה" + +#: admin/class-ajax.php:483 +#: build/issueModal.bundle.js:2 +msgid "Landmark" +msgstr "נקודת ציון" + +#: admin/class-ajax.php:486 +msgid "Actions" +msgstr "פעולות" + +#: admin/class-ajax.php:495 +msgid "Dismissed" +msgstr "נדחו" + +#: admin/class-ajax.php:495 +msgid "Dismiss" +msgstr "דחה" + +#. translators: %d: issue ID number +#: admin/class-ajax.php:506 +#, php-format +msgid "Issue ID %d" +msgstr "מזהה בעיה %d" + +#. translators: %d: issue ID number +#: admin/class-ajax.php:524 +#, php-format +msgid "image for issue %d" +msgstr "תמונה עבור בעיה %d" + #. Translators: %d is the issue ID. -#: admin/class-ajax.php:500 +#: admin/class-ajax.php:561 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "צפה בבעיה מספר %d באתר, נפתח בחלון חדש" -#: admin/class-ajax.php:501 +#: admin/class-ajax.php:562 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 msgid "View on page" msgstr "צפה בדף" -#: admin/class-ajax.php:520 +#: admin/class-ajax.php:581 msgid "Fix: " msgstr "תיקון: " -#: admin/class-ajax.php:521 +#: admin/class-ajax.php:582 msgid "Fix" msgstr "תקן" -#: admin/class-ajax.php:544 -msgid "Your user account doesn't have permission to ignore this issue." -msgstr "לחשבון המשתמש שלך אין הרשאה להתעלם מבעיה זו." - -#: admin/class-ajax.php:562 +#: admin/class-ajax.php:615 msgid "No details to return" msgstr "אין פרטים להחזרה" -#: admin/class-ajax.php:701 +#. translators: %s: reading grade level value e.g. "8th Grade (Flesch-Kincaid)", displayed in a element. Do not translate the %s placeholder. +#: admin/class-ajax.php:687 +#, php-format +msgid "Post Reading Grade Level: %s" +msgstr "רמת קריאה של פוסט: %s" + +#: admin/class-ajax.php:688 +#: admin/class-ajax.php:709 +#: admin/site-health/class-pro.php:75 +msgid "None" +msgstr "ללא" + +#: admin/class-ajax.php:691 +msgid "Your post has a reading level higher than 9th grade. Web Content Accessibility Guidelines (WCAG) at the AAA level require a simplified summary of your post that is 9th grade or below." +msgstr "לפוסט שלך יש רמת קריאה גבוהה מכיתה ט'. הנחיות הנגישות לתוכן אינטרנט (WCAG) ברמת AAA דורשות סיכום פשוט של הפוסט שלך ברמת כיתה ט' או פחות." + +#: admin/class-ajax.php:693 +msgid "Your post does not contain enough content to calculate its reading level." +msgstr "הפוסט שלך אינו מכיל מספיק תוכן כדי לחשב את רמת הקריאה שלו." + +#: admin/class-ajax.php:695 +msgid "A simplified summary is not necessary when content reading level is 9th grade or below. Choose when to prompt for a simplified summary on the settings page." +msgstr "סיכום פשוט אינו נחוץ כאשר רמת הקריאה של התוכן היא כיתה ט' או פחות. בחר מתי להציג הנחיה לסיכום פשוט בדף ההגדרות." + +#. translators: %s: the simplified summary grade level value (wrapped in a tag) +#: admin/class-ajax.php:708 +#: admin/class-ajax.php:720 +#, php-format +msgid "Simplified Summary Reading Grade Level: %s" +msgstr "רמת קריאות של סיכום פשוט: %s" + +#: admin/class-ajax.php:712 +#: build/sidebar.bundle.js:2 +msgid "Not enough content to determine an accurate reading level." +msgstr "אין מספיק תוכן כדי לקבוע רמת קריאות מדויקת." + +#: admin/class-ajax.php:725 +msgid "Your simplified summary has a reading level above 9th grade." +msgstr "רמת הקריאות של הסיכום הפשוט שלך היא מעל כיתה ט׳." + +#: admin/class-ajax.php:726 +msgid "Your simplified summary has a reading level at or below 9th grade." +msgstr "רמת הקריאות של הסיכום הפשוט שלך היא בכיתה ט׳ או מתחתיה." + +#: admin/class-ajax.php:737 +#: admin/class-ajax.php:767 +msgid "Simplified summary is not being automatically inserted into the content." +msgstr "סיכום פשוט אינו מוכנס אוטומטית לתוכן." + +#. translators: %s: link to the settings page +#: admin/class-ajax.php:740 +#, php-format +msgid "Your Prompt for Simplified Summary is set to “never.” If you would like the simplified summary to be displayed automatically, you can change this on the %s." +msgstr "ההנחיה שלך לסיכום פשוט מוגדרת ל \"אף פעם.\" אם ברצונך שהסיכום הפשוט יוצג אוטומטית, תוכל לשנות זאת ב%s." + +#: admin/class-ajax.php:741 +#: admin/class-ajax.php:758 +#: admin/class-ajax.php:771 +msgid "settings page" +msgstr "דף הגדרות" + +#. translators: %s: position phrase wrapped in a element (e.g. "before the content"). Do not translate the %s placeholder. +#: admin/class-ajax.php:752 +#, php-format +msgid "Simplified summary is being automatically inserted %s." +msgstr "סיכום פשוט מוכנס אוטומטית %s." + +#: admin/class-ajax.php:753 +msgid "the content" +msgstr "התוכן" + +#. translators: %s: link to the settings page +#: admin/class-ajax.php:757 +#, php-format +msgid "Set where the Simplified Summary is inserted into the content on the %s." +msgstr "קבע היכן הסיכום הפשוט מוכנס לתוכן ב%s." + +#. translators: %s: link to the settings page +#: admin/class-ajax.php:770 +#, php-format +msgid "Your Simplified Summary location is set to “manually” which requires a function be added to your page template. If you would like the simplified summary to be displayed automatically, you can change this on the %s." +msgstr "מיקום הסיכום הפשוט שלך מוגדר ל \"ידנית\" מה שדורש הוספת פונקציה לתבנית הדף שלך. אם ברצונך שהסיכום הפשוט יוצג אוטומטית, תוכל לשנות זאת ב%s." + +#: admin/class-ajax.php:784 +#: includes/classes/class-simplified-summary.php:77 +#: includes/options-page.php:932 +#: includes/options-page.php:956 +#: build/sidebar.bundle.js:2 +msgid "Simplified Summary" +msgstr "סיכום מפושט" + +#: admin/class-ajax.php:786 +#: build/sidebar.bundle.js:2 +msgid "Save Summary" +msgstr "שמור סיכום" + +#: admin/class-ajax.php:790 +msgid "Learn more about improving readability and simplified summary requirements" +msgstr "למד עוד על שיפור קריאות ודרישות סיכום פשוט" + +#: admin/class-ajax.php:793 msgid "No readability data to return" msgstr "אין נתוני קריאות להחזרה" -#: admin/class-ajax.php:758 -#: admin/class-ajax.php:781 +#: admin/class-ajax.php:853 +#: admin/class-ajax.php:874 msgid "No ignore data to return" msgstr "אין נתוני התעלמות להחזרה" -#: admin/class-ajax.php:816 -msgid "The summary was not set" -msgstr "הסיכום לא הוגדר" +#: admin/class-enqueue-admin.php:435 +msgid "* Screen Reader Text" +msgstr "* טקסט לקורא מסך" -#: admin/class-frontend-highlight.php:84 +#: admin/class-frontend-highlight.php:86 msgid "The id value was not set" msgstr "ערך המזהה לא הוגדר" -#: admin/class-frontend-highlight.php:92 +#: admin/class-frontend-highlight.php:93 +#: includes/classes/class-rest-api.php:1043 +msgid "Post not found" +msgstr "הפוסט לא נמצא" + +#: admin/class-frontend-highlight.php:115 msgid "Issue query returned no results" msgstr "שאילתת הבעיה לא החזירה תוצאות" -#: admin/class-frontend-highlight.php:138 +#: admin/class-frontend-highlight.php:168 msgid "Object query returned no results" msgstr "שאילתת האובייקט לא החזירה תוצאות" -#: admin/class-plugin-action-links.php:48 -#: includes/classes/class-admin-toolbar.php:94 -#: includes/options-page.php:66 +#: admin/class-ignore-ui.php:31 +msgid "False positive" +msgstr "חיובי שגוי" + +#: admin/class-ignore-ui.php:32 +msgid "The scanner flagged this, but it does not apply to this content." +msgstr "הסורק סימן זאת, אך זה לא חל על תוכן זה." + +#: admin/class-ignore-ui.php:35 +msgid "Remediated" +msgstr "תוקן" + +#: admin/class-ignore-ui.php:36 +msgid "The issue has been fixed, but the page has not been rescanned yet." +msgstr "הבעיה תוקנה, אך הדף עדיין לא נסרק מחדש." + +#: admin/class-ignore-ui.php:39 +msgid "Confirmed accessible" +msgstr "נגיש מאושר" + +#: admin/class-ignore-ui.php:40 +msgid "Reviewed and verified to meet accessibility requirements." +msgstr "נבדק ואומת כעומד בדרישות הנגישות." + +#: admin/class-ignore-ui.php:82 +msgid "Username:" +msgstr "שם משתמש:" + +#: admin/class-ignore-ui.php:92 +msgid "Date:" +msgstr "תאריך:" + +#: admin/class-ignore-ui.php:97 +#: build/issueModal.bundle.js:2 +msgid "Reopen Issue" +msgstr "פתח מחדש בעיה" + +#: admin/class-ignore-ui.php:98 +#: build/issueModal.bundle.js:2 +msgid "Dismiss Issue" +msgstr "בטל בעיה" + +#: admin/class-ignore-ui.php:119 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:142 +msgid "Comment" +msgstr "תגובה" + +#: admin/class-ignore-ui.php:126 +msgid "Manage Globally Dismissed" +msgstr "נהל ביטולים גלובליים" + +#: admin/class-ignore-ui.php:134 +msgid "Your user account doesn't have permission to dismiss this issue." +msgstr "לחשבון המשתמש שלך אין הרשאה לבטל בעיה זו." + +#: admin/class-ignore-ui.php:156 +#: build/issueModal.bundle.js:2 +msgid "Dismiss issue as:" +msgstr "בטל בעיה בתור:" + +#: admin/class-plugin-action-links.php:52 +#: includes/classes/class-admin-toolbar.php:98 +#: includes/options-page.php:72 msgid "Settings" msgstr "הגדרות" -#: admin/class-plugin-action-links.php:60 +#: admin/class-plugin-action-links.php:64 msgid "Get Accessibility Checker Pro, opens in new window" msgstr "קבל את Accessibility Checker Pro, נפתח בחלון חדש" -#: admin/class-plugin-row-meta.php:53 +#: admin/class-plugin-row-meta.php:57 msgid "View Accessibility Checker Documentation (opens in new window)" msgstr "צפה בתיעוד של Accessibility Checker (נפתח בחלון חדש)" -#: admin/class-plugin-row-meta.php:54 -#: admin/class-widgets.php:309 +#: admin/class-plugin-row-meta.php:58 +#: admin/class-widgets.php:318 msgid "Documentation" msgstr "תיעוד" -#: admin/class-plugin-row-meta.php:59 +#: admin/class-plugin-row-meta.php:63 msgid "Get support for Accessibility Checker (opens in new window)" msgstr "קבל תמיכה עבור Accessibility Checker (נפתח בחלון חדש)" -#: admin/class-plugin-row-meta.php:60 +#: admin/class-plugin-row-meta.php:64 msgid "Support" msgstr "תמיכה" -#: admin/class-plugin-row-meta.php:65 +#: admin/class-plugin-row-meta.php:69 msgid "Rate Accessibility Checker plugin (opens in new window)" msgstr "דרג את תוסף Accessibility Checker (נפתח בחלון חדש)" -#: admin/class-plugin-row-meta.php:66 +#: admin/class-plugin-row-meta.php:70 msgid "Rate plugin" msgstr "דרג את התוסף" -#: admin/class-upgrade-promotion.php:58 -msgid "Upgrade to Pro" -msgstr "שדרג לפרו" - -#: admin/class-upgrade-promotion.php:60 +#: admin/class-upgrade-promotion.php:64 msgid "Upgrade Sale Now" msgstr "מבצע שדרוג עכשיו" -#: admin/class-upgrade-promotion.php:82 +#: admin/class-upgrade-promotion.php:86 msgid "Unable to redirect to upgrade page." msgstr "לא ניתן להפנות לדף השדרוג." -#: admin/class-welcome-page.php:38 +#: admin/class-welcome-page.php:68 msgid "Most Recent Test Summary" msgstr "סיכום הבדיקה האחרונה" -#: admin/class-welcome-page.php:44 +#: admin/class-welcome-page.php:75 msgid "Update Counts" msgstr "עדכן ספירות" -#: admin/class-welcome-page.php:48 +#: admin/class-welcome-page.php:80 msgid "Start New Scan" msgstr "התחל סריקה חדשה" -#: admin/class-welcome-page.php:52 +#: admin/class-welcome-page.php:84 msgid "View All Open Issues" msgstr "צפה בכל הבעיות הפתוחות" -#: admin/class-welcome-page.php:57 +#: admin/class-welcome-page.php:89 msgid "See History" msgstr "צפה בהיסטוריה" -#: admin/class-welcome-page.php:70 -#: admin/class-widgets.php:98 -msgid "Passed Tests" -msgstr "בדיקות שעברו" +#: admin/class-welcome-page.php:119 +msgid "Unique Problem" +msgid_plural "Unique Problems" +msgstr[0] "בעיה ייחודית" +msgstr[1] "בעיות ייחודיות" + +#: admin/class-welcome-page.php:145 +msgid "Unique Contrast Problem" +msgid_plural "Unique Contrast Problems" +msgstr[0] "בעיית ניגודיות ייחודית" +msgstr[1] "בעיות ניגודיות ייחודיות" -#: admin/class-welcome-page.php:86 -msgid "Unique Error" -msgid_plural "Unique Errors" -msgstr[0] "שגיאה ייחודית" -msgstr[1] "שגיאות ייחודיות" - -#: admin/class-welcome-page.php:111 -msgid "Unique Color Contrast Error" -msgid_plural "Unique Color Contrast Errors" -msgstr[0] "שגיאת ניגודיות צבע ייחודית" -msgstr[1] "שגיאות ניגודיות צבע ייחודיות" - -#: admin/class-welcome-page.php:136 -msgid "Unique Warning" -msgid_plural "Unique Warnings" -msgstr[0] "אזהרה ייחודית" -msgstr[1] "אזהרות ייחודיות" - -#: admin/class-welcome-page.php:161 -msgid "Ignored Item" -msgid_plural "Ignored Items" -msgstr[0] "פריט שהתעלמו ממנו" -msgstr[1] "פריטים שהתעלמו מהם" - -#: admin/class-welcome-page.php:178 +#: admin/class-welcome-page.php:171 +msgid "Unique Item Needing Review" +msgid_plural "Unique Items Needing Review" +msgstr[0] "פריט ייחודי הדורש בדיקה" +msgstr[1] "פריטים ייחודיים הדורשים בדיקה" + +#: admin/class-welcome-page.php:214 msgid "Average Issues Per Page" msgstr "ממוצע בעיות לדף" -#: admin/class-welcome-page.php:191 +#: admin/class-welcome-page.php:227 msgid "Average Issue Density" msgstr "צפיפות בעיות ממוצעת" -#: admin/class-welcome-page.php:204 -#: admin/class-widgets.php:105 +#: admin/class-welcome-page.php:240 msgid "Report Last Updated:" msgstr "הדוח עודכן לאחרונה:" -#: admin/class-welcome-page.php:214 -#: includes/options-page.php:408 +#: admin/class-welcome-page.php:250 +#: includes/options-page.php:619 msgid "Never" msgstr "מעולם לא" -#: admin/class-welcome-page.php:228 +#: admin/class-welcome-page.php:264 +#: admin/class-widgets.php:97 msgid "URLs Scanned" msgstr "כתובות URL שנסרקו" #. translators: %1$s is the number of post types with issues, %2$s is the number of public post types. -#: admin/class-welcome-page.php:239 +#: admin/class-welcome-page.php:275 #, php-format msgid "%1$s of %2$s" msgstr "%1$s מתוך %2$s" -#: admin/class-welcome-page.php:248 +#: admin/class-welcome-page.php:284 msgid "Post Types Checked" msgstr "סוגי פוסטים שנבדקו" -#: admin/class-welcome-page.php:261 +#: admin/class-welcome-page.php:297 msgid "URLs with 100% score" msgstr "כתובות URL עם ציון 100%" -#: admin/class-welcome-page.php:269 +#: admin/class-welcome-page.php:305 msgid "This summary is automatically updated every 24 hours, or any time a full site scan is completed. You can also manually update these results by clicking the Update Counts button." msgstr "סיכום זה מתעדכן אוטומטית כל 24 שעות, או בכל פעם שמתבצעת סריקה מלאה של האתר. ניתן גם לעדכן ידנית את התוצאות האלה על ידי לחיצה על כפתור 'עדכן ספירות'." -#: admin/class-welcome-page.php:275 +#: admin/class-welcome-page.php:311 msgid "Your site has a large number of issues. For performance reasons, not all issues have been included in this summary." msgstr "לאתר שלך יש מספר גדול של בעיות. מסיבות ביצועים, לא כל הבעיות נכללו בסיכום זה." -#: admin/class-welcome-page.php:285 +#: admin/class-welcome-page.php:321 msgid "Site-Wide Accessibility Reports" msgstr "דוחות נגישות לכל האתר" -#: admin/class-welcome-page.php:290 +#: admin/class-welcome-page.php:326 msgid "Hide banner" msgstr "הסתר כרזה" -#: admin/class-welcome-page.php:299 +#: admin/class-welcome-page.php:335 msgid "Unlock Detailed Accessibility Reports" msgstr "שחרר דוחות נגישות מפורטים" -#: admin/class-welcome-page.php:302 -#: admin/class-widgets.php:71 +#: admin/class-welcome-page.php:338 +#: admin/class-widgets.php:75 msgid "Start scanning your entire website for accessibility issues, get full-site reports, and become compliant with accessibility guidelines faster." msgstr "התחל לסרוק את האתר כולו לבעיות נגישות, קבל דוחות לכל האתר, והפוך לתואם להנחיות נגישות מהר יותר." -#: admin/class-welcome-page.php:306 -#: admin/class-widgets.php:73 +#: admin/class-welcome-page.php:342 +#: admin/class-widgets.php:77 msgid "Upgrade Accessibility Checker" msgstr "שדרג את Accessibility Checker" -#: admin/class-widgets.php:69 +#: admin/class-widgets.php:73 msgid "close ad" msgstr "סגור פרסומת" -#: admin/class-widgets.php:70 +#: admin/class-widgets.php:74 msgid "Get Detailed Accessibility Reports" msgstr "קבל דוחות נגישות מפורטים" -#: admin/class-widgets.php:88 +#: admin/class-widgets.php:92 msgid "Full Site Accessibility Status" msgstr "מצב נגישות לכל האתר" -#: admin/class-widgets.php:113 -msgid "URLs Scanned:" -msgstr "כתובות URL שנסרקו:" +#: admin/class-widgets.php:99 +msgid "Updated" +msgstr "עודכן" #: admin/class-widgets.php:121 -msgid "Errors:" -msgstr "שגיאות:" +msgid "Problems:" +msgstr "בעיות:" -#: admin/class-widgets.php:125 -msgid "Color Contrast Errors:" -msgstr "שגיאות ניגודיות צבע:" +#: admin/class-widgets.php:127 +msgid "Contrast Problems:" +msgstr "בעיות ניגודיות:" -#: admin/class-widgets.php:129 -msgid "Warnings:" -msgstr "אזהרות:" +#: admin/class-widgets.php:133 +msgid "Needs Review:" +msgstr "דורש בדיקה:" -#: admin/class-widgets.php:144 +#: admin/class-widgets.php:148 msgid "Your site has accessibility issues that should be addressed as soon as possible to ensure compliance with accessibility guidelines." msgstr "לאתר שלך יש בעיות נגישות שיש לטפל בהן בהקדם האפשרי כדי להבטיח תאימות להנחיות נגישות." -#: admin/class-widgets.php:147 +#: admin/class-widgets.php:151 msgid "Way to go! Accessibility Checker cannot find any accessibility problems in the content it tested. Some problems cannot be found by automated tools so don't forget to" msgstr "כל הכבוד! Accessibility Checker לא מצא בעיות נגישות בתוכן שנבדק. חלק מהבעיות לא ניתנות לאיתור על ידי כלים אוטומטיים, אז אל תשכח" -#: admin/class-widgets.php:147 +#: admin/class-widgets.php:151 msgid "manually test your site" msgstr "לבדוק את האתר שלך ידנית" -#: admin/class-widgets.php:162 +#: admin/class-widgets.php:166 msgid "Issues By Post Type" msgstr "בעיות לפי סוג פוסט" -#: admin/class-widgets.php:169 +#: admin/class-widgets.php:173 msgid "Post Type" msgstr "סוג פוסט" -#: admin/class-widgets.php:172 -msgid "Errors" -msgstr "שגיאות" +#: admin/class-widgets.php:176 +#: build/sidebar.bundle.js:2 +msgid "Problems" +msgstr "בעיות" -#: admin/class-widgets.php:175 +#: admin/class-widgets.php:179 msgid "Contrast" msgstr "ניגודיות" -#: admin/class-widgets.php:178 -msgid "Warnings" -msgstr "אזהרות" +#: admin/class-widgets.php:251 +msgid "Upgrade to Scan (opens in a new window)" +msgstr "שדרג לסריקה (נפתח בחלון חדש)" -#: admin/class-widgets.php:247 +#: admin/class-widgets.php:252 msgid "Upgrade to Scan" msgstr "שדרג כדי לסרוק" -#: admin/class-widgets.php:276 +#: admin/class-widgets.php:282 msgid "See More Reports" msgstr "צפה בדוחות נוספים" -#: admin/class-widgets.php:286 -#: partials/welcome-page.php:235 +#: admin/class-widgets.php:294 +#: partials/welcome-page.php:243 msgid "Learn Accessibility" msgstr "למד על נגישות" -#: admin/class-widgets.php:307 +#: admin/class-widgets.php:316 msgid "Additional Resources" msgstr "משאבים נוספים" -#: admin/class-widgets.php:308 +#: admin/class-widgets.php:317 msgid "Blog (opens in a new window)" msgstr "בלוג (נפתח בחלון חדש)" -#: admin/class-widgets.php:308 +#: admin/class-widgets.php:317 msgid "Blog" msgstr "בלוג" -#: admin/class-widgets.php:309 +#: admin/class-widgets.php:318 msgid "Documentation (opens in a new window)" msgstr "תיעוד (נפתח בחלון חדש)" -#: admin/opt-in/class-email-opt-in.php:115 +#: admin/opt-in/class-email-opt-in.php:119 msgid "Accessibility Events & News in Your Inbox" msgstr "אירועי נגישות וחדשות לתיבת הדואר שלך" -#: admin/opt-in/class-email-opt-in.php:121 +#: admin/opt-in/class-email-opt-in.php:125 msgid "Subscribe to Equalize Digital's email list to get access to free accessibility webinars and training resources." msgstr "הירשם לרשימת התפוצה של Equalize Digital כדי לקבל גישה לוובינרים ומשאבי הדרכה חינמיים בנושא נגישות." -#: admin/opt-in/class-email-opt-in.php:127 +#: admin/opt-in/class-email-opt-in.php:131 msgid "Email*" msgstr "אימייל*" -#: admin/opt-in/class-email-opt-in.php:131 +#: admin/opt-in/class-email-opt-in.php:135 msgid "Type your email" msgstr "הקלד את האימייל שלך" -#: admin/opt-in/class-email-opt-in.php:139 +#: admin/opt-in/class-email-opt-in.php:143 msgid "First Name" msgstr "שם פרטי" -#: admin/opt-in/class-email-opt-in.php:143 +#: admin/opt-in/class-email-opt-in.php:147 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:157 +#, 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 — היסטוריית ביקורת" -#: admin/site-health/class-checks.php:44 +#: admin/site-health/class-checks.php:48 msgid "Accessibility issues" msgstr "בעיות נגישות" -#: admin/site-health/class-checks.php:49 +#: admin/site-health/class-checks.php:53 msgid "Content checked for accessibility" msgstr "תוכן שנבדק לנגישות" -#: admin/site-health/class-checks.php:54 +#: admin/site-health/class-checks.php:58 msgid "Post types configured for accessibility checks" msgstr "סוגי פוסטים שהוגדרו לבדיקות נגישות" -#: admin/site-health/class-checks.php:69 +#: admin/site-health/class-checks.php:73 msgid "Accessibility" msgstr "נגישות" -#: admin/site-health/class-checks.php:96 +#: admin/site-health/class-checks.php:100 msgid "View Issues" msgstr "צפה בבעיות" -#: admin/site-health/class-checks.php:103 +#: admin/site-health/class-checks.php:107 msgid "View Accessibility Checker" msgstr "צפה ב-Accessibility Checker" -#: admin/site-health/class-checks.php:122 +#: admin/site-health/class-checks.php:126 msgid "Accessibility issues detected" msgstr "זוהו בעיות נגישות" #. translators: 1: error count, 2: warning count. -#: admin/site-health/class-checks.php:125 +#: admin/site-health/class-checks.php:129 #, php-format msgid "Accessibility Checker has detected %1$s errors and %2$s warnings." msgstr "Accessibility Checker זיהה %1$s שגיאות ו-%2$s אזהרות." -#: admin/site-health/class-checks.php:141 +#: admin/site-health/class-checks.php:145 msgid "No accessibility issues detected" msgstr "לא זוהו בעיות נגישות" -#: admin/site-health/class-checks.php:142 +#: admin/site-health/class-checks.php:146 msgid "Accessibility Checker has not found any issues in scanned content." msgstr "Accessibility Checker לא מצא בעיות בתוכן שנסרק." -#: admin/site-health/class-checks.php:160 +#: admin/site-health/class-checks.php:164 msgid "Content has not been checked" msgstr "התוכן לא נבדק" -#: admin/site-health/class-checks.php:161 +#: admin/site-health/class-checks.php:165 msgid "No posts have been scanned yet. Run a full site scan to begin checking your content for accessibility issues." msgstr "טרם נסרקו פוסטים. הפעל סריקת אתר מלאה כדי להתחיל לבדוק את התוכן שלך לבעיות נגישות." -#: admin/site-health/class-checks.php:165 +#: admin/site-health/class-checks.php:169 msgid "Start full site scan" msgstr "התחל סריקת אתר מלאה" -#: admin/site-health/class-checks.php:174 +#: admin/site-health/class-checks.php:178 msgid "Content is being checked for accessibility" msgstr "התוכן נבדק לנגישות" #. translators: %s is the number of posts scanned. -#: admin/site-health/class-checks.php:177 +#: admin/site-health/class-checks.php:181 #, php-format msgid "Accessibility Checker has scanned %s post for accessibility issues." msgid_plural "Accessibility Checker has scanned %s posts for accessibility issues." -msgstr[0] "Accessibility Checker סרק פוסט %s לבעיות נגישות." +msgstr[0] "Accessibility Checker סרק %s פוסט עבור בעיות נגישות." msgstr[1] "Accessibility Checker סרק %s פוסטים לבעיות נגישות." -#: admin/site-health/class-checks.php:196 +#: admin/site-health/class-checks.php:200 msgid "No post types selected for accessibility checking" msgstr "לא נבחרו סוגי פוסטים לבדיקת נגישות" -#: admin/site-health/class-checks.php:197 +#: admin/site-health/class-checks.php:201 msgid "Accessibility Checker cannot scan any content because no post types have been selected. Without configured post types, no accessibility issues will be detected." msgstr "Accessibility Checker אינו יכול לסרוק תוכן כלשהו כי לא נבחרו סוגי פוסטים. ללא סוגי פוסטים מוגדרים, לא יזוהו בעיות נגישות." -#: admin/site-health/class-checks.php:201 +#: admin/site-health/class-checks.php:205 msgid "Configure post types" msgstr "הגדר סוגי פוסטים" -#: admin/site-health/class-checks.php:213 +#: admin/site-health/class-checks.php:217 msgid "Post types are configured for accessibility checking" msgstr "סוגי פוסטים מוגדרים לבדיקת נגישות" #. translators: 1: number of post types, 2: comma-separated list of post type names. -#: admin/site-health/class-checks.php:216 +#: admin/site-health/class-checks.php:220 #, php-format msgid "Accessibility Checker is configured to scan %1$s post type: %2$s." msgid_plural "Accessibility Checker is configured to scan %1$s post types: %2$s." @@ -774,7 +1353,7 @@ msgid "Disabled" msgstr "מושבת" #: admin/site-health/class-free.php:69 -#: includes/options-page.php:137 +#: includes/options-page.php:203 msgid "Delete Data" msgstr "מחק נתונים" @@ -831,405 +1410,442 @@ msgid "Simplified Sum Heading" msgstr "כותרת סיכום מפושט" #: admin/site-health/class-pro.php:74 +#: includes/options-page.php:194 msgid "Ignore Permissions" msgstr "הרשאות התעלמות" -#: admin/site-health/class-pro.php:75 -msgid "None" -msgstr "ללא" - #: admin/site-health/class-pro.php:78 msgid "Ignores DB Table Count" msgstr "ספירת טבלאות מסד נתונים להתעלמות" #. translators: %1$s is the site name, %2$s is a link with the plugin name. -#: includes/classes/class-accessibility-statement.php:45 +#: includes/classes/class-accessibility-statement.php:49 #, php-format msgid "%1$s uses %2$s to monitor our website's accessibility." msgstr "%1$s משתמש ב-%2$s כדי לנטר את הנגישות באתר שלנו." -#: includes/classes/class-accessibility-statement.php:50 +#: includes/classes/class-accessibility-statement.php:54 msgid "Accessibility Checker (opens in a new window)" msgstr "Accessibility Checker (נפתח בחלון חדש)" #. translators: %1$s is a link to the accessibility policy page, with text "Accessibility Policy". -#: includes/classes/class-accessibility-statement.php:59 +#: includes/classes/class-accessibility-statement.php:63 #, php-format msgid "Read our %s" msgstr "קרא את %s שלנו" -#: includes/classes/class-accessibility-statement.php:60 +#: includes/classes/class-accessibility-statement.php:64 msgid "Accessibility Policy" msgstr "מדיניות נגישות" -#: includes/classes/class-admin-toolbar.php:115 -#: partials/pro-callout.php:47 -#: partials/welcome-page.php:215 +#: includes/classes/class-admin-toolbar.php:119 +#: partials/pro-callout.php:51 +#: partials/welcome-page.php:219 msgid "Get Accessibility Checker Pro" msgstr "קבל את Accessibility Checker Pro" -#: includes/classes/class-admin-toolbar.php:120 +#: includes/classes/class-admin-toolbar.php:124 msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "קבל Accessibility Checker Pro (נפתח בחלון חדש)" -#: includes/classes/class-simplified-summary.php:73 -msgid "Simplified Summary" -msgstr "סיכום מפושט" +#: includes/classes/class-rest-api.php:1230 +msgid "Issue not found." +msgstr "הבעיה לא נמצאה." + +#: includes/classes/class-rest-api.php:1273 +msgid "Failed to update the issue." +msgstr "העדכון של הבעיה נכשל." -#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:34 +#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:45 msgid "Add Size & Type To File Links" msgstr "הוסף גודל וסוג לקישורי קבצים" -#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:43 +#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:54 msgid "Add Context to Linked Files" msgstr "הוסף הקשר לקבצים מקושרים" -#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:76 +#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:87 msgid "Add File Size & Type To Links" msgstr "הוסף גודל וסוג קובץ לקישורים" -#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:78 +#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:89 msgid "Add the file size and type to linked files that may trigger a download." msgstr "הוסף את גודל הקובץ וסוגו לקבצים מקושרים שעשויים להפעיל הורדה." -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:34 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:45 msgid "Add Labels to Unlabelled Form Fields" msgstr "הוסף תוויות לשדות טופס ללא תווית" -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:43 -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:66 -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:89 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:54 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:77 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:100 msgid "Label Form Fields" msgstr "תייג שדות טופס" -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:92 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:103 msgid "Add labels to unlabelled form fields if field purpose can be determined." msgstr "הוסף תוויות לשדות טופס ללא תווית אם ניתן לקבוע את מטרת השדה." #. translators: %1$s: a CSS class name wrapped in a tag. -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:123 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:134 #, php-format msgid "Attempt to add labels to form fields that are missing them. Note: You may need to add custom styles targeting the %1$s class if adding labels affects your form layouts." msgstr "נסה להוסיף תוויות לשדות טופס שחסרות להם. שים לב: ייתכן שתצטרך להוסיף סגנונות מותאמים אישית המכוונים למחלקה %1$s אם הוספת תוויות משפיעה על פריסות הטופס שלך." -#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:34 +#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:45 msgid "Add Missing or Empty Page Titles" msgstr "הוסף כותרות דף חסרות או ריקות" -#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:43 +#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:54 msgid "Set Page HTML Titles" msgstr "הגדר כותרות HTML לדף" -#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:77 +#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:88 msgid "Add Missing Page Title" msgstr "הוסף כותרת דף חסרה" #. translators: %1$s: a code tag with a title tag. -#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:80 +#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:91 #, php-format msgid "Add a %1$s tag to the page if it's missing or empty." msgstr "הוסף תג %1$s לדף אם הוא חסר או ריק." -#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:34 +#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:38 msgid "Add warning when link opens new tab/window" msgstr "הוסף אזהרה כאשר קישור נפתח בכרטיסייה/חלון חדש" -#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:68 +#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:72 msgid "Add Label To Links That Open A New Tab/Window" msgstr "הוסף תווית לקישורים שנפתחים בכרטיסייה/חלון חדש" #. translators: %1%s: A tag containing target="_blank". -#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:73 +#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:77 #, php-format msgid "Add a label and icon to links with %1$s informing users they will open a new tab/window. %2$sNote: This setting will have no effect if the \"Block Links Opening New Windows\" fix is enabled.%3$s" msgstr "הוסף תווית וסמל לקישורים עם %1$s המיידעים משתמשים שהם יפתחו כרטיסייה/חלון חדש. %2$sהערה: הגדרה זו לא תהיה אפקטיבית אם התיקון \"חסום קישורים הנפתחים בחלונות חדשים\" מופעל.%3$s" -#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:36 -#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:68 +#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:117 +#: build/pageScanner.bundle.js:2 +msgid "opens a new window" +msgstr "פותח חלון חדש" + +#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:47 +#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:79 msgid "Block PDF Uploads" msgstr "חסום העלאות PDF" #. translators: %1$s: a code tag with the capability name. -#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:72 +#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:83 #, php-format msgid "Restrict PDF uploads for users without the %1$s capability (allowed for admins by default)." msgstr "הגבל העלאות PDF למשתמשים ללא היכולת %1$s (מותר למנהלים כברירת מחדל)." -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:34 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:38 msgid "Add Labels to Comment and Search Forms" msgstr "הוסף תוויות לטפסי תגובות וחיפוש" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:43 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:47 msgid "Label Comment/Search Fields" msgstr "תייג שדות תגובה/חיפוש" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:66 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:70 msgid "Comment and Search Form Labels" msgstr "תוויות טופס תגובות וחיפוש" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:67 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:71 msgid "Add missing labels to WordPress comment and search forms." msgstr "הוסף תוויות חסרות לטפסי תגובות וחיפוש של וורדפרס." -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:90 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:94 msgid "Label Comment Form" msgstr "תייג טופס תגובות" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:93 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:97 msgid "Add missing labels to the WordPress comment form." msgstr "הוסף תוויות חסרות לטופס התגובות של וורדפרס." -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:101 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:105 msgid "Label Search Form" msgstr "תייג טופס חיפוש" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:104 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:108 msgid "Add a missing label to the WordPress search form." msgstr "הוסף תווית חסרה לטופס החיפוש של וורדפרס." -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:138 -msgid "Comment" -msgstr "תגובה" - -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:143 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:147 msgid "Name" msgstr "שם" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:148 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:152 msgid "Email" msgstr "Email" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:153 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:157 msgid "Website" msgstr "אתר אינטרנט" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:177 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:181 msgid "Search …" msgstr "חיפוש …" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:182 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:186 msgid "Search for:" msgstr "חפש עבור:" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:184 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:188 msgid "Search" msgstr "חיפוש" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:198 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:202 msgid "Settings to add missing labels to WordPress comment and search forms." msgstr "הגדרות להוספת תוויות חסרות לטפסי תגובות וחיפוש של WordPress." -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:33 +#: includes/classes/Fixes/Fix/EmptySearchFix.php:42 +#: includes/classes/Fixes/Fix/EmptySearchFix.php:88 +msgid "Force Error on Empty Search" +msgstr "אכיפת שגיאה בחיפוש ריק" + +#: includes/classes/Fixes/Fix/EmptySearchFix.php:65 +msgid "Empty Search Handling" +msgstr "טיפול בחיפוש ריק" + +#: includes/classes/Fixes/Fix/EmptySearchFix.php:91 +msgid "When a search is submitted with an empty query, force WordPress to display the search results template so users see a meaningful response. This assumes the active theme has a search.php template." +msgstr "כאשר חיפוש נשלח עם שאילתה ריקה, אכוף על וורדפרס להציג את תבנית תוצאות החיפוש כדי שהמשתמשים יראו תגובה משמעותית. זה מניח שלערכת העיצוב הפעילה יש תבנית search.php." + +#: includes/classes/Fixes/Fix/EmptySearchFix.php:107 +msgid "Force WordPress to show a search results page when a search is submitted with an empty query." +msgstr "אכוף על וורדפרס להציג דף תוצאות חיפוש כאשר חיפוש נשלח עם שאילתה ריקה." + +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:37 msgid "Add Focus Outlines" msgstr "הוסף קווי מתאר למיקוד" -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:56 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:60 msgid "Focus Outline" msgstr "קו מתאר למיקוד" -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:57 -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:83 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:61 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:87 msgid "Add an outline to elements when they receive keyboard focus." msgstr "הוסף קו מתאר לאלמנטים כאשר הם מקבלים מיקוד מקלדת." -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:81 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:85 msgid "Add Focus Outline" msgstr "הוסף קו מתאר למיקוד" -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:112 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:116 msgid "Settings related to enhancing focus outlines for better keyboard accessibility." msgstr "הגדרות הקשורות לשיפור קווי מתאר למיקוד לנגישות טובה יותר למקלדת." -#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:33 +#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:37 msgid "Add lang & dir Attributes" msgstr "הוסף מאפייני lang ו-dir" -#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:42 +#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:46 msgid "Set Page Language" msgstr "הגדר שפת עמוד" -#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:76 +#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:80 msgid "Add \"lang\" & \"dir\" Attributes" msgstr "הוסף מאפייני \"lang\" ו-\"dir\"" #. translators: %1$s: a attribute name wrapped in a tag. %2$s: dir attribute %3$s: html element. -#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:79 +#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:83 #, php-format msgid "Add the site language (%1$s) and text direction (%2$s) attributes to the %3$s element." msgstr "הוסף את מאפייני שפת האתר (%1$s) וכיוון הטקסט (%2$s) לאלמנט %3$s." -#: includes/classes/Fixes/Fix/LinkUnderline.php:33 +#: includes/classes/Fixes/Fix/LinkUnderline.php:37 msgid "Add Underlines to all non-nav Links" msgstr "הוסף קווים תחתונים לכל הקישורים שאינם ניווט" -#: includes/classes/Fixes/Fix/LinkUnderline.php:42 +#: includes/classes/Fixes/Fix/LinkUnderline.php:46 msgid "Underline Links" msgstr "קו תחתון לקישורים" -#: includes/classes/Fixes/Fix/LinkUnderline.php:76 +#: includes/classes/Fixes/Fix/LinkUnderline.php:80 msgid "Force Link Underline" msgstr "אכוף קו תחתון לקישור" -#: includes/classes/Fixes/Fix/LinkUnderline.php:78 +#: includes/classes/Fixes/Fix/LinkUnderline.php:82 msgid "Ensure that non-navigation links are underlined." msgstr "ודא שקישורים שאינם ניווט מסומנים בקו תחתון." -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:34 +#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:38 msgid "Make Meta Viewport Tag Scalable" msgstr "הפוך את תג meta viewport לניתן להגדלה" -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:57 -msgid "Ensure scalable viewport" -msgstr "ודא viewport ניתן להגדלה" - -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:58 -msgid "Make sure that the viewport tag on the page allows scaling." -msgstr "ודא שתג ה-viewport בעמוד מאפשר הגדלה." - -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:81 +#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:71 msgid "Make Viewport Scalable" msgstr "הפוך viewport לניתן להגדלה" -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:84 +#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:74 msgid "Ensure the viewport tag allows for scaling, enhancing accessibility on mobile devices." msgstr "ודא שתג ה-viewport מאפשר הגדלה, משפר את הנגישות במכשירים ניידים." -#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:34 +#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:38 msgid "Prevent Links Opening New Windows" msgstr "מנע פתיחת קישורים בחלונות חדשים" -#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:68 +#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:72 msgid "Block Links Opening New Windows" msgstr "חסום קישורים הנפתחים בחלונות חדשים" #. translators: %1%s: A tag containing target="_blank". -#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:73 +#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:77 #, php-format msgid "Prevent links from opening in a new window or tab by removing %1$s." msgstr "מנע מקישורים להיפתח בחלון או כרטיסייה חדשים על ידי הסרת %1$s." -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:34 -msgid "Add \"Read\" Link with Post Title" -msgstr "הוסף קישור \"קרא\" עם כותרת הפוסט" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:43 -msgid "Add Title to Read More Link" -msgstr "הוסף כותרת לקישור 'קרא עוד'" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:66 -msgid "Read More links" -msgstr "קישורי 'קרא עוד'" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:67 -msgid "Add the post title and links " -msgstr "הוסף את כותרת הפוסט וקישורים " - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:91 -msgid "Add Post Title To \"Read More\"" -msgstr "הוסף כותרת פוסט ל-\"קרא עוד\"" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:93 -msgid "Add the post title to \"Read More\" links in post lists when your theme outputs those links." -msgstr "הוסף את כותרת הפוסט לקישורי \"קרא עוד\" ברשימות פוסטים כאשר הערכת הנושא שלך מציגה קישורים אלה." - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:102 -msgid "For Screen Readers Only" -msgstr "לקוראי מסך בלבד" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:104 -msgid "Makes the post title added to \"Read More\" links visible only to screen readers." -msgstr "הופך את כותרת הפוסט שנוספה לקישורי \"קרא עוד\" לגלויה רק לקוראי מסך." - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:235 -msgid "This fix adds the post title to the \"Read More\" links in post lists at the \"More\" block and in excerpts." -msgstr "תיקון זה מוסיף את כותרת הפוסט לקישורי \"קרא עוד\" ברשימות פוסטים בבלוק \"עוד\" ובתקצירים." - -#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:33 +#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:37 msgid "Prefer Accessible Label Attribute" msgstr "העדף מאפיין תווית נגיש" -#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:42 +#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:46 msgid "Remove Unnecessary Title Attributes" msgstr "הסר מאפייני כותרת מיותרים" -#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:76 +#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:80 msgid "Remove Title Attributes" msgstr "הסר מאפייני כותרת" #. translators: %1$s: a attribute name wrapped in a tag. -#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:79 +#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:83 #, php-format msgid "Remove %1$s attributes from elements that already have a preferred accessible name." msgstr "הסר מאפייני %1$s מאלמנטים שכבר יש להם שם נגיש מועדף." -#: includes/classes/Fixes/Fix/SkipLinkFix.php:34 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:38 msgid "Add Skip Links" msgstr "הוסף קישורי דילוג" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:57 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:61 msgid "Skip Link" msgstr "קישור דילוג" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:81 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:85 msgid "Enable Skip Link" msgstr "אפשר קישור דילוג" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:84 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:88 msgid "Add a skip link to all site pages, allowing users to skip directly to the main content." msgstr "הוסף קישור דילוג לכל עמודי האתר, המאפשר למשתמשים לדלג ישירות לתוכן הראשי." -#: includes/classes/Fixes/Fix/SkipLinkFix.php:92 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:96 msgid "Main Content Target (required)" msgstr "יעד התוכן הראשי (נדרש)" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:95 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:99 msgid "Define the ID(s) of the main content area(s) to be targeted by skip links. Enter multiple IDs separated by commas; the system will cascade through the list to find the appropriate one for each page." msgstr "הגדר את המזהה(ים) של אזור(י) התוכן הראשי שיהיו מטרה לקישורי הדילוג. הזן מספר מזהים מופרדים בפסיקים; המערכת תעבור ברשימה כדי למצוא את המתאים ביותר לכל עמוד." -#: includes/classes/Fixes/Fix/SkipLinkFix.php:104 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:108 msgid "Navigation Target" msgstr "יעד הניווט" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:107 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:111 msgid "Set the ID attribute of the navigation element. This is useful if your main navigation contains actions that most site visitors would want to take such as login or search features." msgstr "הגדר את מאפיין המזהה של אלמנט הניווט. זה שימושי אם הניווט הראשי שלך מכיל פעולות שרוב מבקרי האתר ירצו לבצע כגון התחברות או תכונות חיפוש." #. translators: %1$s: opening anchor tag, %2$s: closing anchor tag. -#: includes/classes/Fixes/Fix/SkipLinkFix.php:236 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:240 #, php-format msgid "If your theme is not already adding a skip link that allows keyboard users to bypass the navigation and quickly jump to the main content, enable skip links here. %1$sLearn more about skip links.%2$s" msgstr "אם ערכת הנושא שלך אינה מוסיפה כבר קישור דילוג המאפשר למשתמשי מקלדת לעקוף את הניווט ולקפוץ במהירות לתוכן הראשי, אפשר קישורי דילוג כאן. %1$sלמד עוד על קישורי דילוג.%2$s" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:263 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:267 msgid "Skip to content" msgstr "דלג לתוכן" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:272 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:276 msgid "Skip to navigation" msgstr "דלג לניווט" -#: includes/classes/Fixes/Fix/TabindexFix.php:33 +#: includes/classes/Fixes/Fix/TabindexFix.php:37 msgid "Remove Tabindex from Focusable Elements" msgstr "הסר tabindex מאלמנטים הניתנים למיקוד" -#: includes/classes/Fixes/Fix/TabindexFix.php:67 +#: includes/classes/Fixes/Fix/TabindexFix.php:71 msgid "Remove Tab Index" msgstr "הסר אינדקס טאב" #. translators: %1$s: a attribute name wrapped in a tag. -#: includes/classes/Fixes/Fix/TabindexFix.php:70 +#: includes/classes/Fixes/Fix/TabindexFix.php:74 #, php-format msgid "Remove the %1$s attribute from focusable elements." msgstr "הסר את מאפיין %1$s מאלמנטים הניתנים למיקוד." -#: includes/classes/Fixes/FixesManager.php:241 +#: includes/classes/Fixes/FixesManager.php:252 msgid "Note: This setting is not recommended for themes that are already accessibility-ready." msgstr "הערה: הגדרה זו אינה מומלצת לערכות נושא שכבר מוכנות לנגישות." -#: includes/classes/Fixes/FixesManager.php:294 +#: includes/classes/Fixes/FixesManager.php:322 msgid "Fix not found" msgstr "תיקון לא נמצא" +#: includes/classes/Fixes/FixesManager.php:358 +msgid "Fix not found." +msgstr "התיקון לא נמצא." + +#: includes/classes/MyDot/Connector.php:202 +msgid "You do not have permission to manage this license." +msgstr "אין לך הרשאה לנהל רישיון זה." + +#: includes/classes/MyDot/Connector.php:238 +msgid "Pro license is active. Please deactivate the Pro license first if you want to use a free license." +msgstr "רישיון Pro פעיל. אנא בטל/י את רישיון ה-Pro תחילה אם ברצונך להשתמש ברישיון חינם." + +#: includes/classes/MyDot/Connector.php:268 +msgid "An error occurred, please try again." +msgstr "אירעה שגיאה, אנא נסה/נסי שוב." + +#: includes/classes/MyDot/Connector.php:557 +msgid "You do not have permission to register this site." +msgstr "אין לך הרשאה לרשום אתר זה." + +#: includes/classes/MyDot/Connector.php:578 +msgid "You do not have permission to unregister this site." +msgstr "אין לך הרשאה לבטל את רישום אתר זה." + +#: includes/classes/MyDot/Connector.php:604 +msgid "No license key found. Please activate a license before registering your site." +msgstr "לא נמצא מפתח רישיון. אנא הפעל/י רישיון לפני רישום האתר שלך." + +#: includes/classes/MyDot/Connector.php:615 +#: includes/classes/MyDot/Connector.php:822 +msgid "Unknown error occurred while registering the site." +msgstr "אירעה שגיאה בלתי צפויה במהלך רישום האתר." + +#: includes/classes/MyDot/Connector.php:644 +msgid "Site registered successfully. Your site is now configured to use additional accessibility services." +msgstr "האתר נרשם בהצלחה. האתר שלך מוגדר כעת לשימוש בשירותי Accessibility נוספים." + +#: includes/classes/MyDot/Connector.php:654 +msgid "Site registration completed, but the response data was not in the expected format. Some features may not work correctly." +msgstr "רישום האתר הושלם, אך נתוני התגובה לא היו בפורמט הצפוי. ייתכן שתכונות מסוימות לא יפעלו כהלכה." + +#: includes/classes/MyDot/Connector.php:730 +msgid "Unable to unregister site. Required registration data is missing." +msgstr "לא ניתן לבטל את רישום האתר. חסרים נתוני רישום נדרשים." + +#: includes/classes/MyDot/Connector.php:747 +#: includes/classes/MyDot/Connector.php:880 +msgid "Unknown error occurred while unregistering the site." +msgstr "אירעה שגיאה בלתי צפויה במהלך ביטול רישום האתר." + +#: includes/classes/MyDot/Connector.php:762 +msgid "Site unregistered successfully. Your site will no longer receive email reports." +msgstr "רישום האתר בוטל בהצלחה. האתר שלך לא יקבל עוד דוחות email." + +#: includes/classes/MyDot/Connector.php:785 +msgid "No license key provided." +msgstr "לא סופק מפתח רישיון." + +#: includes/classes/MyDot/Connector.php:843 +msgid "Missing required parameters for unregistration." +msgstr "חסרים פרמטרים נדרשים לביטול רישום." + #: includes/classes/Rules/AffectedDisabilities.php:50 msgid "Blind" msgstr "עיוור" @@ -1271,18 +1887,18 @@ msgid "Hard of hearing" msgstr "כבדי שמיעה" #: includes/classes/Rules/AffectedDisabilities.php:70 -#: includes/wcag.php:52 -#: includes/wcag.php:85 -#: includes/wcag.php:118 -#: includes/wcag.php:151 -#: includes/wcag.php:251 -#: includes/wcag.php:269 -#: includes/wcag.php:1661 -#: includes/wcag.php:1695 -#: includes/wcag.php:1728 -#: includes/wcag.php:1748 -#: includes/wcag.php:1767 -#: includes/wcag.php:1786 +#: includes/wcag.php:56 +#: includes/wcag.php:89 +#: includes/wcag.php:122 +#: includes/wcag.php:155 +#: includes/wcag.php:255 +#: includes/wcag.php:273 +#: includes/wcag.php:1665 +#: includes/wcag.php:1699 +#: includes/wcag.php:1732 +#: includes/wcag.php:1752 +#: includes/wcag.php:1771 +#: includes/wcag.php:1790 msgid "Language learners" msgstr "לומדי שפה" @@ -2625,1706 +3241,1786 @@ msgid "W3C: Understanding Guideline 1.2" msgstr "W3C: הבנת הנחיה 1.2" #. translators: 1: a php classname, 2: an error message that was thrown about why this failed to register. -#: includes/classes/WPCLI/BootstrapCLI.php:101 +#: includes/classes/WPCLI/BootstrapCLI.php:113 #, php-format msgid "Failed to register command %1$s because %2$s" msgstr "נכשל ברישום הפקודה %1$s כי %2$s" -#: includes/classes/WPCLI/Command/DeleteStats.php:61 +#: includes/classes/WPCLI/Command/CleanupOrphanedIssues.php:73 +msgid "Number of orphaned posts to process in one batch." +msgstr "מספר פוסטים יתומים לעיבוד באצווה אחת." + +#: includes/classes/WPCLI/Command/CleanupOrphanedIssues.php:80 +msgid "Seconds to sleep between deletions (default: 0)." +msgstr "שניות להשהיה בין מחיקות (ברירת מחדל: 0)." + +#: includes/classes/WPCLI/Command/DeleteStats.php:72 msgid "The ID of the post to delete stats for." msgstr "המזהה של הפוסט למחיקת הסטטיסטיקות עבורו." -#: includes/classes/WPCLI/Command/DeleteStats.php:83 +#: includes/classes/WPCLI/Command/DeleteStats.php:94 msgid "No Post ID provided." msgstr "לא סופק מזהה פוסט." #. translators: 1: a post ID. -#: includes/classes/WPCLI/Command/DeleteStats.php:92 +#: includes/classes/WPCLI/Command/DeleteStats.php:103 #, php-format msgid "Post ID %1$s does not exist." msgstr "מזהה הפוסט %1$s אינו קיים." #. translators: 1: a post ID. -#: includes/classes/WPCLI/Command/DeleteStats.php:103 +#: includes/classes/WPCLI/Command/DeleteStats.php:114 #, php-format msgid "Stats of %1$s deleted." msgstr "הסטטיסטיקות של %1$s נמחקו." -#: includes/classes/WPCLI/Command/GetSiteStats.php:67 +#: includes/classes/WPCLI/Command/GetSiteStats.php:78 msgid "Keys to show in the results. Defaults to all keys." msgstr "מפתחות להצגה בתוצאות. ברירת המחדל היא כל המפתחות." -#: includes/classes/WPCLI/Command/GetSiteStats.php:75 +#: includes/classes/WPCLI/Command/GetSiteStats.php:86 msgid "Clear the cache before retrieving the stats (can be intensive)." msgstr "נקה את המטמון לפני אחזור הסטטיסטיקות (עלול להיות אינטנסיבי)." #. translators: 1: a stat key that was requested but not found. -#: includes/classes/WPCLI/Command/GetSiteStats.php:111 +#: includes/classes/WPCLI/Command/GetSiteStats.php:122 #, php-format msgid "Stat key: %1$s not found in stats." msgstr "מפתח הסטטיסטיקה: %1$s לא נמצא בסטטיסטיקות." -#: includes/classes/WPCLI/Command/GetStats.php:85 +#: includes/classes/WPCLI/Command/GetStats.php:96 msgid "The ID of the post to get stats for." msgstr "המזהה של הפוסט לקבלת הסטטיסטיקות עבורו." #. translators: 1: a post ID. -#: includes/classes/WPCLI/Command/GetStats.php:126 +#: includes/classes/WPCLI/Command/GetStats.php:137 #, php-format msgid "Post ID %1$d does not exist." msgstr "מזהה הפוסט %1$d אינו קיים." #. translators: 1: a post ID. -#: includes/classes/WPCLI/Command/GetStats.php:142 +#: includes/classes/WPCLI/Command/GetStats.php:153 #, php-format msgid "Either the post is not yet scanned or all tests passed for post ID %1$d." msgstr "או שהפוסט טרם נסרק או שכל הבדיקות עברו עבור מזהה הפוסט %1$d." -#: includes/helper-functions.php:25 +#: includes/helper-functions.php:31 msgid "permalink of " msgstr "קישור קבוע של " -#: includes/helper-functions.php:26 +#: includes/helper-functions.php:32 msgid "permalink to " msgstr "קישור קבוע ל- " -#: includes/helper-functions.php:27 +#: includes/helper-functions.php:33 msgid " " msgstr " " -#: includes/helper-functions.php:339 +#: includes/helper-functions.php:409 msgid "Attend Free" msgstr "השתתף בחינם" +#: includes/helper-functions.php:415 +#: partials/welcome-page.php:88 +#: partials/welcome-page.php:93 +#: partials/welcome-page.php:98 +#: partials/welcome-page.php:103 +#: partials/welcome-page.php:108 +#: partials/welcome-page.php:113 +#: partials/welcome-page.php:118 +#: partials/welcome-page.php:124 +#: partials/welcome-page.php:220 +msgid "(opens in a new window)" +msgstr "(נפתח בחלון חדש)" + #. translators: %s is the landmark type (e.g., "Header", "Navigation", "Main"). -#: includes/helper-functions.php:782 -#, php-format +#: includes/helper-functions.php:861 +#: build/issueModal.bundle.js:2 +#, php-format,js-format msgid "View %s landmark on website, opens a new window" msgstr "צפה ב-%s נקודת ציון באתר, נפתח חלון חדש" -#: includes/options-page.php:42 +#: includes/options-page.php:48 msgid "Welcome to Accessibility Checker" msgstr "ברוכים הבאים ל-Accessibility Checker" -#: includes/options-page.php:65 +#: includes/options-page.php:71 msgid "Accessibility Checker Settings" msgstr "הגדרות Accessibility Checker" -#: includes/options-page.php:99 -msgid "General Settings" -msgstr "הגדרות כלליות" +#: includes/options-page.php:115 +msgid "Scan Settings" +msgstr "הגדרות סריקה" + +#: includes/options-page.php:122 +msgid "Permissions" +msgstr "הרשאות" -#: includes/options-page.php:106 +#: includes/options-page.php:129 msgid "Simplified Summary Settings" msgstr "הגדרות תקציר מפושט" -#: includes/options-page.php:113 +#: includes/options-page.php:136 msgid "Footer Accessibility Statement" msgstr "הצהרת נגישות בתחתית העמוד" -#: includes/options-page.php:120 +#: includes/options-page.php:143 msgid "Frontend Accessibility Checker" msgstr "Accessibility Checker בחזית האתר" -#: includes/options-page.php:128 +#: includes/options-page.php:150 +msgid "System Settings" +msgstr "הגדרות מערכת" + +#: includes/options-page.php:158 msgid "Post Types To Be Checked" msgstr "סוגי פוסטים לבדיקה" -#: includes/options-page.php:146 +#: includes/options-page.php:167 +msgid "Scan Speed" +msgstr "מהירות סריקה" + +#: includes/options-page.php:176 +msgid "Archive Scanning" +msgstr "סריקת ארכיון" + +#: includes/options-page.php:185 +msgid "Taxonomy Scanning" +msgstr "סריקת טקסונומיה" + +#: includes/options-page.php:212 +msgid "Block Editor Metabox" +msgstr "תיבת מטא של עורך בלוקים" + +#: includes/options-page.php:221 msgid "Prompt for Simplified Summary" msgstr "בקש תקציר מפושט" -#: includes/options-page.php:155 +#: includes/options-page.php:230 msgid "Simplified Summary Position" msgstr "מיקום התקציר המפושט" -#: includes/options-page.php:164 -#: includes/options-page.php:533 +#: includes/options-page.php:239 +msgid "Simplified Summary Heading" +msgstr "כותרת סיכום מפושטת" + +#: includes/options-page.php:248 +#: includes/options-page.php:752 msgid "Add Footer Accessibility Statement" msgstr "הוסף הצהרת נגישות בתחתית העמוד" -#: includes/options-page.php:173 -#: includes/options-page.php:556 +#: includes/options-page.php:257 +#: includes/options-page.php:775 msgid "Include Link to Accessibility Policy" msgstr "כלול קישור למדיניות הנגישות" -#: includes/options-page.php:182 +#: includes/options-page.php:266 msgid "Accessibility Policy page" msgstr "עמוד מדיניות הנגישות" -#: includes/options-page.php:191 +#: includes/options-page.php:275 msgid "Accessibility Statement Preview" msgstr "תצוגה מקדימה של הצהרת הנגישות" -#: includes/options-page.php:200 +#: includes/options-page.php:283 msgid "Frontend Accessibility Checker Position" msgstr "מיקום Accessibility Checker בחזית האתר" -#. translators: %1$s: link to the plugin documentation website. -#: includes/options-page.php:244 -#, php-format -msgid "Use the settings below to configure Accessibility Checker. Additional information about each setting can be found in the %1$s." -msgstr "השתמש בהגדרות למטה כדי להגדיר את Accessibility Checker. מידע נוסף על כל הגדרה ניתן למצוא ב-%1$s." - -#: includes/options-page.php:245 -msgid "plugin documentation (opens in a new window)" -msgstr "תיעוד התוסף (נפתח בחלון חדש)" - -#: includes/options-page.php:245 -msgid "plugin documentation" -msgstr "תיעוד התוסף" +#: includes/options-page.php:333 +msgid "Configure the types of content that should be checked for accessibility issues." +msgstr "הגדר את סוגי התוכן שיש לבדוק עבור בעיות נגישות." #. translators: %1$s: link to the "Accessibility Checker Pro" website. -#: includes/options-page.php:251 +#: includes/options-page.php:338 #, php-format msgid "More features and email support is available with %1$s." msgstr "תכונות נוספות ותמיכה בדוא\"ל זמינים עם %1$s." -#: includes/options-page.php:259 +#: includes/options-page.php:346 msgid "Accessibility Checker Pro (opens in a new window)" msgstr "Accessibility Checker Pro (נפתח בחלון חדש)" -#: includes/options-page.php:259 -#: partials/welcome-page.php:21 +#: includes/options-page.php:346 +#: partials/welcome-page.php:25 msgid "Accessibility Checker Pro" msgstr "Accessibility Checker Pro" -#: includes/options-page.php:273 +#: includes/options-page.php:360 msgid "Use the settings below to configure the frontend accessibility checker." msgstr "השתמש בהגדרות למטה כדי להגדיר את בודק הנגישות בחזית האתר." -#: includes/options-page.php:283 +#: includes/options-page.php:370 msgid "Web Content Accessibility Guidelines (WCAG) at the AAA level require any content with a reading level above 9th grade to have an alternative that is easier to read. Simplified summary text is added on the readability tab in the Accessibility Checker meta box on each post's or page's edit screen." msgstr "הנחיות נגישות תוכן אינטרנט (WCAG) ברמה AAA דורשות שכל תוכן עם רמת קריאה מעל כיתה ט' יכלול חלופה קלה יותר לקריאה. טקסט תקציר מפושט נוסף בלשונית הקריאות בתיבת המטא של Accessibility Checker במסך העריכה של כל פוסט או עמוד." -#: includes/options-page.php:293 +#: includes/options-page.php:380 msgid "Learn more about simplified summaries and readability requirements (opens in a new window)" msgstr "למד עוד על תקצירים מפושטים ודרישות קריאות (נפתח בחלון חדש)" -#: includes/options-page.php:293 +#: includes/options-page.php:380 msgid "Learn more about simplified summaries and readability requirements." msgstr "למד עוד על תקצירים מפושטים ודרישות קריאות." -#: includes/options-page.php:302 +#: includes/options-page.php:389 msgid "Are you thinking \"Wow, this plugin is amazing\" and is it helping you make your website more accessible? Share your efforts to make your website more accessible with your customers and let them know you're using Accessibility Checker to ensure all people can use your website. Add a small text-only link and statement in the footer of your website." msgstr "האם אתה חושב \"וואו, התוסף הזה מדהים\" והוא עוזר לך להפוך את האתר שלך לנגיש יותר? שתף את המאמצים שלך להפוך את האתר שלך לנגיש יותר עם הלקוחות שלך והודע להם שאתה משתמש ב-Accessibility Checker כדי להבטיח שכל האנשים יוכלו להשתמש באתר שלך. הוסף קישור קטן בטקסט בלבד והצהרה בתחתית האתר שלך." -#: includes/options-page.php:315 +#: includes/options-page.php:398 +msgid "Configure system-level settings for the Accessibility Checker plugin." +msgstr "הגדר הגדרות ברמת המערכת עבור תוסף Accessibility Checker." + +#: includes/options-page.php:412 +msgid "Fast" +msgstr "מהיר" + +#: includes/options-page.php:413 +msgid "Normal" +msgstr "רגיל" + +#: includes/options-page.php:414 +msgid "Slow" +msgstr "איטי" + +#: includes/options-page.php:415 +msgid "Slowest" +msgstr "איטי ביותר" + +#: includes/options-page.php:437 +msgid "Faster scans are more resource intensive and may place a high load on your website." +msgstr "סריקות מהירות יותר צורכות יותר משאבים ועלולות להטיל עומס גבוה על האתר שלך." + +#: includes/options-page.php:463 +msgid "Enable scanning of archive pages" +msgstr "אפשר סריקה של דפי ארכיון" + +#: includes/options-page.php:467 +msgid "Choose whether archive pages should be included in full site scans. By default, a sampling method is used to select taxonomy terms for archive data." +msgstr "בחר אם דפי ארכיון צריכים להיכלל בסריקות האתר המלאות. כברירת מחדל, נעשה שימוש בשיטת דגימה כדי לבחור מונחי טקסונומיה עבור נתוני ארכיון." + +#: includes/options-page.php:493 +msgid "Scan all taxonomy terms instead of just a sample" +msgstr "סרוק את כל מונחי הטקסונומיה במקום רק מדגם" + +#: includes/options-page.php:497 +msgid "Check all taxonomy term archive pages instead of a representative sample. This requires archive page scanning to be enabled and may add a large number of URLs to the scan list." +msgstr "בדוק את כל דפי הארכיון של מונחי הטקסונומיה במקום מדגם מייצג. זה דורש שסריקת דפי ארכיון תהיה מופעלת ועשוי להוסיף מספר גדול של כתובות URL לרשימת הסריקה." + +#: includes/options-page.php:526 msgid "Before the content" msgstr "לפני התוכן" -#: includes/options-page.php:320 +#: includes/options-page.php:531 msgid "After the content" msgstr "אחרי התוכן" -#: includes/options-page.php:325 +#: includes/options-page.php:536 msgid "Insert manually" msgstr "הכנס ידנית" -#: includes/options-page.php:329 +#: includes/options-page.php:540 msgid "Use this function to manually add the simplified summary to your theme within the loop." msgstr "השתמש בפונקציה זו כדי להוסיף ידנית את התקציר המפושט לערכת הנושא שלך בתוך הלולאה." -#: includes/options-page.php:331 +#: includes/options-page.php:542 msgid "The function optionally accepts the post ID as a parameter." msgstr "הפונקציה מקבלת באופן אופציונלי את מזהה הפוסט כפרמטר." -#: includes/options-page.php:334 +#: includes/options-page.php:545 msgid "Set where you would like simplified summaries to appear in relation to your content if filled in." msgstr "קבע היכן תרצה שתקצירים מפושטים יופיעו ביחס לתוכן שלך אם מולאו." -#: includes/options-page.php:349 +#: includes/options-page.php:560 msgid "Bottom Right Corner (default)" msgstr "פינה ימנית תחתונה (ברירת מחדל)" -#: includes/options-page.php:354 +#: includes/options-page.php:565 msgid "Bottom Left Corner" msgstr "פינה שמאלית תחתונה" -#: includes/options-page.php:358 +#: includes/options-page.php:569 msgid "Set where you would like the frontend accessibility checker to appear on the page." msgstr "קבע היכן תרצה שבודק הנגישות בחזית האתר יופיע בעמוד." -#: includes/options-page.php:398 +#: includes/options-page.php:609 msgid "When Required" msgstr "כאשר נדרש" -#: includes/options-page.php:403 +#: includes/options-page.php:614 msgid "Always" msgstr "תמיד" -#: includes/options-page.php:411 +#: includes/options-page.php:622 msgid "Should Accessibility Checker only ask for a simplified summary when the reading level of your post or page is above 9th grade, always ask for it regardless of reading level, or never ask for it regardless of reading level?" msgstr "האם Accessibility Checker צריך לבקש תקציר מפושט רק כאשר רמת הקריאה של הפוסט או העמוד שלך היא מעל כיתה ט', לבקש אותו תמיד ללא קשר לרמת הקריאה, או לעולם לא לבקש אותו ללא קשר לרמת הקריאה?" -#: includes/options-page.php:462 +#: includes/options-page.php:677 msgid "To check content other than posts and pages, please " msgstr "כדי לבדוק תוכן אחר מלבד פוסטים ועמודים, אנא " -#: includes/options-page.php:464 +#: includes/options-page.php:679 msgid "upgrade to pro" msgstr "שדרג לפרו" -#: includes/options-page.php:465 +#: includes/options-page.php:680 msgid " (opens in a new window)" msgstr " (נפתח בחלון חדש)" -#: includes/options-page.php:470 +#: includes/options-page.php:685 msgid "Choose which post types should be checked during a scan. Please note, removing a previously selected post type will remove its scanned information and any custom ignored warnings that have been setup." msgstr "בחר אילו סוגי פוסטים צריכים להיבדק במהלך סריקה. שים לב, הסרת סוג פוסט שנבחר קודם לכן תסיר את המידע הסרוק שלו וכל האזהרות המותאמות אישית שהוגדרו." -#: includes/options-page.php:608 +#: includes/options-page.php:827 msgid "Delete all Accessibility Checker data when the plugin is uninstalled." msgstr "מחק את כל נתוני Accessibility Checker כאשר התוסף מוסר." -#: includes/wcag.php:11 +#: includes/options-page.php:845 +msgid "Show Accessibility Checker metabox in the Block Editor" +msgstr "הצג תיבת מטא של Accessibility Checker בעורך הבלוקים" + +#: includes/options-page.php:1004 +msgid "Choose which user roles have permission to ignore issues." +msgstr "בחר אילו תפקידי משתמש יש להם הרשאה להתעלם מבעיות." + +#: includes/options-page.php:1037 +msgid "Configure which user roles have access to specific Accessibility Checker features." +msgstr "הגדר אילו תפקידי משתמש יש להם גישה לתכונות ספציפיות של Accessibility Checker." + +#: includes/wcag.php:15 msgid "Non-text Content" msgstr "תוכן שאינו טקסט" -#: includes/wcag.php:12 +#: includes/wcag.php:16 msgid "All non-text content must have a text alternative that serves the same purpose, unless it falls into specific exceptions like controls, media, tests, sensory content, CAPTCHA, or decorative elements. Each type must follow specific guidance to ensure accessibility without interfering with the user experience." msgstr "לכל תוכן שאינו טקסט חייב להיות חלופה טקסטואלית המשרתת את אותה מטרה, אלא אם כן הוא נופל לחריגים ספציפיים כמו פקדים, מדיה, מבחנים, תוכן חושי, CAPTCHA או אלמנטים דקורטיביים. כל סוג חייב לעקוב אחר הנחיות ספציפיות כדי להבטיח נגישות מבלי להפריע לחוויית המשתמש." -#: includes/wcag.php:15 +#: includes/wcag.php:19 msgid "1.1 Text Alternatives" msgstr "1.1 חלופות טקסט" -#: includes/wcag.php:16 -#: includes/wcag.php:49 -#: includes/wcag.php:82 -#: includes/wcag.php:115 -#: includes/wcag.php:148 -#: includes/wcag.php:181 -#: includes/wcag.php:213 -#: includes/wcag.php:230 -#: includes/wcag.php:247 -#: includes/wcag.php:266 -#: includes/wcag.php:284 -#: includes/wcag.php:319 -#: includes/wcag.php:353 -#: includes/wcag.php:386 -#: includes/wcag.php:413 -#: includes/wcag.php:441 -#: includes/wcag.php:459 -#: includes/wcag.php:492 -#: includes/wcag.php:520 -#: includes/wcag.php:547 -#: includes/wcag.php:575 -#: includes/wcag.php:604 -#: includes/wcag.php:638 -#: includes/wcag.php:671 -#: includes/wcag.php:703 -#: includes/wcag.php:735 -#: includes/wcag.php:753 -#: includes/wcag.php:770 -#: includes/wcag.php:788 +#: includes/wcag.php:20 +#: includes/wcag.php:53 +#: includes/wcag.php:86 +#: includes/wcag.php:119 +#: includes/wcag.php:152 +#: includes/wcag.php:185 +#: includes/wcag.php:217 +#: includes/wcag.php:234 +#: includes/wcag.php:251 +#: includes/wcag.php:270 +#: includes/wcag.php:288 +#: includes/wcag.php:323 +#: includes/wcag.php:357 +#: includes/wcag.php:390 +#: includes/wcag.php:417 +#: includes/wcag.php:445 +#: includes/wcag.php:463 +#: includes/wcag.php:496 +#: includes/wcag.php:524 +#: includes/wcag.php:551 +#: includes/wcag.php:579 +#: includes/wcag.php:608 +#: includes/wcag.php:642 +#: includes/wcag.php:675 +#: includes/wcag.php:707 +#: includes/wcag.php:739 +#: includes/wcag.php:757 +#: includes/wcag.php:774 +#: includes/wcag.php:792 msgid "Perceivable" msgstr "ניתן לתפיסה" -#: includes/wcag.php:18 -#: includes/wcag.php:288 -#: includes/wcag.php:1533 -#: includes/wcag.php:2200 -#: includes/wcag.php:2234 +#: includes/wcag.php:22 +#: includes/wcag.php:292 +#: includes/wcag.php:1537 +#: includes/wcag.php:2204 +#: includes/wcag.php:2238 msgid "People with dexterity impairments using voice control" msgstr "אנשים עם מוגבלויות זריזות המשתמשים בשליטה קולית" -#: includes/wcag.php:19 -#: includes/wcag.php:289 -#: includes/wcag.php:323 -#: includes/wcag.php:444 -#: includes/wcag.php:894 -#: includes/wcag.php:923 -#: includes/wcag.php:957 -#: includes/wcag.php:991 -#: includes/wcag.php:1011 -#: includes/wcag.php:1030 -#: includes/wcag.php:1049 -#: includes/wcag.php:1133 -#: includes/wcag.php:1167 -#: includes/wcag.php:1237 -#: includes/wcag.php:1304 -#: includes/wcag.php:1338 -#: includes/wcag.php:1372 -#: includes/wcag.php:1457 -#: includes/wcag.php:1476 -#: includes/wcag.php:1506 -#: includes/wcag.php:1662 -#: includes/wcag.php:1696 -#: includes/wcag.php:1806 -#: includes/wcag.php:1842 -#: includes/wcag.php:1877 -#: includes/wcag.php:1908 -#: includes/wcag.php:1940 -#: includes/wcag.php:1976 -#: includes/wcag.php:2010 -#: includes/wcag.php:2044 -#: includes/wcag.php:2078 -#: includes/wcag.php:2112 -#: includes/wcag.php:2131 -#: includes/wcag.php:2202 -#: includes/wcag.php:2236 -#: includes/wcag.php:2267 +#: includes/wcag.php:23 +#: includes/wcag.php:293 +#: includes/wcag.php:327 +#: includes/wcag.php:448 +#: includes/wcag.php:898 +#: includes/wcag.php:927 +#: includes/wcag.php:961 +#: includes/wcag.php:995 +#: includes/wcag.php:1015 +#: includes/wcag.php:1034 +#: includes/wcag.php:1053 +#: includes/wcag.php:1137 +#: includes/wcag.php:1171 +#: includes/wcag.php:1241 +#: includes/wcag.php:1308 +#: includes/wcag.php:1342 +#: includes/wcag.php:1376 +#: includes/wcag.php:1461 +#: includes/wcag.php:1480 +#: includes/wcag.php:1510 +#: includes/wcag.php:1666 +#: includes/wcag.php:1700 +#: includes/wcag.php:1810 +#: includes/wcag.php:1846 +#: includes/wcag.php:1881 +#: includes/wcag.php:1912 +#: includes/wcag.php:1944 +#: includes/wcag.php:1980 +#: includes/wcag.php:2014 +#: includes/wcag.php:2048 +#: includes/wcag.php:2082 +#: includes/wcag.php:2116 +#: includes/wcag.php:2135 +#: includes/wcag.php:2206 +#: includes/wcag.php:2240 +#: includes/wcag.php:2271 msgid "Screen reader users (blind/low vision and neurodivergent people)" msgstr "משתמשי קורא מסך (אנשים עיוורים/לקויי ראייה ונוירודיברגנטים)" -#: includes/wcag.php:44 +#: includes/wcag.php:48 msgid "Prerecorded Audio-only and Video-only" msgstr "אודיו בלבד ווידאו בלבד מוקלטים מראש" -#: includes/wcag.php:45 +#: includes/wcag.php:49 msgid "For prerecorded audio-only and video-only content, a text alternative must be provided that presents equivalent information. This ensures users who cannot hear or see the media can still access its content through text." msgstr "עבור תוכן אודיו בלבד ווידאו בלבד מוקלט מראש, יש לספק חלופה טקסטואלית המציגה מידע שווה ערך. זה מבטיח שמשתמשים שאינם יכולים לשמוע או לראות את המדיה עדיין יכולים לגשת לתוכן שלה באמצעות טקסט." -#: includes/wcag.php:48 -#: includes/wcag.php:81 -#: includes/wcag.php:114 -#: includes/wcag.php:147 -#: includes/wcag.php:180 -#: includes/wcag.php:212 -#: includes/wcag.php:229 -#: includes/wcag.php:246 -#: includes/wcag.php:265 +#: includes/wcag.php:52 +#: includes/wcag.php:85 +#: includes/wcag.php:118 +#: includes/wcag.php:151 +#: includes/wcag.php:184 +#: includes/wcag.php:216 +#: includes/wcag.php:233 +#: includes/wcag.php:250 +#: includes/wcag.php:269 msgid "1.2 Time-based Media" msgstr "1.2 מדיה מבוססת זמן" -#: includes/wcag.php:51 -#: includes/wcag.php:84 -#: includes/wcag.php:117 -#: includes/wcag.php:150 -#: includes/wcag.php:215 -#: includes/wcag.php:249 -#: includes/wcag.php:268 -#: includes/wcag.php:356 -#: includes/wcag.php:607 -#: includes/wcag.php:755 +#: includes/wcag.php:55 +#: includes/wcag.php:88 +#: includes/wcag.php:121 +#: includes/wcag.php:154 +#: includes/wcag.php:219 +#: includes/wcag.php:253 +#: includes/wcag.php:272 +#: includes/wcag.php:360 +#: includes/wcag.php:611 +#: includes/wcag.php:759 msgid "Deaf and hard of hearing people" msgstr "אנשים חירשים וכבדי שמיעה" -#: includes/wcag.php:77 +#: includes/wcag.php:81 msgid "Captions (Prerecorded)" msgstr "כתוביות (מוקלטות מראש)" -#: includes/wcag.php:78 +#: includes/wcag.php:82 msgid "Captions must be provided for all prerecorded audio content in synchronized media—such as videos where audio and visuals play together—so that users who are deaf or hard of hearing can access the spoken information and important sounds." msgstr "יש לספק כתוביות לכל תוכן אודיו מוקלט מראש במדיה מסונכרנת - כמו סרטונים בהם האודיו והחזותי מופעלים יחד - כך שמשתמשים חירשים או כבדי שמיעה יוכלו לגשת למידע המדובר ולצלילים חשובים." -#: includes/wcag.php:110 +#: includes/wcag.php:114 msgid "Audio Description or Media Alternative (Prerecorded)" msgstr "תיאור אודיו או חלופת מדיה (מוקלטים מראש)" -#: includes/wcag.php:111 +#: includes/wcag.php:115 msgid "For prerecorded video content with audio (synchronized media), an audio description—or a written transcript that includes visual details—must be provided to ensure users who are blind or have low vision can understand important visual information that isn't spoken." msgstr "עבור תוכן וידאו מוקלט מראש עם אודיו (מדיה מסונכרנת), יש לספק תיאור אודיו - או תמליל כתוב הכולל פרטים חזותיים - כדי להבטיח שמשתמשים עיוורים או לקויי ראייה יוכלו להבין מידע חזותי חשוב שאינו מדובר." -#: includes/wcag.php:143 +#: includes/wcag.php:147 msgid "Captions (Live)" msgstr "כתוביות (בשידור חי)" -#: includes/wcag.php:144 +#: includes/wcag.php:148 msgid "For all live video content that includes audio, captions must be provided in real time so that users who are deaf or hard of hearing can access the spoken information as it happens." msgstr "עבור כל תוכן וידאו חי הכולל אודיו, יש לספק כתוביות בזמן אמת כך שמשתמשים חירשים או כבדי שמיעה יוכלו לגשת למידע המדובר בזמן שהוא מתרחש." -#: includes/wcag.php:176 +#: includes/wcag.php:180 msgid "Audio Description (Prerecorded)" msgstr "תיאור קולי (מוקלט מראש)" -#: includes/wcag.php:177 +#: includes/wcag.php:181 msgid "For prerecorded video with audio, an audio description of important visual content must be provided, allowing users who are blind or have low vision to understand visual information that is not described in the main audio." msgstr "עבור וידאו מוקלט מראש עם אודיו, יש לספק תיאור קולי של תוכן חזותי חשוב, המאפשר למשתמשים עיוורים או בעלי ראייה ירודה להבין מידע חזותי שאינו מתואר באודיו הראשי." -#: includes/wcag.php:183 -#: includes/wcag.php:232 -#: includes/wcag.php:355 -#: includes/wcag.php:461 -#: includes/wcag.php:577 -#: includes/wcag.php:606 -#: includes/wcag.php:705 -#: includes/wcag.php:790 -#: includes/wcag.php:807 -#: includes/wcag.php:841 -#: includes/wcag.php:875 +#: includes/wcag.php:187 +#: includes/wcag.php:236 +#: includes/wcag.php:359 +#: includes/wcag.php:465 +#: includes/wcag.php:581 +#: includes/wcag.php:610 +#: includes/wcag.php:709 +#: includes/wcag.php:794 +#: includes/wcag.php:811 +#: includes/wcag.php:845 +#: includes/wcag.php:879 msgid "Blind and low vision people" msgstr "אנשים עיוורים ובעלי ראייה ירודה" -#: includes/wcag.php:208 +#: includes/wcag.php:212 msgid "Sign Language (Prerecorded)" msgstr "שפת סימנים (מוקלטת מראש)" -#: includes/wcag.php:209 +#: includes/wcag.php:213 msgid "A sign language interpretation must be provided for all prerecorded audio content in synchronized media, ensuring that users who are deaf and use sign language can fully understand the spoken content." msgstr "יש לספק פרשנות בשפת סימנים לכל תוכן האודיו המוקלט מראש במדיה מסונכרנת, כדי להבטיח שמשתמשים חירשים המשתמשים בשפת סימנים יוכלו להבין במלואו את התוכן המדובר." -#: includes/wcag.php:225 +#: includes/wcag.php:229 msgid "Extended Audio Description (Prerecorded)" msgstr "תיאור קולי מורחב (מוקלט מראש)" -#: includes/wcag.php:226 +#: includes/wcag.php:230 msgid "For all prerecorded multimedia content, extended audio descriptions must be provided when necessary—meaning the video is paused to insert additional descriptions—so that users who are blind or have low vision can understand important visual details that can't be described during the natural pauses in the audio." msgstr "עבור כל תוכן מולטימדיה מוקלט מראש, יש לספק תיאורים קוליים מורחבים כאשר נדרש - כלומר, הווידאו מושהה כדי להוסיף תיאורים נוספים - כך שמשתמשים עיוורים או בעלי ראייה ירודה יוכלו להבין פרטים חזותיים חשובים שלא ניתן לתאר במהלך ההפסקות הטבעיות באודיו." -#: includes/wcag.php:242 +#: includes/wcag.php:246 msgid "Media Alternative (Prerecorded)" msgstr "חלופה למדיה (מוקלטת מראש)" -#: includes/wcag.php:243 +#: includes/wcag.php:247 msgid "For prerecorded synchronized media, a full text alternative (such as a transcript) is provided that gives all the information in both the video and audio tracks, so users who cannot see or hear the content can still access it." msgstr "עבור מדיה מסונכרנת מוקלטת מראש, מסופקת חלופת טקסט מלאה (כגון תמליל) המספקת את כל המידע הן במסלולי הווידאו והן באודיו, כך שמשתמשים שאינם יכולים לראות או לשמוע את התוכן עדיין יוכלו לגשת אליו." -#: includes/wcag.php:250 +#: includes/wcag.php:254 msgid "Deaf-blind people" msgstr "אנשים חירשים-עיוורים" -#: includes/wcag.php:261 +#: includes/wcag.php:265 msgid "Audio-only (Live)" msgstr "אודיו בלבד (חי)" -#: includes/wcag.php:262 +#: includes/wcag.php:266 msgid "For live audio-only content, a text alternative is provided in real time so people who cannot hear the audio can still access the information." msgstr "עבור תוכן אודיו חי בלבד, מסופקת חלופת טקסט בזמן אמת כך שאנשים שאינם יכולים לשמוע את האודיו עדיין יכולים לגשת למידע." -#: includes/wcag.php:279 +#: includes/wcag.php:283 msgid "Info and Relationships" msgstr "מידע ויחסים" -#: includes/wcag.php:280 +#: includes/wcag.php:284 msgid "Information, structure, and relationships in content are programmatically determined or available in text, so assistive technologies can present them to users." msgstr "מידע, מבנה ויחסים בתוכן נקבעים באופן תכנותי או זמינים בטקסט, כך שטכנולוגיות מסייעות יכולות להציג אותם למשתמשים." -#: includes/wcag.php:283 -#: includes/wcag.php:318 -#: includes/wcag.php:352 -#: includes/wcag.php:385 -#: includes/wcag.php:412 -#: includes/wcag.php:440 +#: includes/wcag.php:287 +#: includes/wcag.php:322 +#: includes/wcag.php:356 +#: includes/wcag.php:389 +#: includes/wcag.php:416 +#: includes/wcag.php:444 msgid "1.3 Adaptable" msgstr "1.3 ניתן להתאמה" -#: includes/wcag.php:286 -#: includes/wcag.php:321 -#: includes/wcag.php:808 -#: includes/wcag.php:842 -#: includes/wcag.php:876 -#: includes/wcag.php:1184 -#: includes/wcag.php:1201 -#: includes/wcag.php:1218 -#: includes/wcag.php:1269 -#: includes/wcag.php:1404 -#: includes/wcag.php:1474 -#: includes/wcag.php:1504 -#: includes/wcag.php:1624 -#: includes/wcag.php:1804 -#: includes/wcag.php:1839 -#: includes/wcag.php:1937 +#: includes/wcag.php:290 +#: includes/wcag.php:325 +#: includes/wcag.php:812 +#: includes/wcag.php:846 +#: includes/wcag.php:880 +#: includes/wcag.php:1188 +#: includes/wcag.php:1205 +#: includes/wcag.php:1222 +#: includes/wcag.php:1273 +#: includes/wcag.php:1408 +#: includes/wcag.php:1478 +#: includes/wcag.php:1508 +#: includes/wcag.php:1628 +#: includes/wcag.php:1808 +#: includes/wcag.php:1843 +#: includes/wcag.php:1941 msgid "People who rely on keyboard control" msgstr "אנשים המסתמכים על שליטה במקלדת" -#: includes/wcag.php:287 -#: includes/wcag.php:322 +#: includes/wcag.php:291 +#: includes/wcag.php:326 msgid "People with cognitive differences who view interfaces using an adapted layout" msgstr "אנשים עם הבדלים קוגניטיביים הצופים בממשקים באמצעות פריסה מותאמת" -#: includes/wcag.php:314 +#: includes/wcag.php:318 msgid "Meaningful Sequence" msgstr "רצף משמעותי" -#: includes/wcag.php:315 +#: includes/wcag.php:319 msgid "Content is presented in a meaningful order so that reading or navigation order does not confuse users when using assistive technology." msgstr "התוכן מוצג בסדר משמעותי כך שסדר הקריאה או הניווט לא יבלבל משתמשים בעת שימוש בטכנולוגיה מסייעת." -#: includes/wcag.php:348 +#: includes/wcag.php:352 msgid "Sensory Characteristics" msgstr "מאפיינים חושיים" -#: includes/wcag.php:349 +#: includes/wcag.php:353 msgid "Instructions do not rely only on sensory characteristics such as shape, color, size, or sound, so everyone can understand them." msgstr "ההוראות אינן מסתמכות רק על מאפיינים חושיים כמו צורה, צבע, גודל או צליל, כך שכולם יכולים להבין אותן." -#: includes/wcag.php:381 +#: includes/wcag.php:385 msgid "Orientation" msgstr "כיוון" -#: includes/wcag.php:382 +#: includes/wcag.php:386 msgid "Content does not restrict its view and operation to a single display orientation, such as portrait or landscape, unless a specific orientation is essential." msgstr "התוכן אינו מגביל את התצוגה והפעולה שלו לכיוון תצוגה יחיד, כמו לאורך או לרוחב, אלא אם כן כיוון מסוים הוא חיוני." -#: includes/wcag.php:388 -#: includes/wcag.php:1165 -#: includes/wcag.php:1303 -#: includes/wcag.php:1336 -#: includes/wcag.php:1370 -#: includes/wcag.php:1438 -#: includes/wcag.php:1456 -#: includes/wcag.php:1503 -#: includes/wcag.php:1607 -#: includes/wcag.php:1727 -#: includes/wcag.php:1747 -#: includes/wcag.php:1766 -#: includes/wcag.php:1785 -#: includes/wcag.php:1875 -#: includes/wcag.php:1906 -#: includes/wcag.php:1957 -#: includes/wcag.php:1974 -#: includes/wcag.php:2008 -#: includes/wcag.php:2042 -#: includes/wcag.php:2076 -#: includes/wcag.php:2110 -#: includes/wcag.php:2129 -#: includes/wcag.php:2148 +#: includes/wcag.php:392 +#: includes/wcag.php:1169 +#: includes/wcag.php:1307 +#: includes/wcag.php:1340 +#: includes/wcag.php:1374 +#: includes/wcag.php:1442 +#: includes/wcag.php:1460 +#: includes/wcag.php:1507 +#: includes/wcag.php:1611 +#: includes/wcag.php:1731 +#: includes/wcag.php:1751 +#: includes/wcag.php:1770 +#: includes/wcag.php:1789 +#: includes/wcag.php:1879 +#: includes/wcag.php:1910 +#: includes/wcag.php:1961 +#: includes/wcag.php:1978 +#: includes/wcag.php:2012 +#: includes/wcag.php:2046 +#: includes/wcag.php:2080 +#: includes/wcag.php:2114 +#: includes/wcag.php:2133 +#: includes/wcag.php:2152 msgid "All people including those who do not identify as disabled" msgstr "כל האנשים כולל אלה שאינם מזדהים כבעלי מוגבלות" -#: includes/wcag.php:408 +#: includes/wcag.php:412 msgid "Identify Input Purpose" msgstr "זיהוי מטרת הקלט" -#: includes/wcag.php:409 +#: includes/wcag.php:413 msgid "The purpose of input fields that collect information about the user can be programmatically determined, so browsers and assistive technologies can help users fill them in." msgstr "ניתן לקבוע באופן תכנותי את מטרת שדות הקלט האוספים מידע על המשתמש, כך שדפדפנים וטכנולוגיות מסייעות יכולים לעזור למשתמשים למלא אותם." -#: includes/wcag.php:415 -#: includes/wcag.php:443 -#: includes/wcag.php:1166 -#: includes/wcag.php:1235 -#: includes/wcag.php:1371 -#: includes/wcag.php:1439 -#: includes/wcag.php:2166 -#: includes/wcag.php:2183 +#: includes/wcag.php:419 +#: includes/wcag.php:447 +#: includes/wcag.php:1170 +#: includes/wcag.php:1239 +#: includes/wcag.php:1375 +#: includes/wcag.php:1443 +#: includes/wcag.php:2170 +#: includes/wcag.php:2187 msgid "People with cognitive disabilities or limited short-term memory or reading disabilities" msgstr "אנשים עם מוגבלויות קוגניטיביות או זיכרון לטווח קצר מוגבל או לקויות קריאה" -#: includes/wcag.php:416 -#: includes/wcag.php:809 -#: includes/wcag.php:843 -#: includes/wcag.php:877 -#: includes/wcag.php:922 -#: includes/wcag.php:990 -#: includes/wcag.php:1010 -#: includes/wcag.php:1029 -#: includes/wcag.php:1048 -#: includes/wcag.php:1132 -#: includes/wcag.php:1270 -#: includes/wcag.php:1405 -#: includes/wcag.php:1475 -#: includes/wcag.php:1505 -#: includes/wcag.php:1560 -#: includes/wcag.php:1805 -#: includes/wcag.php:1841 -#: includes/wcag.php:1939 +#: includes/wcag.php:420 +#: includes/wcag.php:813 +#: includes/wcag.php:847 +#: includes/wcag.php:881 +#: includes/wcag.php:926 +#: includes/wcag.php:994 +#: includes/wcag.php:1014 +#: includes/wcag.php:1033 +#: includes/wcag.php:1052 +#: includes/wcag.php:1136 +#: includes/wcag.php:1274 +#: includes/wcag.php:1409 +#: includes/wcag.php:1479 +#: includes/wcag.php:1509 +#: includes/wcag.php:1564 +#: includes/wcag.php:1809 +#: includes/wcag.php:1845 +#: includes/wcag.php:1943 msgid "People with dexterity and mobility impairments" msgstr "אנשים עם מוגבלויות בזריזות ובניידות" -#: includes/wcag.php:436 +#: includes/wcag.php:440 msgid "Identify Purpose" msgstr "זיהוי מטרה" -#: includes/wcag.php:437 +#: includes/wcag.php:441 msgid "The purpose of user interface components, icons, and regions can be programmatically determined, so assistive technologies can adapt the experience for users." msgstr "ניתן לקבוע באופן תכנותי את מטרת רכיבי ממשק המשתמש, סמלים ואזורים, כך שטכנולוגיות מסייעות יכולות להתאים את החוויה למשתמשים." -#: includes/wcag.php:454 +#: includes/wcag.php:458 msgid "Use of Color" msgstr "שימוש בצבע" -#: includes/wcag.php:455 +#: includes/wcag.php:459 msgid "Color is not used as the only way to convey information, indicate an action, prompt a response, or distinguish a visual element." msgstr "צבע אינו משמש כדרך היחידה להעברת מידע, לציון פעולה, לבקשת תגובה או להבחנה בין אלמנט חזותי." -#: includes/wcag.php:458 -#: includes/wcag.php:491 -#: includes/wcag.php:519 -#: includes/wcag.php:546 -#: includes/wcag.php:574 -#: includes/wcag.php:603 -#: includes/wcag.php:637 -#: includes/wcag.php:670 -#: includes/wcag.php:702 -#: includes/wcag.php:734 -#: includes/wcag.php:752 -#: includes/wcag.php:769 -#: includes/wcag.php:787 +#: includes/wcag.php:462 +#: includes/wcag.php:495 +#: includes/wcag.php:523 +#: includes/wcag.php:550 +#: includes/wcag.php:578 +#: includes/wcag.php:607 +#: includes/wcag.php:641 +#: includes/wcag.php:674 +#: includes/wcag.php:706 +#: includes/wcag.php:738 +#: includes/wcag.php:756 +#: includes/wcag.php:773 +#: includes/wcag.php:791 msgid "1.4 Distinguishable" msgstr "1.4 ניתן להבחנה" -#: includes/wcag.php:462 +#: includes/wcag.php:466 msgid "Color blind people" msgstr "אנשים עיוורי צבעים" -#: includes/wcag.php:487 +#: includes/wcag.php:491 msgid "Reflow" msgstr "זרימה מחדש" -#: includes/wcag.php:488 +#: includes/wcag.php:492 msgid "Content can be viewed without scrolling in more than one direction, so users can easily read and interact with it on small screens or when zoomed in." msgstr "ניתן לצפות בתוכן ללא גלילה ביותר מכיוון אחד, כך שמשתמשים יכולים לקרוא ולתקשר איתו בקלות במסכים קטנים או כאשר הוא מוגדל." -#: includes/wcag.php:494 -#: includes/wcag.php:1641 +#: includes/wcag.php:498 +#: includes/wcag.php:1645 msgid "People on mobile devices" msgstr "אנשים במכשירים ניידים" -#: includes/wcag.php:495 -#: includes/wcag.php:522 -#: includes/wcag.php:550 -#: includes/wcag.php:641 -#: includes/wcag.php:673 -#: includes/wcag.php:738 -#: includes/wcag.php:773 -#: includes/wcag.php:1271 -#: includes/wcag.php:1406 -#: includes/wcag.php:1589 -#: includes/wcag.php:1643 +#: includes/wcag.php:499 +#: includes/wcag.php:526 +#: includes/wcag.php:554 +#: includes/wcag.php:645 +#: includes/wcag.php:677 +#: includes/wcag.php:742 +#: includes/wcag.php:777 +#: includes/wcag.php:1275 +#: includes/wcag.php:1410 +#: includes/wcag.php:1593 +#: includes/wcag.php:1647 msgid "People with low vision" msgstr "אנשים עם ראייה ירודה" -#: includes/wcag.php:515 +#: includes/wcag.php:519 msgid "Non-text Contrast" msgstr "ניגודיות של אלמנטים שאינם טקסט" -#: includes/wcag.php:516 +#: includes/wcag.php:520 msgid "Visual information needed to identify user interface components and graphical objects has a contrast ratio of at least 3:1 against adjacent colors." msgstr "למידע חזותי הנדרש לזיהוי רכיבי ממשק משתמש ואובייקטים גרפיים יש יחס ניגודיות של לפחות 3:1 לעומת צבעים סמוכים." -#: includes/wcag.php:542 +#: includes/wcag.php:546 msgid "Text Spacing" msgstr "ריווח טקסט" -#: includes/wcag.php:543 +#: includes/wcag.php:547 msgid "Users can override text spacing to improve readability without losing content or functionality." msgstr "משתמשים יכולים לעקוף את ריווח הטקסט כדי לשפר את הקריאות מבלי לאבד תוכן או פונקציונליות." -#: includes/wcag.php:549 -#: includes/wcag.php:772 -#: includes/wcag.php:1729 -#: includes/wcag.php:1749 -#: includes/wcag.php:1768 -#: includes/wcag.php:1787 -#: includes/wcag.php:1840 -#: includes/wcag.php:1876 -#: includes/wcag.php:1907 -#: includes/wcag.php:1938 -#: includes/wcag.php:1975 -#: includes/wcag.php:2009 -#: includes/wcag.php:2043 -#: includes/wcag.php:2077 -#: includes/wcag.php:2111 -#: includes/wcag.php:2130 +#: includes/wcag.php:553 +#: includes/wcag.php:776 +#: includes/wcag.php:1733 +#: includes/wcag.php:1753 +#: includes/wcag.php:1772 +#: includes/wcag.php:1791 +#: includes/wcag.php:1844 +#: includes/wcag.php:1880 +#: includes/wcag.php:1911 +#: includes/wcag.php:1942 +#: includes/wcag.php:1979 +#: includes/wcag.php:2013 +#: includes/wcag.php:2047 +#: includes/wcag.php:2081 +#: includes/wcag.php:2115 +#: includes/wcag.php:2134 msgid "People with cognitive disabilities and reading disabilities" msgstr "אנשים עם מוגבלויות קוגניטיביות ולקויות קריאה" -#: includes/wcag.php:570 +#: includes/wcag.php:574 msgid "Content on Hover or Focus" msgstr "תוכן בריחוף או במיקוד" -#: includes/wcag.php:571 +#: includes/wcag.php:575 msgid "If extra content appears on hover or focus, users can dismiss it, move their pointer over it, and it remains visible until dismissed or focus is moved." msgstr "אם מופיע תוכן נוסף בריחוף או במיקוד, המשתמשים יכולים לסגור אותו, להזיז את הסמן מעליו, והוא נשאר גלוי עד שהוא נסגר או שהמיקוד מוזז." -#: includes/wcag.php:578 -#: includes/wcag.php:956 -#: includes/wcag.php:1337 +#: includes/wcag.php:582 +#: includes/wcag.php:960 +#: includes/wcag.php:1341 msgid "People with cognitive disabilities" msgstr "אנשים עם מוגבלויות קוגניטיביות" -#: includes/wcag.php:579 -#: includes/wcag.php:1642 +#: includes/wcag.php:583 +#: includes/wcag.php:1646 msgid "People with dexterity impairments" msgstr "אנשים עם מוגבלויות בזריזות" -#: includes/wcag.php:599 +#: includes/wcag.php:603 msgid "Audio Control" msgstr "בקרת אודיו" -#: includes/wcag.php:600 +#: includes/wcag.php:604 msgid "If audio plays automatically for more than 3 seconds, users must be able to pause, stop, or control the volume independently from the system volume." msgstr "אם האודיו מופעל אוטומטית למשך יותר מ-3 שניות, המשתמשים חייבים להיות מסוגלים להשהות, לעצור או לשלוט בעוצמת הקול באופן עצמאי מעוצמת המערכת." -#: includes/wcag.php:608 -#: includes/wcag.php:955 -#: includes/wcag.php:1009 +#: includes/wcag.php:612 +#: includes/wcag.php:959 +#: includes/wcag.php:1013 msgid "People with ADD or difficulty focusing on content without distraction" msgstr "אנשים עם הפרעת קשב וריכוז או קושי להתמקד בתוכן ללא הסחת דעת" -#: includes/wcag.php:633 +#: includes/wcag.php:637 msgid "Contrast (Minimum)" msgstr "ניגודיות (מינימלית)" -#: includes/wcag.php:634 +#: includes/wcag.php:638 msgid "Text and images of text must have a contrast ratio of at least 4.5:1, except for large text, incidental text, or logotypes." msgstr "לטקסט ולתמונות של טקסט חייב להיות יחס ניגודיות של לפחות 4.5:1, למעט טקסט גדול, טקסט אגבי או לוגוטייפים." -#: includes/wcag.php:640 -#: includes/wcag.php:737 +#: includes/wcag.php:644 +#: includes/wcag.php:741 msgid "People on mobile devices in a sunny environment" msgstr "אנשים במכשירים ניידים בסביבה שטופת שמש" -#: includes/wcag.php:666 +#: includes/wcag.php:670 msgid "Resize text" msgstr "שינוי גודל טקסט" -#: includes/wcag.php:667 +#: includes/wcag.php:671 msgid "Text can be resized up to 200% without loss of content or functionality, so people with low vision can read it more easily." msgstr "ניתן לשנות את גודל הטקסט עד 200% ללא אובדן תוכן או פונקציונליות, כך שאנשים עם ראייה לקויה יוכלו לקרוא אותו בקלות רבה יותר." -#: includes/wcag.php:698 +#: includes/wcag.php:702 msgid "Images of Text" msgstr "תמונות של טקסט" -#: includes/wcag.php:699 +#: includes/wcag.php:703 msgid "If the same visual presentation can be made using text alone, do not use images of text except for decorative or essential purposes." msgstr "אם ניתן להציג את אותה תצוגה חזותית באמצעות טקסט בלבד, אין להשתמש בתמונות של טקסט למעט למטרות קישוט או למטרות חיוניות." -#: includes/wcag.php:730 +#: includes/wcag.php:734 msgid "Contrast (Enhanced)" msgstr "ניגודיות (משופרת)" -#: includes/wcag.php:731 +#: includes/wcag.php:735 msgid "Text and images of text must have a contrast ratio of at least 7:1, except for large text, incidental text, or logotypes." msgstr "טקסט ותמונות של טקסט חייבים להיות ביחס ניגודיות של לפחות 7:1, למעט טקסט גדול, טקסט אגבי או לוגואים." -#: includes/wcag.php:748 +#: includes/wcag.php:752 msgid "Low or No Background Audio" msgstr "רקע קולי נמוך או ללא רקע קולי" -#: includes/wcag.php:749 +#: includes/wcag.php:753 msgid "For prerecorded audio-only content, background sounds are either low, can be turned off, or are not present, so speech is easier to understand." msgstr "עבור תוכן אודיו מוקלט מראש, קולות רקע הם נמוכים, ניתנים לכיבוי, או אינם קיימים, כך שהדיבור קל יותר להבנה." -#: includes/wcag.php:765 +#: includes/wcag.php:769 msgid "Visual Presentation" msgstr "תצוגה חזותית" -#: includes/wcag.php:766 +#: includes/wcag.php:770 msgid "Users can choose how blocks of text are presented, such as foreground and background colors, width, and line spacing, to make reading easier." msgstr "משתמשים יכולים לבחור כיצד מוצגים בלוקים של טקסט, כגון צבעי קדמה ורקע, רוחב ומרווח בין שורות, כדי להקל על הקריאה." -#: includes/wcag.php:783 +#: includes/wcag.php:787 msgid "Images of Text (No Exception)" msgstr "תמונות של טקסט (ללא חריגים)" -#: includes/wcag.php:784 +#: includes/wcag.php:788 msgid "Images of text are only used for pure decoration or where a particular presentation of text is essential, with no exceptions." msgstr "תמונות של טקסט משמשות רק לקישוט טהור או כאשר תצוגה מסוימת של טקסט היא חיונית, ללא חריגים." -#: includes/wcag.php:800 +#: includes/wcag.php:804 msgid "Keyboard" msgstr "מקלדת" -#: includes/wcag.php:801 +#: includes/wcag.php:805 msgid "All functionality is available using a keyboard, so users who cannot use a mouse can still operate the content." msgstr "כל הפונקציונליות זמינה באמצעות מקלדת, כך שמשתמשים שאינם יכולים להשתמש בעכבר עדיין יכולים להפעיל את התוכן." -#: includes/wcag.php:804 -#: includes/wcag.php:838 -#: includes/wcag.php:872 -#: includes/wcag.php:891 +#: includes/wcag.php:808 +#: includes/wcag.php:842 +#: includes/wcag.php:876 +#: includes/wcag.php:895 msgid "2.1 Keyboard Accessible" msgstr "2.1 נגיש למקלדת" -#: includes/wcag.php:805 -#: includes/wcag.php:839 -#: includes/wcag.php:873 -#: includes/wcag.php:892 -#: includes/wcag.php:919 -#: includes/wcag.php:953 -#: includes/wcag.php:987 -#: includes/wcag.php:1006 -#: includes/wcag.php:1026 -#: includes/wcag.php:1045 -#: includes/wcag.php:1064 -#: includes/wcag.php:1096 -#: includes/wcag.php:1113 -#: includes/wcag.php:1130 -#: includes/wcag.php:1163 -#: includes/wcag.php:1182 -#: includes/wcag.php:1199 -#: includes/wcag.php:1216 -#: includes/wcag.php:1233 -#: includes/wcag.php:1267 -#: includes/wcag.php:1301 -#: includes/wcag.php:1334 -#: includes/wcag.php:1368 -#: includes/wcag.php:1402 -#: includes/wcag.php:1436 -#: includes/wcag.php:1454 -#: includes/wcag.php:1472 -#: includes/wcag.php:1501 -#: includes/wcag.php:1531 -#: includes/wcag.php:1558 -#: includes/wcag.php:1585 -#: includes/wcag.php:1605 -#: includes/wcag.php:1622 -#: includes/wcag.php:1639 +#: includes/wcag.php:809 +#: includes/wcag.php:843 +#: includes/wcag.php:877 +#: includes/wcag.php:896 +#: includes/wcag.php:923 +#: includes/wcag.php:957 +#: includes/wcag.php:991 +#: includes/wcag.php:1010 +#: includes/wcag.php:1030 +#: includes/wcag.php:1049 +#: includes/wcag.php:1068 +#: includes/wcag.php:1100 +#: includes/wcag.php:1117 +#: includes/wcag.php:1134 +#: includes/wcag.php:1167 +#: includes/wcag.php:1186 +#: includes/wcag.php:1203 +#: includes/wcag.php:1220 +#: includes/wcag.php:1237 +#: includes/wcag.php:1271 +#: includes/wcag.php:1305 +#: includes/wcag.php:1338 +#: includes/wcag.php:1372 +#: includes/wcag.php:1406 +#: includes/wcag.php:1440 +#: includes/wcag.php:1458 +#: includes/wcag.php:1476 +#: includes/wcag.php:1505 +#: includes/wcag.php:1535 +#: includes/wcag.php:1562 +#: includes/wcag.php:1589 +#: includes/wcag.php:1609 +#: includes/wcag.php:1626 +#: includes/wcag.php:1643 msgid "Operable" msgstr "ניתן להפעלה" -#: includes/wcag.php:834 +#: includes/wcag.php:838 msgid "No Keyboard Trap" msgstr "ללא מלכודת מקלדת" -#: includes/wcag.php:835 +#: includes/wcag.php:839 msgid "Keyboard users can move to and away from all parts of the content without getting stuck." msgstr "משתמשי מקלדת יכולים לנוע אל כל חלקי התוכן וממנו מבלי להיתקע." -#: includes/wcag.php:868 +#: includes/wcag.php:872 msgid "Keyboard (No Exception)" msgstr "מקלדת (ללא חריגים)" -#: includes/wcag.php:869 +#: includes/wcag.php:873 msgid "All functionality is available from a keyboard interface, with no exceptions." msgstr "כל הפונקציונליות זמינה מממשק מקלדת, ללא חריגים." -#: includes/wcag.php:887 +#: includes/wcag.php:891 msgid "Character Key Shortcuts" msgstr "קיצורי מקשים של תווים" -#: includes/wcag.php:888 +#: includes/wcag.php:892 msgid "If a keyboard shortcut uses only letters, numbers, or punctuation, users can turn it off, change it, or it only works when the element has focus." msgstr "אם קיצור מקלדת משתמש רק באותיות, מספרים או סימני פיסוק, משתמשים יכולים לכבות אותו, לשנות אותו, או שהוא פועל רק כאשר האלמנט במיקוד." -#: includes/wcag.php:914 +#: includes/wcag.php:918 msgid "Timing Adjustable" msgstr "זמן ניתן להתאמה" -#: includes/wcag.php:915 +#: includes/wcag.php:919 msgid "If a time limit is set, users can turn it off, adjust it, or extend it unless the time limit is essential." msgstr "אם נקבעה מגבלת זמן, משתמשים יכולים לכבות אותה, להתאים אותה או להאריך אותה, אלא אם מגבלת הזמן חיונית." -#: includes/wcag.php:918 -#: includes/wcag.php:952 -#: includes/wcag.php:986 -#: includes/wcag.php:1005 -#: includes/wcag.php:1025 -#: includes/wcag.php:1044 +#: includes/wcag.php:922 +#: includes/wcag.php:956 +#: includes/wcag.php:990 +#: includes/wcag.php:1009 +#: includes/wcag.php:1029 +#: includes/wcag.php:1048 msgid "2.2 Enough Time" msgstr "2.2 מספיק זמן" -#: includes/wcag.php:921 -#: includes/wcag.php:989 -#: includes/wcag.php:1008 -#: includes/wcag.php:1028 -#: includes/wcag.php:1047 +#: includes/wcag.php:925 +#: includes/wcag.php:993 +#: includes/wcag.php:1012 +#: includes/wcag.php:1032 +#: includes/wcag.php:1051 msgid "People who need more time to react" msgstr "אנשים הזקוקים ליותר זמן להגיב" -#: includes/wcag.php:948 +#: includes/wcag.php:952 msgid "Pause, Stop, Hide" msgstr "השהיה, עצירה, הסתרה" -#: includes/wcag.php:949 +#: includes/wcag.php:953 msgid "Users can pause, stop, or hide moving, blinking, scrolling, or auto-updating information that starts automatically and lasts more than five seconds." msgstr "משתמשים יכולים להשהות, לעצור או להסתיר מידע נע, מהבהב, גולל או מתעדכן אוטומטית שמתחיל באופן אוטומטי ונמשך יותר מחמש שניות." -#: includes/wcag.php:982 +#: includes/wcag.php:986 msgid "No Timing" msgstr "ללא תזמון" -#: includes/wcag.php:983 +#: includes/wcag.php:987 msgid "If an element requires a response in a specific time, users can turn off the timer, adjust the time limit, or the timing is not essential." msgstr "אם אלמנט דורש תגובה בזמן מסוים, משתמשים יכולים לכבות את הטיימר, להתאים את מגבלת הזמן, או שהתזמון אינו חיוני." -#: includes/wcag.php:1001 +#: includes/wcag.php:1005 msgid "Interruptions" msgstr "הפרעות" -#: includes/wcag.php:1002 +#: includes/wcag.php:1006 msgid "Users are not interrupted by unexpected changes in content, and can control interruptions such as auto-updating content." msgstr "משתמשים אינם מופרעים על ידי שינויים בלתי צפויים בתוכן, ויכולים לשלוט בהפרעות כגון תוכן המתעדכן אוטומטית." -#: includes/wcag.php:1021 +#: includes/wcag.php:1025 msgid "Re-authenticating" msgstr "אימות מחדש" -#: includes/wcag.php:1022 +#: includes/wcag.php:1026 msgid "If users are logged out due to inactivity, they are notified before the session expires and can continue the session without losing data." msgstr "אם משתמשים מנותקים עקב חוסר פעילות, הם מקבלים הודעה לפני שהסשן פג תוקף ויכולים להמשיך את הסשן מבלי לאבד נתונים." -#: includes/wcag.php:1040 +#: includes/wcag.php:1044 msgid "Timeouts" msgstr "פסקי זמן" -#: includes/wcag.php:1041 +#: includes/wcag.php:1045 msgid "Users are warned of impending timeouts and can request more time or save their work before timing out." msgstr "משתמשים מוזהרים על פסקי זמן קרובים ויכולים לבקש יותר זמן או לשמור את עבודתם לפני פסק הזמן." -#: includes/wcag.php:1059 +#: includes/wcag.php:1063 msgid "Three Flashes or Below Threshold" msgstr "שלוש הבהובים או מתחת לסף" -#: includes/wcag.php:1060 +#: includes/wcag.php:1064 msgid "Content does not flash more than three times in any one second period, reducing the risk of seizures for people with photosensitive epilepsy." msgstr "התוכן אינו מהבהב יותר משלוש פעמים בכל תקופה של שנייה אחת, מה שמפחית את הסיכון להתקפים עבור אנשים עם אפילפסיה פוטוסנסיטיבית." -#: includes/wcag.php:1063 -#: includes/wcag.php:1095 -#: includes/wcag.php:1112 +#: includes/wcag.php:1067 +#: includes/wcag.php:1099 +#: includes/wcag.php:1116 msgid "2.3 Seizures and Physical Reactions" msgstr "2.3 התקפים ותגובות פיזיות" -#: includes/wcag.php:1066 -#: includes/wcag.php:1098 +#: includes/wcag.php:1070 +#: includes/wcag.php:1102 msgid "People with photosensitive epilepsy and other photosensitive seizure disorders" msgstr "אנשים עם אפילפסיה פוטוסנסיטיבית והפרעות התקפים פוטוסנסיטיביות אחרות" -#: includes/wcag.php:1091 +#: includes/wcag.php:1095 msgid "Three Flashes" msgstr "שלושה הבהובים" -#: includes/wcag.php:1092 +#: includes/wcag.php:1096 msgid "No part of the content flashes more than three times per second, with no exceptions." msgstr "אף חלק מהתוכן אינו מהבהב יותר משלוש פעמים בשנייה, ללא חריגים." -#: includes/wcag.php:1108 +#: includes/wcag.php:1112 msgid "Animation from Interactions" msgstr "אנימציה מאינטראקציות" -#: includes/wcag.php:1109 +#: includes/wcag.php:1113 msgid "Users can turn off non-essential animations triggered by interactions, helping those who are sensitive to motion." msgstr "משתמשים יכולים לכבות אנימציות לא חיוניות שמופעלות על ידי אינטראקציות, מה שעוזר לאלה הרגישים לתנועה." -#: includes/wcag.php:1115 +#: includes/wcag.php:1119 msgid "People with vestibular (inner ear) disorders where movement can cause dizziness/headaches and nausea" msgstr "אנשים עם הפרעות וסטיבולריות (אוזן פנימית) שבהן תנועה יכולה לגרום לסחרחורת/כאבי ראש ובחילה" -#: includes/wcag.php:1125 +#: includes/wcag.php:1129 msgid "Bypass Blocks" msgstr "מעקף בלוקים" -#: includes/wcag.php:1126 +#: includes/wcag.php:1130 msgid "A way is available to skip repeated blocks of content, such as navigation menus, so users can quickly reach the main content." msgstr "קיימת דרך לדלג על בלוקים חוזרים של תוכן, כגון תפריטי ניווט, כך שמשתמשים יכולים להגיע במהירות לתוכן העיקרי." -#: includes/wcag.php:1129 -#: includes/wcag.php:1162 -#: includes/wcag.php:1181 -#: includes/wcag.php:1198 -#: includes/wcag.php:1215 -#: includes/wcag.php:1232 -#: includes/wcag.php:1266 -#: includes/wcag.php:1300 -#: includes/wcag.php:1333 -#: includes/wcag.php:1367 -#: includes/wcag.php:1401 -#: includes/wcag.php:1435 -#: includes/wcag.php:1453 +#: includes/wcag.php:1133 +#: includes/wcag.php:1166 +#: includes/wcag.php:1185 +#: includes/wcag.php:1202 +#: includes/wcag.php:1219 +#: includes/wcag.php:1236 +#: includes/wcag.php:1270 +#: includes/wcag.php:1304 +#: includes/wcag.php:1337 +#: includes/wcag.php:1371 +#: includes/wcag.php:1405 +#: includes/wcag.php:1439 +#: includes/wcag.php:1457 msgid "2.4 Navigable" msgstr "2.4 ניתן לניווט" -#: includes/wcag.php:1158 +#: includes/wcag.php:1162 msgid "Section Headings" msgstr "כותרות מקטעים" -#: includes/wcag.php:1159 +#: includes/wcag.php:1163 msgid "Section headings are used to organize content, making it easier to understand and navigate." msgstr "נעשה שימוש בכותרות מקטעים כדי לארגן תוכן, מה שהופך אותו לקל יותר להבנה ולניווט." -#: includes/wcag.php:1177 +#: includes/wcag.php:1181 msgid "Focus Not Obscured (Minimum)" msgstr "מיקוד לא מוסתר (מינימום)" -#: includes/wcag.php:1178 +#: includes/wcag.php:1182 msgid "When an element receives keyboard focus, it is at least partially visible and not hidden by other content." msgstr "כאשר אלמנט מקבל מיקוד מקלדת, הוא לפחות חלקית גלוי ולא מוסתר על ידי תוכן אחר." -#: includes/wcag.php:1194 +#: includes/wcag.php:1198 msgid "Focus Not Obscured (Enhanced)" msgstr "מיקוד לא מוסתר (משופר)" -#: includes/wcag.php:1195 +#: includes/wcag.php:1199 msgid "When an element receives keyboard focus, it is fully visible and not hidden by other content." msgstr "כאשר אלמנט מקבל מיקוד מקלדת, הוא גלוי לחלוטין ולא מוסתר על ידי תוכן אחר." -#: includes/wcag.php:1211 +#: includes/wcag.php:1215 msgid "Focus Appearance" msgstr "מראה המיקוד" -#: includes/wcag.php:1212 +#: includes/wcag.php:1216 msgid "The visible focus indicator for interactive elements is clearly visible and meets minimum size and contrast requirements." msgstr "מחוון המיקוד הנראה לעין עבור אלמנטים אינטראקטיביים הוא ברור לעין ועומד בדרישות מינימליות של גודל וניגודיות." -#: includes/wcag.php:1228 +#: includes/wcag.php:1232 msgid "Page Titled" msgstr "כותרת עמוד" -#: includes/wcag.php:1229 +#: includes/wcag.php:1233 msgid "Web pages have descriptive titles that help users understand the topic or purpose of the page." msgstr "לעמודי אינטרנט יש כותרות תיאוריות שעוזרות למשתמשים להבין את הנושא או המטרה של העמוד." -#: includes/wcag.php:1236 -#: includes/wcag.php:2149 +#: includes/wcag.php:1240 +#: includes/wcag.php:2153 msgid "People with severe mobility impairments relying on audio to navigate the web" msgstr "אנשים עם מוגבלויות תנועה חמורות המסתמכים על שמע כדי לנווט באינטרנט" -#: includes/wcag.php:1262 +#: includes/wcag.php:1266 msgid "Focus Order" msgstr "סדר מיקוד" -#: includes/wcag.php:1263 +#: includes/wcag.php:1267 msgid "When navigating with a keyboard, focus moves in a logical order that preserves meaning and operability." msgstr "בעת ניווט באמצעות מקלדת, המיקוד נע בסדר הגיוני השומר על המשמעות והתפעוליות." -#: includes/wcag.php:1296 +#: includes/wcag.php:1300 msgid "Link Purpose (In Context)" msgstr "מטרת הקישור (בהקשר)" -#: includes/wcag.php:1297 +#: includes/wcag.php:1301 msgid "The purpose of each link is clear from the link text and the context in which it appears, so users know where the link will take them." msgstr "מטרת כל קישור ברורה מטקסט הקישור וההקשר שבו הוא מופיע, כך שהמשתמשים יודעים לאן הקישור יוביל אותם." -#: includes/wcag.php:1329 +#: includes/wcag.php:1333 msgid "Multiple Ways" msgstr "דרכים מרובות" -#: includes/wcag.php:1330 +#: includes/wcag.php:1334 msgid "More than one way is available to locate a web page within a set of web pages, except where the web page is the result of a query." msgstr "יש יותר מדרך אחת לאתר דף אינטרנט בתוך קבוצת דפי אינטרנט, למעט כאשר דף האינטרנט הוא תוצאה של שאילתה." -#: includes/wcag.php:1363 +#: includes/wcag.php:1367 msgid "Headings and Labels" msgstr "כותרות ותוויות" -#: includes/wcag.php:1364 +#: includes/wcag.php:1368 msgid "Headings and labels describe the topic or purpose of content, and are not ambiguous or misleading." msgstr "כותרות ותוויות מתארות את הנושא או המטרה של התוכן, ואינן דו-משמעיות או מטעות." -#: includes/wcag.php:1397 +#: includes/wcag.php:1401 msgid "Focus Visible" msgstr "מיקוד נראה" -#: includes/wcag.php:1398 +#: includes/wcag.php:1402 msgid "It is visible when an element has keyboard focus, so users navigating with a keyboard can see which element is active." msgstr "זה נראה כאשר לאלמנט יש מיקוד מקלדת, כך שמשתמשים המנווטים באמצעות מקלדת יכולים לראות איזה אלמנט פעיל." -#: includes/wcag.php:1431 +#: includes/wcag.php:1435 msgid "Location" msgstr "מיקום" -#: includes/wcag.php:1432 +#: includes/wcag.php:1436 msgid "Users are informed about their location within a set of web pages, such as through breadcrumb navigation or a clear page title." msgstr "המשתמשים מיודעים על מיקומם בתוך קבוצת דפי אינטרנט, כגון באמצעות ניווט פירורי לחם או כותרת דף ברורה." -#: includes/wcag.php:1449 +#: includes/wcag.php:1453 msgid "Link Purpose (Link Only)" msgstr "מטרת הקישור (קישור בלבד)" -#: includes/wcag.php:1450 +#: includes/wcag.php:1454 msgid "The purpose of each link can be determined by the link text alone, without needing additional context." msgstr "ניתן לקבוע את מטרת כל קישור מטקסט הקישור בלבד, ללא צורך בהקשר נוסף." -#: includes/wcag.php:1467 +#: includes/wcag.php:1471 msgid "Pointer Gestures" msgstr "מחוות מצביע" -#: includes/wcag.php:1468 +#: includes/wcag.php:1472 msgid "For functionality that can be operated by a pointer gesture, at least one of the following is true: the gesture can be performed by a simple tap, the gesture can be performed with a single finger, or the gesture can be performed with a voice command." msgstr "עבור פונקציונליות שניתן להפעיל באמצעות מחוות מצביע, לפחות אחד מהבאים נכון: ניתן לבצע את המחווה באמצעות הקשה פשוטה, ניתן לבצע את המחווה באמצעות אצבע אחת, או ניתן לבצע את המחווה באמצעות פקודה קולית." -#: includes/wcag.php:1471 -#: includes/wcag.php:1500 -#: includes/wcag.php:1530 -#: includes/wcag.php:1557 -#: includes/wcag.php:1584 -#: includes/wcag.php:1604 -#: includes/wcag.php:1621 -#: includes/wcag.php:1638 +#: includes/wcag.php:1475 +#: includes/wcag.php:1504 +#: includes/wcag.php:1534 +#: includes/wcag.php:1561 +#: includes/wcag.php:1588 +#: includes/wcag.php:1608 +#: includes/wcag.php:1625 +#: includes/wcag.php:1642 msgid "2.5 Input Modalities" msgstr "2.5 אופני קלט" -#: includes/wcag.php:1496 +#: includes/wcag.php:1500 msgid "Pointer Cancellation" msgstr "ביטול מצביע" -#: includes/wcag.php:1497 +#: includes/wcag.php:1501 msgid "For actions that require a pointer gesture, the user can cancel the action by moving the pointer away before the action is completed." msgstr "עבור פעולות הדורשות מחוות מצביע, המשתמש יכול לבטל את הפעולה על ידי הזזת המצביע הרחק לפני השלמת הפעולה." -#: includes/wcag.php:1526 +#: includes/wcag.php:1530 msgid "Label in Name" msgstr "תווית בשם" -#: includes/wcag.php:1527 +#: includes/wcag.php:1531 msgid "The name of user interface components includes text labels that describe their purpose, so assistive technologies can convey this information to users." msgstr "שם של רכיבי ממשק משתמש כולל תוויות טקסט המתארות את מטרתם, כך שטכנולוגיות מסייעות יכולות להעביר מידע זה למשתמשים." -#: includes/wcag.php:1553 +#: includes/wcag.php:1557 msgid "Motion Actuation" msgstr "הפעלה באמצעות תנועה" -#: includes/wcag.php:1554 +#: includes/wcag.php:1558 msgid "Functionality that can be operated by a motion gesture can also be operated by a simple touch or click, so users who cannot perform motion gestures can still use the functionality." msgstr "פונקציונליות שניתן להפעיל באמצעות מחוות תנועה ניתנת גם להפעלה באמצעות מגע פשוט או לחיצה, כך שמשתמשים שאינם יכולים לבצע מחוות תנועה עדיין יכולים להשתמש בפונקציונליות." -#: includes/wcag.php:1580 +#: includes/wcag.php:1584 msgid "Target Size" msgstr "גודל מטרה" -#: includes/wcag.php:1581 +#: includes/wcag.php:1585 msgid "The size of the target for pointer gestures is large enough to be easily activated, even by users with limited dexterity." msgstr "גודל המטרה למחוות מצביע גדול מספיק כדי להיות מופעל בקלות, גם על ידי משתמשים עם זריזות מוגבלת." -#: includes/wcag.php:1587 +#: includes/wcag.php:1591 msgid "People using a mobile device in environments where they are exposed to shaking (such as public transportation)" msgstr "אנשים המשתמשים במכשיר נייד בסביבות שבהן הם חשופים לרעידות (כגון תחבורה ציבורית)" -#: includes/wcag.php:1588 +#: includes/wcag.php:1592 msgid "People with dexterity and mobility impairments including hand tremors" msgstr "אנשים עם מוגבלויות זריזות ותנועה כולל רעד ידיים" -#: includes/wcag.php:1590 -#: includes/wcag.php:1644 +#: includes/wcag.php:1594 +#: includes/wcag.php:1648 msgid "People with with large fingers or who are operating the device with only a part of their finger or knuckle" msgstr "אנשים עם אצבעות גדולות או שמפעילים את המכשיר רק עם חלק מהאצבע או הפרק" -#: includes/wcag.php:1600 +#: includes/wcag.php:1604 msgid "Concurrent Input Mechanisms" msgstr "מנגנוני קלט מקבילים" -#: includes/wcag.php:1601 +#: includes/wcag.php:1605 msgid "If an input mechanism requires a specific posture or movement, an alternative input mechanism is available that does not have the same requirement." msgstr "אם מנגנון קלט דורש תנוחה או תנועה ספציפית, זמין מנגנון קלט חלופי שאין לו את אותה הדרישה." -#: includes/wcag.php:1617 +#: includes/wcag.php:1621 msgid "Dragging Movements" msgstr "תנועות גרירה" -#: includes/wcag.php:1618 +#: includes/wcag.php:1622 msgid "For functionality that requires dragging movements, the action can also be completed by simpler actions, so users with limited dexterity can still use the functionality." msgstr "עבור פונקציונליות הדורשת תנועות גרירה, ניתן להשלים את הפעולה גם באמצעות פעולות פשוטות יותר, כך שמשתמשים עם זריזות מוגבלת עדיין יכולים להשתמש בפונקציונליות." -#: includes/wcag.php:1634 +#: includes/wcag.php:1638 msgid "Target Size (Minimum)" msgstr "גודל מטרה (מינימום)" -#: includes/wcag.php:1635 +#: includes/wcag.php:1639 msgid "The target size for any interactive element is at least 44x44 pixels, so it can be easily activated by users with various abilities." msgstr "גודל המטרה לכל אלמנט אינטראקטיבי הוא לפחות 44x44 פיקסלים, כך שניתן להפעיל אותו בקלות על ידי משתמשים עם יכולות שונות." -#: includes/wcag.php:1654 +#: includes/wcag.php:1658 msgid "Language of Page" msgstr "שפת העמוד" -#: includes/wcag.php:1655 +#: includes/wcag.php:1659 msgid "The default language of each web page is programmatically determined, so assistive technologies can use the correct language settings." msgstr "השפה המוגדרת כברירת מחדל של כל דף אינטרנט נקבעת באופן תכנותי, כך שטכנולוגיות מסייעות יכולות להשתמש בהגדרות השפה הנכונות." -#: includes/wcag.php:1658 -#: includes/wcag.php:1692 -#: includes/wcag.php:1724 -#: includes/wcag.php:1744 -#: includes/wcag.php:1763 -#: includes/wcag.php:1782 +#: includes/wcag.php:1662 +#: includes/wcag.php:1696 +#: includes/wcag.php:1728 +#: includes/wcag.php:1748 +#: includes/wcag.php:1767 +#: includes/wcag.php:1786 msgid "3.1 Readable" msgstr "3.1 קריא" -#: includes/wcag.php:1659 -#: includes/wcag.php:1693 -#: includes/wcag.php:1725 -#: includes/wcag.php:1745 -#: includes/wcag.php:1764 -#: includes/wcag.php:1783 -#: includes/wcag.php:1802 -#: includes/wcag.php:1837 -#: includes/wcag.php:1873 -#: includes/wcag.php:1904 -#: includes/wcag.php:1935 -#: includes/wcag.php:1955 -#: includes/wcag.php:1972 -#: includes/wcag.php:2006 -#: includes/wcag.php:2040 -#: includes/wcag.php:2074 -#: includes/wcag.php:2108 -#: includes/wcag.php:2127 -#: includes/wcag.php:2146 -#: includes/wcag.php:2164 -#: includes/wcag.php:2181 +#: includes/wcag.php:1663 +#: includes/wcag.php:1697 +#: includes/wcag.php:1729 +#: includes/wcag.php:1749 +#: includes/wcag.php:1768 +#: includes/wcag.php:1787 +#: includes/wcag.php:1806 +#: includes/wcag.php:1841 +#: includes/wcag.php:1877 +#: includes/wcag.php:1908 +#: includes/wcag.php:1939 +#: includes/wcag.php:1959 +#: includes/wcag.php:1976 +#: includes/wcag.php:2010 +#: includes/wcag.php:2044 +#: includes/wcag.php:2078 +#: includes/wcag.php:2112 +#: includes/wcag.php:2131 +#: includes/wcag.php:2150 +#: includes/wcag.php:2168 +#: includes/wcag.php:2185 msgid "Understandable" msgstr "מובן" -#: includes/wcag.php:1688 +#: includes/wcag.php:1692 msgid "Language of Parts" msgstr "שפת חלקים" -#: includes/wcag.php:1689 +#: includes/wcag.php:1693 msgid "The language of each part of the content can be programmatically determined, so assistive technologies can provide appropriate language support." msgstr "ניתן לקבוע באופן תכנותי את השפה של כל חלק מהתוכן, כך שטכנולוגיות מסייעות יכולות לספק תמיכת שפה מתאימה." -#: includes/wcag.php:1720 +#: includes/wcag.php:1724 msgid "Unusual Words" msgstr "מילים לא שגרתיות" -#: includes/wcag.php:1721 +#: includes/wcag.php:1725 msgid "Unusual or rare words are defined or explained, so users with cognitive disabilities or who are not familiar with the language can understand them." msgstr "מילים לא שגרתיות או נדירות מוגדרות או מוסברות, כך שמשתמשים עם מוגבלויות קוגניטיביות או שאינם מכירים את השפה יכולים להבין אותן." -#: includes/wcag.php:1740 +#: includes/wcag.php:1744 msgid "Abbreviations" msgstr "קיצורים" -#: includes/wcag.php:1741 +#: includes/wcag.php:1745 msgid "Abbreviations and acronyms are defined the first time they are used, so users can understand their meaning." msgstr "קיצורים וראשי תיבות מוגדרים בפעם הראשונה שהם מופיעים, כך שמשתמשים יכולים להבין את משמעותם." -#: includes/wcag.php:1759 -msgid "Reading Level" -msgstr "רמת קריאה" - -#: includes/wcag.php:1760 +#: includes/wcag.php:1764 msgid "Content is written in a clear and simple language, and does not require specialized knowledge to understand." msgstr "התוכן כתוב בשפה ברורה ופשוטה, ואינו דורש ידע מיוחד כדי להבין אותו." -#: includes/wcag.php:1778 +#: includes/wcag.php:1782 msgid "Pronunciation" msgstr "הגייה" -#: includes/wcag.php:1779 +#: includes/wcag.php:1783 msgid "A pronunciation guide is available for unusual or difficult words, so users can understand how to say them." msgstr "מדריך הגייה זמין עבור מילים לא שגרתיות או קשות, כך שמשתמשים יכולים להבין כיצד לבטא אותן." -#: includes/wcag.php:1797 +#: includes/wcag.php:1801 msgid "On Focus" msgstr "במיקוד" -#: includes/wcag.php:1798 +#: includes/wcag.php:1802 msgid "When an element receives focus, it does not cause unexpected changes that could confuse the user, and it is clear how to interact with the element." msgstr "כאשר אלמנט מקבל מיקוד, הוא אינו גורם לשינויים בלתי צפויים שעלולים לבלבל את המשתמש, וברור כיצד לתקשר עם האלמנט." -#: includes/wcag.php:1801 -#: includes/wcag.php:1836 -#: includes/wcag.php:1872 -#: includes/wcag.php:1903 -#: includes/wcag.php:1934 -#: includes/wcag.php:1954 +#: includes/wcag.php:1805 +#: includes/wcag.php:1840 +#: includes/wcag.php:1876 +#: includes/wcag.php:1907 +#: includes/wcag.php:1938 +#: includes/wcag.php:1958 msgid "3.2 Predictable" msgstr "3.2 צפוי" -#: includes/wcag.php:1832 +#: includes/wcag.php:1836 msgid "On Input" msgstr "בקלט" -#: includes/wcag.php:1833 +#: includes/wcag.php:1837 msgid "When an input field receives data, it does not cause unexpected changes that could confuse the user, and it is clear how the data will be used." msgstr "כאשר שדה קלט מקבל נתונים, הוא לא גורם לשינויים בלתי צפויים שעלולים לבלבל את המשתמש, וברור כיצד ייעשה שימוש בנתונים." -#: includes/wcag.php:1868 +#: includes/wcag.php:1872 msgid "Consistent Navigation" msgstr "ניווט עקבי" -#: includes/wcag.php:1869 +#: includes/wcag.php:1873 msgid "Navigation mechanisms are consistent across the website, so users can predictably move through the site." msgstr "מנגנוני הניווט עקביים בכל האתר, כך שמשתמשים יכולים לנוע באתר באופן צפוי." -#: includes/wcag.php:1899 +#: includes/wcag.php:1903 msgid "Consistent Identification" msgstr "זיהוי עקבי" -#: includes/wcag.php:1900 +#: includes/wcag.php:1904 msgid "Components that have the same functionality within a set of web pages are identified consistently, so users can recognize them easily." msgstr "רכיבים בעלי אותה פונקציונליות בסדרת דפי אינטרנט מזוהים באופן עקבי, כך שמשתמשים יכולים לזהות אותם בקלות." -#: includes/wcag.php:1930 +#: includes/wcag.php:1934 msgid "Change on Request" msgstr "שינוי לפי בקשה" -#: includes/wcag.php:1931 +#: includes/wcag.php:1935 msgid "Changes in content or context that occur as a result of user input do not occur unexpectedly, and users are notified of any changes." msgstr "שינויים בתוכן או בהקשר המתרחשים כתוצאה מקלט המשתמש אינם מתרחשים באופן בלתי צפוי, והמשתמשים מקבלים הודעה על כל שינוי." -#: includes/wcag.php:1950 +#: includes/wcag.php:1954 msgid "Consistent Help" msgstr "עזרה עקבית" -#: includes/wcag.php:1951 -#: includes/wcag.php:2104 +#: includes/wcag.php:1955 +#: includes/wcag.php:2108 msgid "Help and documentation are available and are easy to find, so users can get assistance when needed." msgstr "עזרה ותיעוד זמינים וקל למצוא אותם, כך שמשתמשים יכולים לקבל סיוע בעת הצורך." -#: includes/wcag.php:1967 +#: includes/wcag.php:1971 msgid "Error Identification" msgstr "זיהוי שגיאות" -#: includes/wcag.php:1968 -#: includes/wcag.php:2036 +#: includes/wcag.php:1972 +#: includes/wcag.php:2040 msgid "If an input error is detected and suggestions for correction are known, then the suggestions are provided to the user." msgstr "אם מזוהה שגיאת קלט והצעות לתיקון ידועות, אז ההצעות מסופקות למשתמש." -#: includes/wcag.php:1971 -#: includes/wcag.php:2005 -#: includes/wcag.php:2039 -#: includes/wcag.php:2073 -#: includes/wcag.php:2107 -#: includes/wcag.php:2126 -#: includes/wcag.php:2145 -#: includes/wcag.php:2163 -#: includes/wcag.php:2180 +#: includes/wcag.php:1975 +#: includes/wcag.php:2009 +#: includes/wcag.php:2043 +#: includes/wcag.php:2077 +#: includes/wcag.php:2111 +#: includes/wcag.php:2130 +#: includes/wcag.php:2149 +#: includes/wcag.php:2167 +#: includes/wcag.php:2184 msgid "3.3 Input Assistance" msgstr "3.3 סיוע בקלט" -#: includes/wcag.php:2001 +#: includes/wcag.php:2005 msgid "Labels or Instructions" msgstr "תוויות או הוראות" -#: includes/wcag.php:2002 +#: includes/wcag.php:2006 msgid "Labels or instructions are provided when an input field requires user input, so users know what information is needed." msgstr "תוויות או הוראות מסופקות כאשר שדה קלט דורש קלט מהמשתמש, כך שהמשתמשים יודעים איזה מידע נדרש." -#: includes/wcag.php:2035 +#: includes/wcag.php:2039 msgid "Error Suggestion" msgstr "הצעת שגיאה" -#: includes/wcag.php:2069 +#: includes/wcag.php:2073 msgid "Error Prevention (Legal, Financial, Data)" msgstr "מניעת שגיאות (משפטי, פיננסי, נתונים)" -#: includes/wcag.php:2070 -#: includes/wcag.php:2123 +#: includes/wcag.php:2074 +#: includes/wcag.php:2127 msgid "For web pages that require user input, users are warned of errors and can correct them before finalizing the submission." msgstr "בדפי אינטרנט הדורשים קלט מהמשתמש, המשתמשים מוזהרים על שגיאות ויכולים לתקן אותן לפני סיום ההגשה." -#: includes/wcag.php:2103 +#: includes/wcag.php:2107 msgid "Help" msgstr "עזרה" -#: includes/wcag.php:2122 +#: includes/wcag.php:2126 msgid "Error Prevention (All)" msgstr "מניעת שגיאות (הכל)" -#: includes/wcag.php:2141 +#: includes/wcag.php:2145 msgid "Redundant Entry" msgstr "הזנה כפולה" -#: includes/wcag.php:2142 +#: includes/wcag.php:2146 msgid "Users are not required to enter the same information multiple times, reducing the risk of errors and saving time." msgstr "משתמשים אינם נדרשים להזין את אותו מידע מספר פעמים, מה שמפחית את הסיכון לשגיאות וחוסך זמן." -#: includes/wcag.php:2159 +#: includes/wcag.php:2163 msgid "Accessible Authentication (Minimum)" msgstr "אימות נגיש (מינימום)" -#: includes/wcag.php:2160 +#: includes/wcag.php:2164 msgid "Authentication processes do not rely on cognitive function tests like remembering a password or solving a puzzle, unless an alternative is provided." msgstr "תהליכי אימות אינם מסתמכים על מבחני תפקוד קוגניטיבי כמו זכירת סיסמה או פתרון חידה, אלא אם כן מסופקת חלופה." -#: includes/wcag.php:2176 +#: includes/wcag.php:2180 msgid "Accessible Authentication (Enhanced)" msgstr "אימות נגיש (משופר)" -#: includes/wcag.php:2177 +#: includes/wcag.php:2181 msgid "Enhanced authentication methods are provided that do not rely on cognitive function tests, such as remembering passwords, and do not require a test of cognitive function." msgstr "מסופקות שיטות אימות משופרות שאינן מסתמכות על מבחני תפקוד קוגניטיבי, כמו זכירת סיסמאות, ואינן דורשות מבחן של תפקוד קוגניטיבי." -#: includes/wcag.php:2193 +#: includes/wcag.php:2197 msgid "Parsing" msgstr "ניתוח" -#: includes/wcag.php:2194 +#: includes/wcag.php:2198 msgid "Content is coded so that assistive technologies can accurately interpret and present it to users." msgstr "התוכן מקודד כך שטכנולוגיות מסייעות יכולות לפרש ולהציג אותו למשתמשים באופן מדויק." -#: includes/wcag.php:2197 -#: includes/wcag.php:2231 -#: includes/wcag.php:2264 +#: includes/wcag.php:2201 +#: includes/wcag.php:2235 +#: includes/wcag.php:2268 msgid "4.1 Compatible" msgstr "4.1 תואם" -#: includes/wcag.php:2198 -#: includes/wcag.php:2232 -#: includes/wcag.php:2265 +#: includes/wcag.php:2202 +#: includes/wcag.php:2236 +#: includes/wcag.php:2269 msgid "Robust" msgstr "חסין" -#: includes/wcag.php:2201 -#: includes/wcag.php:2235 +#: includes/wcag.php:2205 +#: includes/wcag.php:2239 msgid "People with low vision using screen magnifiers" msgstr "אנשים עם ראייה ירודה המשתמשים במגדילי מסך" -#: includes/wcag.php:2227 +#: includes/wcag.php:2231 msgid "Name, Role, Value" msgstr "שם, תפקיד, ערך" -#: includes/wcag.php:2228 +#: includes/wcag.php:2232 msgid "User interface components have names, roles, and values that can be programmatically determined, so assistive technologies can communicate them to users." msgstr "לרכיבי ממשק המשתמש יש שמות, תפקידים וערכים שניתן לקבוע באופן תכנותי, כך שטכנולוגיות מסייעות יכולות לתקשר אותם למשתמשים." -#: includes/wcag.php:2260 +#: includes/wcag.php:2264 msgid "Status Messages" msgstr "הודעות מצב" -#: includes/wcag.php:2261 +#: includes/wcag.php:2265 msgid "Status messages are programmatically determined so that assistive technologies can notify users of important changes, such as form errors or updates." msgstr "הודעות מצב נקבעות באופן תכנותי כך שטכנולוגיות מסייעות יכולות להודיע למשתמשים על שינויים חשובים, כמו שגיאות טופס או עדכונים." -#: includes/wcag.php:2286 +#: includes/wcag.php:2290 msgid "Best Practice" msgstr "נוהג מיטבי" -#: includes/wcag.php:2287 +#: includes/wcag.php:2291 msgid "A usability improvement or convention that enhances accessibility but is not required for WCAG compliance." msgstr "שיפור שימושיות או מוסכמה המשפרת נגישות אך אינה נדרשת לעמידה ב-WCAG." -#: includes/wcag.php:2301 +#: includes/wcag.php:2305 msgid "Non-WCAG Accessibility Issue" msgstr "בעיית נגישות שאינה WCAG" -#: includes/wcag.php:2302 +#: includes/wcag.php:2306 msgid "A problem that affects users with disabilities but doesn't map directly to a current WCAG success criterion." msgstr "בעיה המשפיעה על משתמשים עם מוגבלויות אך אינה מתאימה ישירות לקריטריון הצלחה נוכחי של WCAG." -#: includes/wcag.php:2316 +#: includes/wcag.php:2320 msgid "Manual Testing Needed (Multiple Success Criteria)" msgstr "נדרשת בדיקה ידנית (קריטריוני הצלחה מרובים)" -#: includes/wcag.php:2317 +#: includes/wcag.php:2321 msgid "Used for documents, media, and other non-scannable content that require manual testing and are likely to fail multiple WCAG success criteria." msgstr "משמש למסמכים, מדיה ותוכן אחר שלא ניתן לסריקה הדורשים בדיקה ידנית וסביר שייכשלו במספר קריטריוני הצלחה של WCAG." -#: partials/admin-page/fixes-page.php:14 +#: partials/admin-page/fixes-page.php:18 msgid "Settings Saved. To confirm and reflect these updates in your site's statistics, please rescan your site. If you are using a caching plugin, make sure to clear the cache to ensure the updated fixes are applied correctly." msgstr "ההגדרות נשמרו. כדי לאשר ולשקף עדכונים אלה בסטטיסטיקות האתר שלך, אנא סרוק מחדש את האתר שלך. אם אתה משתמש בתוסף מטמון, הקפד לנקות את המטמון כדי להבטיח שהתיקונים המעודכנים יוחלו כראוי." -#: partials/admin-page/fixes-page.php:22 +#: partials/admin-page/fixes-page.php:26 msgid "The Accessibility New Window Warnings plugin is installed. The fix for links opening in a new window included here will override its functionality. You can safely remove the plugin and use these fixes instead." msgstr "התוסף Accessibility New Window Warnings מותקן. התיקון לקישורים הנפתחים בחלון חדש שכלול כאן יעקוף את הפונקציונליות שלו. אתה יכול להסיר את התוסף בבטחה ולהשתמש בתיקונים אלה במקום." -#: partials/custom-meta-box.php:10 +#: partials/custom-meta-box.php:17 msgid "Accessibility Checker issues panels" msgstr "לוחות הבעיות של Accessibility Checker" -#: partials/custom-meta-box.php:21 -msgid "Summary" -msgstr "סיכום" +#: partials/custom-meta-box.php:28 +#: build/sidebar.bundle.js:2 +msgid "Accessibility Status" +msgstr "סטטוס נגישות" -#: partials/custom-meta-box.php:31 -msgid "Details" -msgstr "פרטים" +#: partials/custom-meta-box.php:38 +#: build/sidebar.bundle.js:2 +msgid "Accessibility Analysis" +msgstr "ניתוח נגישות" -#: partials/custom-meta-box.php:41 -msgid "Readability" -msgstr "קריאות" +#: partials/custom-meta-box.php:48 +#: build/sidebar.bundle.js:2 +msgid "Readability Analysis" +msgstr "ניתוח קריאות" -#: partials/custom-meta-box.php:50 +#: partials/custom-meta-box.php:57 msgid "Delete all currently found issues" msgstr "מחק את כל הבעיות שנמצאו כעת" -#: partials/custom-meta-box.php:52 +#: partials/custom-meta-box.php:59 #: build/editorApp.bundle.js:2 #: build/frontendHighlighterApp.bundle.js:2 +#: build/sidebar.bundle.js:2 msgid "Clear Issues" msgstr "נקה בעיות" -#: partials/pro-callout.php:13 -#: partials/welcome-page.php:199 +#: partials/pro-callout.php:17 +#: partials/welcome-page.php:203 msgid "Equalize Digital Logo" msgstr "לוגו Equalize Digital" -#: partials/pro-callout.php:16 -#: partials/welcome-page.php:200 +#: partials/pro-callout.php:20 +#: partials/welcome-page.php:204 msgid "Upgrade to Accessibility Checker Pro" msgstr "שדרג ל-Accessibility Checker Pro" -#: partials/pro-callout.php:20 -#: partials/welcome-page.php:203 +#: partials/pro-callout.php:24 +#: partials/welcome-page.php:207 msgid "Scan all post types" msgstr "סרוק את כל סוגי הפוסטים" -#: partials/pro-callout.php:21 -#: partials/welcome-page.php:204 +#: partials/pro-callout.php:25 +#: partials/welcome-page.php:208 msgid "Admin columns to see accessibility status at a glance" msgstr "עמודות מנהל כדי לראות את מצב הנגישות במבט חטוף" -#: partials/pro-callout.php:22 -#: partials/welcome-page.php:205 +#: partials/pro-callout.php:26 +#: partials/welcome-page.php:209 msgid "Centralized list of all open issues" msgstr "רשימה מרוכזת של כל הבעיות הפתוחות" -#: partials/pro-callout.php:23 -#: partials/welcome-page.php:206 +#: partials/pro-callout.php:27 +#: partials/welcome-page.php:210 msgid "Ignore log" msgstr "יומן התעלמויות" -#: partials/pro-callout.php:24 -#: partials/welcome-page.php:207 +#: partials/pro-callout.php:28 +#: partials/welcome-page.php:211 msgid "Rename simplified summary" msgstr "שנה שם לסיכום מפושט" -#: partials/pro-callout.php:25 -#: partials/welcome-page.php:208 +#: partials/pro-callout.php:29 +#: partials/welcome-page.php:212 msgid "User restrictions on ignoring issues" msgstr "הגבלות משתמש על התעלמות מבעיות" -#: partials/pro-callout.php:26 -#: partials/welcome-page.php:209 +#: partials/pro-callout.php:30 +#: partials/welcome-page.php:213 msgid "Email support" msgstr "תמיכה בדוא\"ל" -#: partials/pro-callout.php:27 -#: partials/welcome-page.php:210 +#: partials/pro-callout.php:31 +#: partials/welcome-page.php:214 msgid "...and more" msgstr "...ועוד" -#: partials/pro-callout.php:57 -#: partials/welcome-page.php:223 +#: partials/pro-callout.php:61 +#: partials/welcome-page.php:227 msgid "Or activate your license key here." msgstr "או הפעל את מפתח הרישיון שלך כאן." -#: partials/settings-page.php:20 +#: partials/settings-page.php:24 msgid "General" msgstr "כללי" -#: partials/welcome-page.php:31 +#: partials/welcome-page.php:35 msgid "version" msgstr "גרסה" -#: partials/welcome-page.php:40 +#: partials/welcome-page.php:44 msgid "Link to Equalize Digital Website" msgstr "קישור לאתר של Equalize Digital" -#: partials/welcome-page.php:49 +#: partials/welcome-page.php:53 msgid "Quick Start Guide" msgstr "מדריך התחלה מהירה" -#: partials/welcome-page.php:50 +#: partials/welcome-page.php:54 msgid "Follow these steps to get started checking your content:" msgstr "עקוב אחר השלבים הבאים כדי להתחיל לבדוק את התוכן שלך:" #. translators: %s: path to settings page. -#: partials/welcome-page.php:57 +#: partials/welcome-page.php:61 #, php-format msgid "On the Settings Page, choose which post types you want to scan." msgstr "בדף ההגדרות, בחר אילו סוגי פוסטים ברצונך לסרוק." -#: partials/welcome-page.php:64 +#: partials/welcome-page.php:68 msgid "Go to the edit screen for the post you want to check." msgstr "עבור למסך העריכה של הפוסט שברצונך לבדוק." -#: partials/welcome-page.php:65 +#: partials/welcome-page.php:69 msgid "Find the Accessibility Checker meta box below your content. If using a front-end page builder, you must visit the backend edit screen to view Accessibility Checker results." msgstr "מצא את תיבת המטא של Accessibility Checker מתחת לתוכן שלך. אם אתה משתמש בעורך עמודים בחזית האתר, עליך לבקר במסך העריכה בצד השרת כדי לראות את תוצאות Accessibility Checker." -#: partials/welcome-page.php:66 +#: partials/welcome-page.php:70 msgid "If errors or warnings are present on your post, open the details tab in Accessibility Checker for more information." msgstr "אם יש שגיאות או אזהרות בפוסט שלך, פתח את לשונית הפרטים ב-Accessibility Checker למידע נוסף." -#: partials/welcome-page.php:67 +#: partials/welcome-page.php:71 msgid "Expand each issue to see the code, or click \"view on page\" if you need help finding the element that needs fixing." msgstr "הרחב כל בעיה כדי לראות את הקוד, או לחץ על \"צפה בעמוד\" אם אתה זקוק לעזרה במציאת האלמנט שיש לתקן." -#: partials/welcome-page.php:68 +#: partials/welcome-page.php:72 msgid "If you don't know what an error or warning means, click the \"i\" icon to read the documentation and how to fix it." msgstr "אם אינך יודע מה משמעות שגיאה או אזהרה, לחץ על סמל ה-\"i\" כדי לקרוא את התיעוד וכיצד לתקן אותה." -#: partials/welcome-page.php:69 +#: partials/welcome-page.php:73 msgid "If an issue is a false positive and the element is accessible, you can remove issues from reports with the \"Ignore\" feature." msgstr "אם בעיה היא חיובית שגויה והאלמנט נגיש, תוכל להסיר בעיות מדוחות באמצעות תכונת ה \"התעלם\"." -#: partials/welcome-page.php:70 +#: partials/welcome-page.php:74 msgid "After fixing each issue, update the post to see the accessibility report change. Your goal is to get every page to say 100% Passed Tests." msgstr "לאחר תיקון כל בעיה, עדכן את הפוסט כדי לראות את השינוי בדוח הנגישות. המטרה שלך היא להגיע לכל עמוד שיאמר 100% בדיקות עברו בהצלחה." -#: partials/welcome-page.php:74 +#: partials/welcome-page.php:78 msgid "Watch a video of Accessibility Checker in use." msgstr "צפה בסרטון על השימוש ב-Accessibility Checker." -#: partials/welcome-page.php:80 +#: partials/welcome-page.php:84 msgid "Documentation and FAQs" msgstr "תיעוד ושאלות נפוצות" -#: partials/welcome-page.php:84 +#: partials/welcome-page.php:88 msgid "Why do we say 100% Passed Tests, Not 100% Accessible?" msgstr "מדוע אנו אומרים 100% בדיקות עברו בהצלחה, ולא 100% נגיש?" -#: partials/welcome-page.php:84 -#: partials/welcome-page.php:89 -#: partials/welcome-page.php:94 -#: partials/welcome-page.php:99 -#: partials/welcome-page.php:104 -#: partials/welcome-page.php:109 -#: partials/welcome-page.php:114 -#: partials/welcome-page.php:120 -#: partials/welcome-page.php:216 -msgid "(opens in a new window)" -msgstr "(נפתח בחלון חדש)" - -#: partials/welcome-page.php:89 +#: partials/welcome-page.php:93 msgid "How to Manually Check Your Website for Accessibility" msgstr "כיצד לבדוק ידנית את האתר שלך לנגישות" -#: partials/welcome-page.php:94 +#: partials/welcome-page.php:98 msgid "When to Ignore Accessibility Errors" msgstr "מתי להתעלם משגיאות נגישות" -#: partials/welcome-page.php:99 +#: partials/welcome-page.php:103 msgid "What to do if a Plugin You’re Using has Accessibility Errors" msgstr "מה לעשות אם תוסף שאתה משתמש בו מכיל שגיאות נגישות" -#: partials/welcome-page.php:104 +#: partials/welcome-page.php:108 msgid "What to do if there are Accessibility Errors in Your Theme" msgstr "מה לעשות אם יש שגיאות נגישות בערכת הנושא שלך" -#: partials/welcome-page.php:109 +#: partials/welcome-page.php:113 msgid "Can I Hire Equalize Digital to Fix Accessibility Issues on My Website?" msgstr "האם אוכל לשכור את Equalize Digital כדי לתקן בעיות נגישות באתר שלי?" -#: partials/welcome-page.php:114 +#: partials/welcome-page.php:118 msgid "Additional Resources for Learning About Accessibility" msgstr "משאבים נוספים ללמידה על נגישות" -#: partials/welcome-page.php:120 +#: partials/welcome-page.php:124 msgid "Read Full Documentation" msgstr "קרא את התיעוד המלא" -#: partials/welcome-page.php:127 +#: partials/welcome-page.php:131 msgid "Support Information" msgstr "מידע תמיכה" -#: partials/welcome-page.php:133 +#: partials/welcome-page.php:137 msgid "Plugin Support" msgstr "תמיכה בתוסף" -#: partials/welcome-page.php:135 +#: partials/welcome-page.php:139 msgid "Active license holders of paid Accessibility Checker plans get unlimited email support on plugin usage and troubleshooting." msgstr "מחזיקי רישיון פעיל של תוכניות Accessibility Checker בתשלום מקבלים תמיכה בדוא\"ל ללא הגבלה בשימוש בתוסף ופתרון בעיות." -#: partials/welcome-page.php:138 +#: partials/welcome-page.php:142 msgid "Open Support Ticket" msgstr "פתח כרטיס תמיכה" -#: partials/welcome-page.php:145 +#: partials/welcome-page.php:149 msgid "Free Plugin Support" msgstr "תמיכה בתוסף חינם" -#: partials/welcome-page.php:147 +#: partials/welcome-page.php:151 msgid "Free plugin support is available via the WordPress.org forums. You'll need to create an account then you can open a new support thread." msgstr "תמיכה בתוסף החינמי זמינה דרך הפורומים של WordPress.org. תצטרך ליצור חשבון ואז תוכל לפתוח שרשור תמיכה חדש." -#: partials/welcome-page.php:150 +#: partials/welcome-page.php:154 msgid "Go to Support Forum" msgstr "עבור לפורום התמיכה" -#: partials/welcome-page.php:157 +#: partials/welcome-page.php:161 msgid "Office Hours" msgstr "שעות קבלה" -#: partials/welcome-page.php:159 +#: partials/welcome-page.php:163 msgid "Open Q&A on Zoom every other week to help you remediate your website." msgstr "שאלות ותשובות פתוחות ב-Zoom כל שבועיים כדי לעזור לך לשפר את האתר שלך." -#: partials/welcome-page.php:161 +#: partials/welcome-page.php:165 msgid "Included in Small Business and Agency plans" msgstr "כלול בתוכניות עסקים קטנים וסוכנויות" -#: partials/welcome-page.php:166 +#: partials/welcome-page.php:170 msgid "Register for Office Hours" msgstr "הירשם לשעות הקבלה" -#: partials/welcome-page.php:172 +#: partials/welcome-page.php:176 msgid "Auditing and Remediation" msgstr "ביקורת ותיקון" -#: partials/welcome-page.php:174 +#: partials/welcome-page.php:178 msgid "Get help making your website accessible. Expert auditing, user testing, and dev support. Conformance letters available." msgstr "קבל עזרה בהנגשת האתר שלך. ביקורת מומחים, בדיקות משתמשים ותמיכת פיתוח. מכתבי התאמה זמינים." -#: partials/welcome-page.php:178 +#: partials/welcome-page.php:182 msgid "Get Remediation Help" msgstr "קבל עזרה בתיקון" @@ -4356,6 +5052,7 @@ msgstr "הגדרות תיקון" #: build/editorApp.bundle.js:2 #: build/frontendHighlighterApp.bundle.js:2 +#: build/sidebar.bundle.js:2 msgid "This will clear all issues for this post. A save will be required to trigger a fresh scan of the post content. Do you want to continue?" msgstr "פעולה זו תנקה את כל הבעיות עבור פוסט זה. יידרש שמירה כדי להפעיל סריקה חדשה של תוכן הפוסט. האם ברצונך להמשיך?" @@ -4391,11 +5088,6 @@ msgstr "מצטערים, ההגשה שלך נכשלה. אנא קצר את התש msgid "Sorry, your submission failed. Please try again." msgstr "מצטערים, השליחה שלך נכשלה. אנא נסה שוב." -#: build/frontendFixes.bundle.js:1 -#: build/pageScanner.bundle.js:2 -msgid "opens a new window" -msgstr "פותח חלון חדש" - #: build/frontendFixes.bundle.js:1 msgid "EDAC: Did not find a matching target ID on the page for the skip link." msgstr "EDAC: לא נמצא מזהה יעד תואם בדף עבור קישור הדילוג." @@ -4408,10 +5100,77 @@ msgstr "EDAC: שגיאה בעדכון ההיסטוריה עבור קישור ה msgid "Close fixes modal" msgstr "סגור חלון תיקונים" +#: build/frontendHighlighterApp.bundle.js:2 +#, js-format +msgid "%1$d of %2$d" +msgstr "%1$d מתוך %2$d" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Untitled issue" +msgstr "בעיה ללא כותרת" + +#: build/frontendHighlighterApp.bundle.js:2 +#, js-format +msgid "Issue %1$d of %2$d: %3$s" +msgstr "בעיה %1$d מתוך %2$d: %3$s" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "The element is not visible. Try disabling styles." +msgstr "הרכיב אינו גלוי. נסה להשבית סגנונות." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "The element is not focusable. Try disabling styles." +msgstr "הרכיב אינו ניתן למיקוד. נסה להשבית סגנונות." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "The element was not found on the page." +msgstr "הרכיב לא נמצא בדף." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Move to Left" +msgstr "הזז/י שמאלה" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Move to Right" +msgstr "הזז/י ימינה" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Panel position reset." +msgstr "מיקום החלונית אופס." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Panel moved to the left." +msgstr "החלונית הוזזה שמאלה." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Panel moved to the right." +msgstr "החלונית הוזזה ימינה." + +#: build/frontendHighlighterApp.bundle.js:2 +#, js-format +msgid "Open details for %1$s, %2$s of %3$s" +msgstr "פתח פרטים עבור %1$s, %2$s מתוך %3$s" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Undock Panel" +msgstr "נתק/י חלונית" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Dock Panel" +msgstr "עגן/י חלונית" + #: build/frontendHighlighterApp.bundle.js:2 msgid "Rescan This Page" msgstr "סרוק מחדש את הדף הזה" +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Accessibility Checker Tools" +msgstr "כלי Accessibility Checker" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "More options" +msgstr "אפשרויות נוספות" + #: build/frontendHighlighterApp.bundle.js:2 msgid "Disable Page Styles" msgstr "השבת סגנונות דף" @@ -4420,22 +5179,105 @@ msgstr "השבת סגנונות דף" msgid "Disable Styles" msgstr "השבת סגנונות" +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Close" +msgstr "סגור" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "No issues found on this page." +msgstr "לא נמצאו בעיות בדף זה." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Loading..." +msgstr "טוען..." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Previous" +msgstr "קודם" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Next" +msgstr "הבא" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Reset Position" +msgstr "אפס/י מיקום" + #: build/frontendHighlighterApp.bundle.js:2 msgid "An error occurred when loading the issues." msgstr "אירעה שגיאה בטעינת הבעיות." #: build/frontendHighlighterApp.bundle.js:2 -msgid "Show Code" -msgstr "הצג קוד" +msgid "Panel docked." +msgstr "החלונית עוגנה." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Panel undocked." +msgstr "החלונית נותקה." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Severity:" +msgstr "חומרה:" + +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "WCAG:" +msgstr "WCAG:" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Ignored" +msgstr "התעלם/י" + +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "Show explanation" +msgstr "הצג הסבר" + +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "Why It Matters" +msgstr "למה זה חשוב" + +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "How to Fix" +msgstr "כיצד לתקן" + +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "More Detailed Documentation" +msgstr "תיעוד מפורט יותר" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Show Affected Code" +msgstr "הצג/י קוד מושפע" + +#: build/frontendHighlighterApp.bundle.js:2 +#, js-format +msgid "Fix issue: %s" +msgstr "תקן בעיה: %s" #: build/frontendHighlighterApp.bundle.js:2 -msgid "Issue type:" -msgstr "סוג הבעיה:" +#: build/issueModal.bundle.js:2 +msgid "Fix Issue" +msgstr "תקן בעיה" #: build/frontendHighlighterApp.bundle.js:2 msgid "Enable Styles" msgstr "הפעל סגנונות" +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Enable Page Styles" +msgstr "הפעל סגנונות עמוד" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Page styles disabled." +msgstr "סגנונות עמוד מושבתים." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Page styles re-enabled." +msgstr "סגנונות עמוד הופעלו מחדש." + #: build/frontendHighlighterApp.bundle.js:2 msgid "There are no settings to display." msgstr "אין הגדרות להצגה." @@ -4445,34 +5287,45 @@ msgid "These settings enable global fixes across your entire site. Pages may nee msgstr "הגדרות אלו מפעילות תיקונים גלובליים בכל האתר שלך. ייתכן שיהיה צורך לשמור מחדש דפים או להריץ סריקה מלאה של האתר כדי לראות את התיקונים משתקפים בדוחות." #: build/frontendHighlighterApp.bundle.js:2 -msgid "No issues detected." -msgstr "לא אותרו בעיות." +#, js-format +msgid "%d issue found" +msgid_plural "%d issues found" +msgstr[0] "נמצאה בעיה אחת מסוג %d" +msgstr[1] "נמצאו %d בעיות" + +#: build/frontendHighlighterApp.bundle.js:2 +#, js-format +msgid "%d Problem" +msgid_plural "%d Problems" +msgstr[0] "בעיה אחת מסוג %d" +msgstr[1] "%d בעיות" #: build/frontendHighlighterApp.bundle.js:2 -msgid "error" -msgid_plural "errors" -msgstr[0] "שגיאה" -msgstr[1] "שגיאות" +#, js-format +msgid "%d Needs Review" +msgid_plural "%d Need Review" +msgstr[0] "בעיה אחת מסוג %d דורשת בדיקה" +msgstr[1] "%d דורשות בדיקה" #: build/frontendHighlighterApp.bundle.js:2 -msgid "warning" -msgid_plural "warnings" -msgstr[0] "אזהרה" -msgstr[1] "אזהרות" +#, js-format +msgid "%d Ignored" +msgid_plural "%d Ignored" +msgstr[0] "בעיה אחת מסוג %d התעלמה" +msgstr[1] "%d התעלמו" #: build/frontendHighlighterApp.bundle.js:2 -msgid "and" -msgstr "ו-" +msgid "No issues detected." +msgstr "לא אותרו בעיות." #: build/frontendHighlighterApp.bundle.js:2 -msgid "ignored issue" -msgid_plural "ignored issues" -msgstr[0] "בעיה שהתעלמו ממנה" -msgstr[1] "בעיות שהתעלמו מהן" +#, js-format +msgid "Landmark: %s" +msgstr "נקודת ציון: %s" #: build/frontendHighlighterApp.bundle.js:2 -msgid "detected." -msgstr "אותרו." +msgid "Failed to load scanner script." +msgstr "טעינת סקריפט הסורק נכשלה." #: build/frontendHighlighterApp.bundle.js:2 msgid "Scanner function not found." @@ -4482,14 +5335,18 @@ msgstr "פונקציית הסריקה לא נמצאה." msgid "Scanning..." msgstr "סורק..." -#: build/frontendHighlighterApp.bundle.js:2 -msgid "No violations found, skipping save." -msgstr "לא נמצאו הפרות, מדלג על שמירה." - #: build/frontendHighlighterApp.bundle.js:2 msgid "Missing postId or nonce." msgstr "חסר postId או nonce." +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescan complete. No violations found." +msgstr "סריקה מחדש הושלמה. לא נמצאו הפרות." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "No violations found, skipping save." +msgstr "לא נמצאו הפרות, מדלג על שמירה." + #: build/frontendHighlighterApp.bundle.js:2 msgid "Accessibility scan error." msgstr "שגיאת סריקת נגישות." @@ -4498,10 +5355,129 @@ msgstr "שגיאת סריקת נגישות." msgid "Error saving scan results." msgstr "שגיאה בשמירת תוצאות הסריקה." +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescan already in progress." +msgstr "סריקה מחדש כבר מתבצעת." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescanning this page." +msgstr "סריקה מחדש של עמוד זה." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescan complete." +msgstr "סריקה מחדש הושלמה." + #: build/frontendHighlighterApp.bundle.js:2 msgid "Error: Missing required parameters." msgstr "שגיאה: חסרים פרמטרים נדרשים." +#: build/issueModal.bundle.js:2 +msgid "Issue related image" +msgstr "תמונה קשורה לבעיה" + +#: build/issueModal.bundle.js:2 +msgid "Fix settings saved." +msgstr "הגדרות התיקון נשמרו." + +#: build/issueModal.bundle.js:2 +msgid "Failed to save fix settings." +msgstr "שמירת הגדרות התיקון נכשלה." + +#: build/issueModal.bundle.js:2 +msgid "Loading fix information..." +msgstr "טוען פרטי תיקון..." + +#: build/issueModal.bundle.js:2 +#, js-format +msgid "Save fix for: %s" +msgstr "שמור תיקון עבור: %s" + +#: build/issueModal.bundle.js:2 +msgid "Issue dismissed successfully." +msgstr "הבעיה בוטלה בהצלחה." + +#: build/issueModal.bundle.js:2 +msgid "Issue reopened successfully." +msgstr "הבעיה נפתחה מחדש בהצלחה." + +#: build/issueModal.bundle.js:2 +msgid "Dismissing..." +msgstr "מבטל..." + +#: build/issueModal.bundle.js:2 +#, js-format +msgid "Issue Dismissed — %s" +msgstr "הבעיה בוטלה — %s" + +#: build/issueModal.bundle.js:2 +msgid "Issue Dismissed" +msgstr "הבעיה בוטלה" + +#: build/issueModal.bundle.js:2 +msgid "Scope:" +msgstr "היקף:" + +#: build/issueModal.bundle.js:2 +msgid "All pages" +msgstr "כל הדפים" + +#: build/issueModal.bundle.js:2 +msgid "By:" +msgstr "מאת:" + +#: build/issueModal.bundle.js:2 +msgid "On:" +msgstr "בתאריך:" + +#: build/issueModal.bundle.js:2 +msgid "Reason for dismissal:" +msgstr "סיבת הביטול:" + +#: build/issueModal.bundle.js:2 +msgid "This issue was dismissed globally. Manage Global Dismissals to reopen it." +msgstr "בעיה זו נדחתה באופן גלובלי. נהל דחיות גלובליות כדי לפתוח אותה מחדש." + +#: build/issueModal.bundle.js:2 +msgid "Manage Global Dismissals" +msgstr "ניהול דחיות גלובליות" + +#: build/issueModal.bundle.js:2 +msgid "Reopening..." +msgstr "פותח מחדש..." + +#: build/issueModal.bundle.js:2 +msgid "Comment (optional)" +msgstr "הערה (אופציונלי)" + +#: build/issueModal.bundle.js:2 +msgid "Add a note explaining why this issue is being dismissed." +msgstr "הוסף הערה המסבירה מדוע בעיה זו נדחית." + +#: build/issueModal.bundle.js:2 +msgid "More dismiss options" +msgstr "אפשרויות ביטול נוספות" + +#: build/issueModal.bundle.js:2 +msgid "Dismiss & Close Modal" +msgstr "בטל וסגור חלון קופץ" + +#: build/issueModal.bundle.js:2 +#, js-format +msgid "Issue #%s" +msgstr "בעיה מס׳ %s" + +#: build/issueModal.bundle.js:2 +msgid "Issue Details" +msgstr "פרטי בעיה" + +#: build/issueModal.bundle.js:2 +msgid "Type" +msgstr "סוג" + +#: build/issueModal.bundle.js:2 +msgid "Severity" +msgstr "חומרה" + #: build/pageScanner.bundle.js:2 msgid "new window" msgstr "חלון חדש" @@ -4510,6 +5486,10 @@ msgstr "חלון חדש" msgid "new tab" msgstr "כרטיסייה חדשה" +#: build/pageScanner.bundle.js:2 +msgid "new document" +msgstr "מסמך חדש" + #: build/pageScanner.bundle.js:2 msgid "click" msgstr "לחץ" @@ -4585,3 +5565,250 @@ msgstr "המשך לקרוא" #: build/pageScanner.bundle.js:2 msgid "learn more" msgstr "למד עוד" + +#: build/sidebar.bundle.js:2 +msgid "Failed to load accessibility data" +msgstr "טעינת נתוני נגישות נכשלה" + +#: build/sidebar.bundle.js:2 +msgid "Error loading accessibility data" +msgstr "שגיאה בטעינת נתוני נגישות" + +#: build/sidebar.bundle.js:2 +msgid "Loading accessibility results..." +msgstr "טוען תוצאות נגישות..." + +#: build/sidebar.bundle.js:2 +msgid "Updating accessibility data..." +msgstr "מעדכן נתוני נגישות..." + +#: build/sidebar.bundle.js:2 +msgid "problem to address" +msgid_plural "problems to address" +msgstr[0] "בעיה לטיפול" +msgstr[1] "בעיות לטיפול" + +#: build/sidebar.bundle.js:2 +msgid "issue that needs review" +msgid_plural "issues that need review" +msgstr[0] "בעיה הדורשת בדיקה" +msgstr[1] "בעיות הדורשות בדיקה" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "You have %1$d %2$s and %3$d %4$s." +msgstr "יש לך %1$d %2$s ו-%3$d %4$s." + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "You have %1$d %2$s." +msgstr "יש לך %1$d %2$s." + +#: build/sidebar.bundle.js:2 +msgid "Check and fix accessibility issues in your content." +msgstr "בדוק ותקן בעיות נגישות בתוכן שלך." + +#: build/sidebar.bundle.js:2 +msgid "Open Accessibility Panel" +msgstr "פתח חלונית נגישות" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "%dth" +msgstr "%d" + +#: build/sidebar.bundle.js:2 +msgid "Summary provided" +msgstr "סיכום סופק" + +#: build/sidebar.bundle.js:2 +msgid "Summary required" +msgstr "סיכום נדרש" + +#: build/sidebar.bundle.js:2 +msgid "Summary not required" +msgstr "סיכום לא נדרש" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "View %d problems in Accessibility Analysis" +msgstr "הצג %d בעיות בניתוח נגישות" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "View %d items needing review in Accessibility Analysis" +msgstr "הצג %d פריטים הדורשים בדיקה בניתוח נגישות" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "View reading level details: %s" +msgstr "הצג פרטי רמת קריאות: %s" + +#: build/sidebar.bundle.js:2 +msgid "Issue" +msgstr "בעיה" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "Issue actions for %s" +msgstr "פעולות לבעיה %s" + +#: build/sidebar.bundle.js:2 +msgid "Issue actions" +msgstr "פעולות לבעיה" + +#: build/sidebar.bundle.js:2 +msgid "Show code" +msgstr "הצג קוד" + +#: build/sidebar.bundle.js:2 +msgid "Reopen issue" +msgstr "פתח מחדש בעיה" + +#: build/sidebar.bundle.js:2 +msgid "Dismiss issue" +msgstr "בטל בעיה" + +#: build/sidebar.bundle.js:2 +msgid "Apply fix" +msgstr "החל תיקון" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "%d total" +msgstr "%d סה״כ" + +#: build/sidebar.bundle.js:2 +msgid "No dismissed issues." +msgstr "אין בעיות שבוטלו." + +#: build/sidebar.bundle.js:2 +msgid "No issues found." +msgstr "לא נמצאו בעיות." + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "%d total issues" +msgstr "%d בעיות בסך הכל" + +#: build/sidebar.bundle.js:2 +msgid "Dismissed Issues" +msgstr "בעיות שבוטלו" + +#: build/sidebar.bundle.js:2 +msgid "Simplified summary saved successfully." +msgstr "הסיכום הפשוט נשמר בהצלחה." + +#: build/sidebar.bundle.js:2 +msgid "Failed to save summary. Please try again." +msgstr "שמירת הסיכום נכשלה. אנא נסה שוב." + +#: build/sidebar.bundle.js:2 +msgid "An error occurred while saving the summary." +msgstr "אירעה שגיאה בעת שמירת הסיכום." + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "%s grade" +msgstr "כיתה %s" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "%dth grade" +msgstr "כיתה %d" + +#: build/sidebar.bundle.js:2 +msgid "Not available" +msgstr "לא זמין" + +#: build/sidebar.bundle.js:2 +msgid "Warning" +msgstr "אזהרה" + +#: build/sidebar.bundle.js:2 +msgid "This post does not contain enough content to calculate a reading level." +msgstr "פוסט זה אינו מכיל מספיק תוכן כדי לחשב רמת קריאות." + +#: build/sidebar.bundle.js:2 +msgid "Adjust summary prompts in settings." +msgstr "התאם את הנחיות הסיכום בהגדרות." + +#: build/sidebar.bundle.js:2 +msgid "Content at or below a 9th-grade reading level does not require a simplified summary." +msgstr "תוכן ברמת קריאות של כיתה ט׳ או מתחתיה אינו דורש סיכום פשוט." + +#: build/sidebar.bundle.js:2 +msgid "Content above a 9th-grade reading level requires a simplified summary to meet WCAG AAA guidance." +msgstr "תוכן ברמת קריאות מעל כיתה ט׳ דורש סיכום פשוט כדי לעמוד בהנחיות WCAG AAA." + +#: build/sidebar.bundle.js:2 +msgid "Learn more about readability requirements." +msgstr "למד עוד על דרישות קריאות." + +#: build/sidebar.bundle.js:2 +msgid "Simplified Summary Reading Level" +msgstr "רמת קריאות של סיכום פשוט" + +#: build/sidebar.bundle.js:2 +msgid "Needs improvement, summary is above the 9th-grade reading level." +msgstr "דורש שיפור, הסיכום מעל רמת קריאות של כיתה ט׳." + +#: build/sidebar.bundle.js:2 +msgid "Below the recommended 9th-grade reading level." +msgstr "מתחת לרמת הקריאות המומלצת של כיתה ט׳." + +#: build/sidebar.bundle.js:2 +msgid "Enter simplified summary..." +msgstr "הזן סיכום פשוט..." + +#: build/sidebar.bundle.js:2 +msgid "A simplified summary is required for this content." +msgstr "נדרש סיכום פשוט עבור תוכן זה." + +#: build/sidebar.bundle.js:2 +msgid "Unable to load this preference." +msgstr "לא ניתן לטעון העדפה זו." + +#: build/sidebar.bundle.js:2 +msgid "Unable to save this preference." +msgstr "לא ניתן לשמור העדפה זו." + +#: build/sidebar.bundle.js:2 +msgid "Loading preference..." +msgstr "טוען/ת העדפה..." + +#: build/sidebar.bundle.js:2 +msgid "Screen Reader Text Format" +msgstr "פורמט טקסט לקורא מסך" + +#: build/sidebar.bundle.js:2 +msgid "Control whether screen reader text stays visible while you edit." +msgstr "שלוט/שלטי אם טקסט קורא מסך נשאר גלוי בזמן העריכה." + +#: build/sidebar.bundle.js:2 +msgid "Always show screen reader text?" +msgstr "האם להציג תמיד טקסט לקורא מסך?" + +#: build/sidebar.bundle.js:2 +msgid "Loading accessibility data..." +msgstr "טוען נתוני נגישות..." + +#: build/sidebar.bundle.js:2 +msgid "Accessibility Checker actions" +msgstr "פעולות בודק הנגישות" + +#: build/sidebar.bundle.js:2 +msgid "Scan" +msgstr "סרוק" + +#: build/sidebar.bundle.js:2 +msgid "Refresh" +msgstr "רענן" + +#: build/srOnlyFormat.bundle.js:2 +msgid "Screen Reader Only" +msgstr "לקורא מסך בלבד" + +#: build/srOnlyFormat.bundle.js:2 +msgid "Always show screen reader text" +msgstr "הצג/י תמיד טקסט לקורא מסך" From ec1bcad398751b1b48419a48bed6401c726e32bd Mon Sep 17 00:00:00 2001 From: PTC Date: Tue, 5 May 2026 19:39:09 +0000 Subject: [PATCH 10/74] PTC accessibility-checker (1985): Edits by Steve Jones (May 05, 2026 19:39:04652135) --- ...s_ES-b93b9e514c44a41f97246123aa57f5c4.json | 2 +- languages/accessibility-checker-es_ES.mo | Bin 178212 -> 207586 bytes languages/accessibility-checker-es_ES.po | 3459 +++++++++++------ 3 files changed, 2344 insertions(+), 1117 deletions(-) diff --git a/languages/accessibility-checker-es_ES-b93b9e514c44a41f97246123aa57f5c4.json b/languages/accessibility-checker-es_ES-b93b9e514c44a41f97246123aa57f5c4.json index 1f02b0120..106a023fc 100644 --- a/languages/accessibility-checker-es_ES-b93b9e514c44a41f97246123aa57f5c4.json +++ b/languages/accessibility-checker-es_ES-b93b9e514c44a41f97246123aa57f5c4.json @@ -1 +1 @@ -{"translation-revision-date":"YEAR-MO-DA HO:MI+ZONE","generator":"WP-CLI\/2.12.0","source":"build\/frontendHighlighterApp.bundle.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"es_ES","plural-forms":"nplurals=2; plural=(n != 1);"},"Accessibility Checker":["Accessibility Checker"],"Critical":["Cr\u00edtico"],"High":["Alto"],"Medium":["Medio"],"Low":["Bajo"],"Problem":["Problema","Problemas"],"Needs Review":["Necesita revisi\u00f3n","Necesita revisi\u00f3n"],", opens a new window":[", se abre una nueva ventana"],"Save":["Guardar"],"Clear Issues":["Borrar problemas"],"Saving...":["Guardando..."],"Settings saved successfully. You must %svisit the editor%s and save the post to rescan and remove fixed issues from Accessibility Checker reports.":["Ajustes guardados correctamente. Debes %svisitar el editor%s y guardar la entrada para volver a escanear y eliminar los problemas corregidos de los informes de Accessibility Checker."],"Settings saved successfully.":["Ajustes guardados con \u00e9xito."],"Saving failed.":["Error al guardar."],"Fix Settings":["Ajustes de correcci\u00f3n"],"This will clear all issues for this post. A save will be required to trigger a fresh scan of the post content. Do you want to continue?":["Esto borrar\u00e1 todos los problemas de esta publicaci\u00f3n. Se requerir\u00e1 un guardado para activar un nuevo escaneo del contenido de la publicaci\u00f3n. \u00bfDesea continuar?"],"Clearing...":["Borrando..."],"Issues cleared successfully.":["Problemas borrados con \u00e9xito."],"Failed to clear issues.":["Error al borrar los problemas."],"An error occurred while clearing issues.":["Se produjo un error al borrar los problemas."],"Close fixes modal":["Cerrar el modal de correcciones"],"%1$d of %2$d":["%1$d de %2$d"],"The element is not visible. Try disabling styles.":["El elemento no est\u00e1 visible. Intente deshabilitar los estilos."],"The element is not focusable. Try disabling styles.":["El elemento no es enfocable. Intente deshabilitar los estilos."],"The element was not found on the page.":["El elemento no se encontr\u00f3 en la p\u00e1gina."],"Move to Left":["Mover a la izquierda"],"Move to Right":["Mover a la derecha"],"Panel position reset.":["Posici\u00f3n del panel restablecida."],"Panel moved to the left.":["Panel movido a la izquierda."],"Panel moved to the right.":["Panel movido a la derecha."],"Open details for %1$s, %2$s of %3$s":["Abrir detalles para %1$s, %2$s de %3$s"],"Undock Panel":["Desacoplar panel"],"Dock Panel":["Acoplar panel"],"Rescan This Page":["Volver a escanear esta p\u00e1gina"],"Accessibility Checker Tools":["Herramientas de Accessibility Checker"],"More options":["M\u00e1s opciones"],"Disable Page Styles":["Desactivar estilos de p\u00e1gina"],"Disable Styles":["Desactivar estilos"],"Close":["Cerrar"],"No issues found on this page.":["No se encontraron problemas en esta p\u00e1gina."],"Loading...":["Cargando..."],"Previous":["Anterior"],"Next":["Siguiente"],"Reset Position":["Restablecer posici\u00f3n"],"An error occurred when loading the issues.":["Se produjo un error al cargar los problemas."],"Panel docked.":["Panel acoplado."],"Panel undocked.":["Panel desacoplado."],"Severity:":["Gravedad:"],"WCAG:":["WCAG:"],"Issue type:":["Tipo de problema:"],"Ignored":["Ignorado"],"Show explanation":["Mostrar explicaci\u00f3n"],"Why It Matters":["Por qu\u00e9 es importante"],"How to Fix":["C\u00f3mo solucionarlo"],"More Detailed Documentation":["Documentaci\u00f3n m\u00e1s detallada"],"Show Affected Code":["Mostrar c\u00f3digo afectado"],"Fix issue: %s":["Corregir problema: %s"],"Fix Issue":["Corregir problema"],"Enable Styles":["Activar estilos"],"There are no settings to display.":["No hay ajustes para mostrar."],"These settings enable global fixes across your entire site. Pages may need to be resaved or a full site scan run to see fixes reflected in reports.":["Estos ajustes habilitan correcciones globales en todo tu sitio. Es posible que las p\u00e1ginas deban volver a guardarse o que se deba ejecutar un escaneo completo del sitio para ver las correcciones reflejadas en los informes."],"%d issue found":["%d problema encontrado","%d problemas encontrados"],"%d Problem":["%d problema","%d problemas"],"%d Needs Review":["%d necesita revisi\u00f3n","%d necesitan revisi\u00f3n"],"%d Ignored":["%d ignorado","%d ignorados"],"No issues detected.":["No se han detectado problemas."],"Landmark: %s":["Hito: %s"],"Scanner function not found.":["Funci\u00f3n de esc\u00e1ner no encontrada."],"Scanning...":["Escaneando..."],"No violations found, skipping save.":["No se encontraron infracciones, se omite el guardado."],"Missing postId or nonce.":["Falta postId o nonce."],"Accessibility scan error.":["Error en el escaneo de accesibilidad."],"Error saving scan results.":["Error al guardar los resultados del escaneo."],"Error: Missing required parameters.":["Error: Faltan par\u00e1metros requeridos."]}}} \ No newline at end of file +{"translation-revision-date":"YEAR-MO-DA HO:MI+ZONE","generator":"WP-CLI\/2.12.0","source":"build\/frontendHighlighterApp.bundle.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"es_ES","plural-forms":"nplurals=2; plural=(n != 1);"},"Accessibility Checker":["Accessibility Checker"],"Critical":["Cr\u00edtico"],"High":["Alto"],"Medium":["Medio"],"Low":["Bajo"],"Problem":["Problema","Problemas"],"Needs Review":["Necesita revisi\u00f3n","Necesita revisi\u00f3n"],", opens a new window":[", se abre una nueva ventana"],"Save":["Guardar"],"Clear Issues":["Borrar problemas"],"Saving...":["Guardando..."],"Settings saved successfully. You must %svisit the editor%s and save the post to rescan and remove fixed issues from Accessibility Checker reports.":["Ajustes guardados correctamente. Debes %svisitar el editor%s y guardar la entrada para volver a escanear y eliminar los problemas corregidos de los informes de Accessibility Checker."],"Settings saved successfully.":["Ajustes guardados con \u00e9xito."],"Saving failed.":["Error al guardar."],"Fix Settings":["Ajustes de correcci\u00f3n"],"This will clear all issues for this post. A save will be required to trigger a fresh scan of the post content. Do you want to continue?":["Esto borrar\u00e1 todos los problemas de esta publicaci\u00f3n. Se requerir\u00e1 un guardado para activar un nuevo escaneo del contenido de la publicaci\u00f3n. \u00bfDesea continuar?"],"Clearing...":["Borrando..."],"Issues cleared successfully.":["Problemas borrados con \u00e9xito."],"Failed to clear issues.":["Error al borrar los problemas."],"An error occurred while clearing issues.":["Se produjo un error al borrar los problemas."],"Close fixes modal":["Cerrar el modal de correcciones"],"%1$d of %2$d":["%1$d de %2$d"],"Untitled issue":["Problema sin t\u00edtulo"],"Issue %1$d of %2$d: %3$s":["Problema %1$d de %2$d: %3$s"],"The element is not visible. Try disabling styles.":["El elemento no est\u00e1 visible. Intente deshabilitar los estilos."],"The element is not focusable. Try disabling styles.":["El elemento no es enfocable. Intente deshabilitar los estilos."],"The element was not found on the page.":["El elemento no se encontr\u00f3 en la p\u00e1gina."],"Move to Left":["Mover a la izquierda"],"Move to Right":["Mover a la derecha"],"Panel position reset.":["Posici\u00f3n del panel restablecida."],"Panel moved to the left.":["Panel movido a la izquierda."],"Panel moved to the right.":["Panel movido a la derecha."],"Open details for %1$s, %2$s of %3$s":["Abrir detalles para %1$s, %2$s de %3$s"],"Undock Panel":["Desacoplar panel"],"Dock Panel":["Acoplar panel"],"Rescan This Page":["Volver a escanear esta p\u00e1gina"],"Accessibility Checker Tools":["Herramientas de Accessibility Checker"],"More options":["M\u00e1s opciones"],"Disable Page Styles":["Desactivar estilos de p\u00e1gina"],"Disable Styles":["Desactivar estilos"],"Close":["Cerrar"],"No issues found on this page.":["No se encontraron problemas en esta p\u00e1gina."],"Loading...":["Cargando..."],"Previous":["Anterior"],"Next":["Siguiente"],"Reset Position":["Restablecer posici\u00f3n"],"An error occurred when loading the issues.":["Se produjo un error al cargar los problemas."],"Panel docked.":["Panel acoplado."],"Panel undocked.":["Panel desacoplado."],"Severity:":["Gravedad:"],"WCAG:":["WCAG:"],"Ignored":["Ignorado"],"Show explanation":["Mostrar explicaci\u00f3n"],"Why It Matters":["Por qu\u00e9 es importante"],"How to Fix":["C\u00f3mo solucionarlo"],"More Detailed Documentation":["Documentaci\u00f3n m\u00e1s detallada"],"Show Affected Code":["Mostrar c\u00f3digo afectado"],"Fix issue: %s":["Corregir problema: %s"],"Fix Issue":["Corregir problema"],"Enable Styles":["Activar estilos"],"Enable Page Styles":["Habilitar estilos de p\u00e1gina"],"Page styles disabled.":["Estilos de p\u00e1gina deshabilitados."],"Page styles re-enabled.":["Estilos de p\u00e1gina reactivados."],"There are no settings to display.":["No hay ajustes para mostrar."],"These settings enable global fixes across your entire site. Pages may need to be resaved or a full site scan run to see fixes reflected in reports.":["Estos ajustes habilitan correcciones globales en todo tu sitio. Es posible que las p\u00e1ginas deban volver a guardarse o que se deba ejecutar un escaneo completo del sitio para ver las correcciones reflejadas en los informes."],"%d issue found":["%d problema encontrado","%d problemas encontrados"],"%d Problem":["%d problema","%d problemas"],"%d Needs Review":["%d necesita revisi\u00f3n","%d necesitan revisi\u00f3n"],"%d Ignored":["%d ignorado","%d ignorados"],"No issues detected.":["No se han detectado problemas."],"Landmark: %s":["Hito: %s"],"Failed to load scanner script.":["No se pudo cargar el script del esc\u00e1ner."],"Scanner function not found.":["Funci\u00f3n de esc\u00e1ner no encontrada."],"Scanning...":["Escaneando..."],"Missing postId or nonce.":["Falta postId o nonce."],"Rescan complete. No violations found.":["An\u00e1lisis completado. No se encontraron infracciones."],"No violations found, skipping save.":["No se encontraron infracciones, se omite el guardado."],"Accessibility scan error.":["Error en el escaneo de accesibilidad."],"Error saving scan results.":["Error al guardar los resultados del escaneo."],"Rescan already in progress.":["An\u00e1lisis ya en curso."],"Rescanning this page.":["Reanalizando esta p\u00e1gina."],"Rescan complete.":["Rean\u00e1lisis completado."],"Error: Missing required parameters.":["Error: Faltan par\u00e1metros requeridos."]}}} \ No newline at end of file diff --git a/languages/accessibility-checker-es_ES.mo b/languages/accessibility-checker-es_ES.mo index e1348149dd49b492a26512792453ed1d12c51576..42a4c9e5314beb80df27f9e38b92a5ae1e3fd806 100644 GIT binary patch delta 47937 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 HN>l$2XX1qI delta 20995 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\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-06T16:25:50+00:00\n" +"POT-Creation-Date: 2026-05-04T17:50:18+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" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Plugin Name of the plugin #: accessibility-checker.php -#: admin/class-meta-boxes.php:39 -#: includes/classes/class-accessibility-statement.php:51 -#: includes/classes/class-admin-toolbar.php:53 -#: includes/options-page.php:43 -#: partials/welcome-page.php:24 +#: admin/class-meta-boxes.php:47 +#: includes/classes/class-accessibility-statement.php:55 +#: includes/classes/class-admin-toolbar.php:57 +#: includes/options-page.php:49 +#: partials/welcome-page.php:28 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/sidebar.bundle.js:2 msgid "Accessibility Checker" msgstr "Accessibility Checker" @@ -44,18 +48,321 @@ msgstr "Equalize Digital" msgid "https://equalizedigital.com" msgstr "https://equalizedigital.com" -#: admin/AdminPage/FixesPage.php:71 +#: admin/AdminPage/AccessibilityReportsPage.php:56 +#: admin/AdminPage/AccessibilityReportsPage.php:138 +msgid "Accessibility Reports" +msgstr "Informes de accesibilidad" + +#: admin/AdminPage/AccessibilityReportsPage.php:57 +msgid "New" +msgstr "Nuevo" + +#: admin/AdminPage/AccessibilityReportsPage.php:144 +msgid "Get recurring email reports with a snapshot of your site’s accessibility, including total issues, trends over time, most problematic pages, and the most severe issues to fix first." +msgstr "Reciba informes recurrentes por correo electrónico con un resumen de la accesibilidad de su sitio, incluyendo el total de problemas, las tendencias a lo largo del tiempo, las páginas más problemáticas y los problemas más graves que deben solucionarse primero." + +#: admin/AdminPage/AccessibilityReportsPage.php:146 +msgid "Get recurring email reports with a snapshot of your site’s accessibility, including total issues, trends over time, most problematic pages, and the most severe issues to fix first. Some details, like full-site coverage and issue breakdowns, are available in Pro." +msgstr "Reciba informes recurrentes por correo electrónico con un resumen de la accesibilidad de su sitio, incluyendo el total de problemas, las tendencias a lo largo del tiempo, las páginas más problemáticas y los problemas más graves que deben solucionarse primero. Algunos detalles, como la cobertura de todo el sitio y los desgloses de problemas, están disponibles en Pro." + +#: admin/AdminPage/AccessibilityReportsPage.php:157 +#: admin/AdminPage/AccessibilityReportsPage.php:171 +msgid "Enable Email Reports" +msgstr "Habilitar informes por correo electrónico" + +#: admin/AdminPage/AccessibilityReportsPage.php:164 +#: admin/AdminPage/AccessibilityReportsPage.php:168 +#: admin/AdminPage/AccessibilityReportsPage.php:260 +#: admin/AdminPage/ConnectedServicesPage.php:153 +msgid "Free License Key" +msgstr "Clave de licencia gratuita" + +#: admin/AdminPage/AccessibilityReportsPage.php:177 +msgid "Get a Free License Key" +msgstr "Obtener una clave de licencia gratuita" + +#. translators: %s: dashboard URL. +#: admin/AdminPage/AccessibilityReportsPage.php:182 +#, php-format +msgid "Got the plugin from Equalize Digital? Your key is in your dashboard." +msgstr "¿Obtuvo el plugin de Equalize Digital? Su clave está en su panel de control." + +#. translators: %s: signup URL. +#: admin/AdminPage/AccessibilityReportsPage.php:191 +#, php-format +msgid "Installed from WordPress.org? Create a free account to get one." +msgstr "¿Instalado desde WordPress.org? Cree una cuenta gratuita para obtener una." + +#. translators: %s: signup URL. +#: admin/AdminPage/AccessibilityReportsPage.php:200 +#, php-format +msgid "Not sure? Just create a free account. It only takes a minute." +msgstr "¿No está seguro? Simplemente cree una cuenta gratuita. Solo le llevará un minuto." + +#: admin/AdminPage/AccessibilityReportsPage.php:212 +msgid "Reports Enabled" +msgstr "Informes habilitados" + +#: admin/AdminPage/AccessibilityReportsPage.php:215 +msgid "You’ll receive weekly accessibility reports for this site." +msgstr "Recibirá informes semanales de accesibilidad para este sitio." + +#. translators: %s: next report date. +#: admin/AdminPage/AccessibilityReportsPage.php:219 +#, php-format +msgid "Next report: %s" +msgstr "Próximo informe: %s" + +#: admin/AdminPage/AccessibilityReportsPage.php:226 +msgid "Full Coverage" +msgstr "Cobertura total" + +#: admin/AdminPage/AccessibilityReportsPage.php:226 +msgid "Limited Coverage" +msgstr "Cobertura limitada" + +#: admin/AdminPage/AccessibilityReportsPage.php:230 +msgid "Your reports include all post types and taxonomies." +msgstr "Sus informes incluyen todos los tipos de entrada y taxonomías." + +#: admin/AdminPage/AccessibilityReportsPage.php:232 +msgid "Full-site scanning enabled" +msgstr "Escaneo de sitio completo habilitado" + +#: admin/AdminPage/AccessibilityReportsPage.php:233 +msgid "Complete issue breakdowns" +msgstr "Desgloses completos de problemas" + +#: admin/AdminPage/AccessibilityReportsPage.php:234 +msgid "Detailed reporting" +msgstr "Informes detallados" + +#: admin/AdminPage/AccessibilityReportsPage.php:237 +msgid "Your reports only include part of your site." +msgstr "Sus informes solo incluyen una parte de su sitio." + +#: admin/AdminPage/AccessibilityReportsPage.php:238 +msgid "Upgrade to Pro to:" +msgstr "Actualice a Pro para:" + +#: admin/AdminPage/AccessibilityReportsPage.php:240 +msgid "Scan all content types" +msgstr "Escanear todos los tipos de contenido" + +#: admin/AdminPage/AccessibilityReportsPage.php:241 +msgid "Get full issue breakdowns" +msgstr "Obtener desgloses completos de problemas" + +#: admin/AdminPage/AccessibilityReportsPage.php:242 +msgid "Receive more detailed reports" +msgstr "Recibir informes más detallados" + +#: admin/AdminPage/AccessibilityReportsPage.php:245 +#: admin/class-upgrade-promotion.php:62 +msgid "Upgrade to Pro" +msgstr "Actualiza a pro" + +#: admin/AdminPage/AccessibilityReportsPage.php:251 +msgid "Accessibility Summary" +msgstr "Resumen de accesibilidad" + +#: admin/AdminPage/AccessibilityReportsPage.php:252 +msgid "This summary reflects the latest scan data available for your site." +msgstr "Este resumen refleja los últimos datos de escaneo disponibles para su sitio." + +#: admin/AdminPage/AccessibilityReportsPage.php:254 +msgid "Total Issues Found" +msgstr "Total de problemas encontrados" + +#: admin/AdminPage/AccessibilityReportsPage.php:260 +msgid "Account Connection" +msgstr "Conexión de cuenta" + +#: admin/AdminPage/AccessibilityReportsPage.php:268 +msgid "Disable Email Reports" +msgstr "Deshabilitar informes por correo electrónico" + +#. translators: %1$s: privacy link, %2$s: data processing agreement link, %3$s: privacy policy aria label, %4$s: data processing agreement aria label. +#: admin/AdminPage/AccessibilityReportsPage.php:279 +#, php-format +msgid "By connecting this site, you agree to Equalize Digital's Privacy Policy and Data Processing Agreement ." +msgstr "Al conectar este sitio, acepta la política de privacidad y el acuerdo de procesamiento de datos de Equalize Digital." + +#: admin/AdminPage/AccessibilityReportsPage.php:282 +msgid "Privacy Policy (opens in a new window)" +msgstr "Política de privacidad (se abre en una ventana nueva)" + +#: admin/AdminPage/AccessibilityReportsPage.php:283 +msgid "Data Processing Agreement (opens in a new window)" +msgstr "Acuerdo de procesamiento de datos (se abre en una ventana nueva)" + +#: admin/AdminPage/AccessibilityReportsPage.php:294 +msgid "Weekly email includes total issues found and changes since the last report, coverage information, counts of problems, needs review, passed test percentage, and information about the most problematic pages and the most severe issues." +msgstr "El correo electrónico semanal incluye el total de problemas encontrados y los cambios desde el último informe, información de cobertura, recuentos de problemas, elementos que requieren revisión, porcentaje de pruebas superadas e información sobre las páginas más problemáticas y los problemas más graves." + +#: admin/AdminPage/AccessibilityReportsPage.php:387 +#: build/sidebar.bundle.js:2 +msgid "N/A" +msgstr "N/D" + +#: admin/AdminPage/AccessibilityReportsPage.php:477 +#: admin/class-ajax.php:330 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "Critical" +msgstr "Crítico" + +#: admin/AdminPage/AccessibilityReportsPage.php:479 +#: admin/class-ajax.php:334 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "High" +msgstr "Alto" + +#: admin/AdminPage/AccessibilityReportsPage.php:481 +#: admin/class-ajax.php:338 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "Medium" +msgstr "Medio" + +#: admin/AdminPage/AccessibilityReportsPage.php:483 +#: admin/class-ajax.php:342 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "Low" +msgstr "Bajo" + +#: admin/AdminPage/AccessibilityReportsPage.php:485 +#: includes/classes/class-rest-api.php:997 +msgid "Unknown" +msgstr "Desconocido" + +#: admin/AdminPage/ConnectedServicesPage.php:137 +msgid "create a free account" +msgstr "crear una cuenta gratuita" + +#: admin/AdminPage/ConnectedServicesPage.php:146 +msgid "Connect this site" +msgstr "Conectar este sitio" + +#: admin/AdminPage/ConnectedServicesPage.php:165 +msgid "active" +msgstr "activa" + +#: admin/AdminPage/ConnectedServicesPage.php:167 +msgid "expired" +msgstr "caducada" + +#: admin/AdminPage/ConnectedServicesPage.php:169 +msgid "Enter your license key" +msgstr "Introduzca su clave de licencia" + +#: admin/AdminPage/ConnectedServicesPage.php:184 +#: admin/AdminPage/ConnectedServicesPage.php:250 +msgid "Disconnect Site" +msgstr "Desconectar sitio" + +#: admin/AdminPage/ConnectedServicesPage.php:191 +msgid "Connect Site" +msgstr "Conectar sitio" + +#. translators: %s: link to my.equalizedigital.com dashboard +#: admin/AdminPage/ConnectedServicesPage.php:204 +#, php-format +msgid "If you downloaded the free plugin from Equalize Digital, you already have a free license key in your %s dashboard." +msgstr "Si ha descargado el plugin gratuito de Equalize Digital, ya tiene una clave de licencia gratuita en su panel de control de %s." + +#. translators: %s: link to create a free account +#: admin/AdminPage/ConnectedServicesPage.php:213 +#, php-format +msgid "If not, %s to generate a license key and connect this site." +msgstr "Si no, %s para generar una clave de licencia y conectar este sitio." + +#: admin/AdminPage/ConnectedServicesPage.php:232 +msgid "Connected as Free" +msgstr "Conectado como gratuito" + +#: admin/AdminPage/ConnectedServicesPage.php:233 +msgid "Your Pro license is no longer valid, but this site remains connected for Free email reports." +msgstr "Su licencia Pro ya no es válida, pero este sitio permanece conectado para informes por correo electrónico gratuitos." + +#. translators: %s: link to my.equalizedigital.com dashboard +#: admin/AdminPage/ConnectedServicesPage.php:238 +#, php-format +msgid "You can manage recipients and review connection details in your %s dashboard." +msgstr "Puede gestionar los destinatarios y revisar los detalles de la conexión en su panel de control de %s." + +#: admin/AdminPage/ConnectedServicesPage.php:398 +msgid "Your Pro license is no longer valid. This site is using a valid Free license, and email reports remain connected as Free email reports. Renew your Pro license to restore Pro-only features." +msgstr "Su licencia Pro ya no es válida. Este sitio está utilizando una licencia gratuita válida y los informes por correo electrónico permanecen conectados como informes por correo electrónico gratuitos. Renueve su licencia Pro para restaurar las funciones exclusivas de Pro." + +#: admin/AdminPage/ConnectedServicesPage.php:401 +msgid "Your Pro license is no longer valid. This site is using a valid Free license, but email reports are not currently connected. Connect this site from the Free License section to resume Free email reports." +msgstr "Su licencia Pro ya no es válida. Este sitio está utilizando una licencia gratuita válida, pero los informes por correo electrónico no están conectados actualmente. Conecte este sitio desde la sección de Licencia Gratuita para reanudar los informes por correo electrónico gratuitos." + +#: admin/AdminPage/ConnectedServicesPage.php:442 +msgid "Please renew your license" +msgstr "Por favor, renueve su licencia" + +#. translators: %1$s: item name, %2$s: item name, %3$s: renew license link +#: admin/AdminPage/ConnectedServicesPage.php:445 +#, php-format +msgid "Your %1$s license has expired. %3$s to continue accessing additional features and services for %2$s." +msgstr "Su licencia %1$s ha caducado. %3$s para continuar accediendo a funciones y servicios adicionales para %2$s." + +#. translators: %s: item name +#: admin/AdminPage/ConnectedServicesPage.php:455 +#, php-format +msgid "Your %s license key has been disabled. Please contact our support team if you believe this is an error or would like to continue accessing additional features." +msgstr "Su clave de licencia %s ha sido deshabilitada. Póngase en contacto con nuestro equipo de soporte si cree que se trata de un error o si desea seguir accediendo a funciones adicionales." + +#. translators: %1$s: item name, %2$s: license url, %3$s: item name +#: admin/AdminPage/ConnectedServicesPage.php:462 +#, php-format +msgid "The license key for %1$s appears to be invalid. Please check your license key to access additional accessibility features and services for %3$s." +msgstr "La clave de licencia para %1$s parece no ser válida. Por favor, compruebe su clave de licencia para acceder a funciones y servicios de accesibilidad adicionales para %3$s." + +#. translators: %s: item name +#: admin/AdminPage/ConnectedServicesPage.php:472 +#, php-format +msgid "This license key for %s is not active for this site. Please activate it to access additional features on this website." +msgstr "Esta clave de licencia para %s no está activa para este sitio. Por favor, actívela para acceder a funciones adicionales en este sitio web." + +#. translators: %s: the plugins item name +#: admin/AdminPage/ConnectedServicesPage.php:479 +#, php-format +msgid "This license key does not appear to be valid for %s. Please verify you've entered the correct license key." +msgstr "Esta clave de licencia no parece ser válida para %s. Por favor, verifique que ha introducido la clave de licencia correcta." + +#. translators: %s: the plugins item name +#: admin/AdminPage/ConnectedServicesPage.php:486 +#, php-format +msgid "Your %s license key has reached its site activation limit. You can upgrade your license or deactivate it on another site to use the additional features here." +msgstr "Su clave de licencia %s ha alcanzado su límite de activación de sitios. Puede actualizar su licencia o desactivarla en otro sitio para usar las funciones adicionales aquí." + +#. translators: %s: the plugins item name +#: admin/AdminPage/ConnectedServicesPage.php:493 +#, php-format +msgid "There was an issue validating your %s license key. Please try again or contact our support team if the problem persists." +msgstr "Hubo un problema al validar su clave de licencia %s. Por favor, inténtelo de nuevo o póngase en contacto con nuestro equipo de soporte si el problema persiste." + +#: admin/AdminPage/FixesPage.php:75 #: admin/site-health/class-free.php:105 #: admin/site-health/class-pro.php:82 -#: includes/classes/class-admin-toolbar.php:102 +#: includes/classes/class-admin-toolbar.php:106 msgid "Fixes" msgstr "Correcciones" -#: admin/AdminPage/FixesPage.php:138 +#: admin/AdminPage/FixesPage.php:142 msgid "General Fixes" msgstr "Correcciones generales" -#: admin/AdminPage/FixesPage.php:212 +#: admin/AdminPage/FixesPage.php:220 msgid "These fixes help improve accessibility by modifying HTML elements and behaviors on your site." msgstr "Estas correcciones ayudan a mejorar la accesibilidad modificando elementos HTML y comportamientos en tu sitio." @@ -67,12 +374,13 @@ msgstr "Obtén la versión Pro para desbloquear esta función, se abre en una nu #: admin/AdminPage/FixesSettingType/Checkbox.php:47 #: admin/AdminPage/FixesSettingType/Text.php:38 -#: admin/class-plugin-action-links.php:55 +#: admin/class-plugin-action-links.php:59 +#: build/admin.bundle.js:2 msgid "Get Pro" msgstr "Obtener pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:347 +#: admin/class-ajax.php:394 msgid "Opens in a new window." msgstr "Se abre en una nueva ventana." @@ -164,569 +472,840 @@ msgstr "¿Quieres hacer más con Accessibility Checker? %1$sDesbloquea las funci msgid "Unlock Pro Features (opens in new window)" msgstr "Desbloquea las funciones Pro (se abre en una nueva ventana)" -#: admin/class-admin-notices.php:129 +#: admin/class-admin-notices.php:139 msgid "🎉 Black Friday special! 🎉" msgstr "🎉 ¡Oferta especial de Black Friday! 🎉" -#: admin/class-admin-notices.php:130 -msgid "Upgrade to a paid version of Accessibility Checker from November 25th to December 3rd and get 30% off! Full site scanning, site-wide open issues report, ignore logs, and more." -msgstr "Actualiza a la versión de pago de Accessibility Checker del 25 de noviembre al 3 de diciembre y obtén un 30 % de descuento. Escaneo completo del sitio, informe de problemas abiertos en todo el sitio, registros de ignorados y más." +#: admin/class-admin-notices.php:140 +msgid "Upgrade to a paid version of Accessibility Checker from November 24th to December 3rd and get 30% off! Full site scanning, site-wide open issues report, ignore logs, and more." +msgstr "¡Actualice a una versión de pago de Accessibility Checker del 24 de noviembre al 3 de diciembre y obtenga un 30 % de descuento! Escaneo completo del sitio, informe de problemas abiertos en todo el sitio, registros de ignorados y más." -#: admin/class-admin-notices.php:131 -#: admin/class-admin-notices.php:218 +#: admin/class-admin-notices.php:141 msgid "Ask a Pre-Sale Question" msgstr "Hacer una pregunta previa a la venta" -#: admin/class-admin-notices.php:132 -#: admin/class-admin-notices.php:219 +#: admin/class-admin-notices.php:142 +#: admin/class-admin-notices.php:245 msgid "Upgrade Now" msgstr "Actualizar ahora" -#: admin/class-admin-notices.php:151 -#: admin/class-admin-notices.php:238 -#: admin/class-admin-notices.php:327 -#: admin/class-ajax.php:56 -#: admin/class-ajax.php:205 -#: admin/class-ajax.php:584 -#: admin/class-ajax.php:722 -#: admin/class-ajax.php:802 -#: admin/class-frontend-highlight.php:79 +#: admin/class-admin-notices.php:161 +#: admin/class-admin-notices.php:266 +#: admin/class-admin-notices.php:356 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:223 +#: admin/class-ajax.php:634 +#: admin/class-ajax.php:818 +#: admin/class-frontend-highlight.php:82 +#: admin/class-frontend-highlight.php:100 +#: admin/class-frontend-highlight.php:105 +#: admin/class-frontend-highlight.php:109 msgid "Permission Denied" msgstr "Permiso denegado" -#: admin/class-admin-notices.php:160 -#: admin/class-admin-notices.php:250 -#: admin/class-admin-notices.php:347 +#: admin/class-admin-notices.php:173 +#: admin/class-admin-notices.php:279 +#: admin/class-admin-notices.php:380 msgid "Update option wasn't successful" msgstr "La actualización de la opción no tuvo éxito" -#: admin/class-admin-notices.php:216 -msgid "🎉 Get 25% off Accessibility Checker Pro in honor of Global Accessibility Awareness Day! 🎉" -msgstr "🎉 ¡Obtén un 25 % de descuento en Accessibility Checker Pro en honor al Día Mundial de Concienciación sobre la Accesibilidad! 🎉" +#: admin/class-admin-notices.php:226 +msgid "⚡️ Global Accessibility Awareness Day Flash Sale" +msgstr "⚡️ Oferta relámpago del Día Mundial de Concienciación sobre la Accesibilidad" + +#. translators: 1: opening anchor tag for accessibility courses link, 2: closing anchor tag, 3: opening anchor tag for ArchiveWP link, 4: closing anchor tag +#: admin/class-admin-notices.php:232 +#, php-format +msgid "3 days only: Save 15%% on %1$saccessibility courses%2$s and Equalize Digital's %3$sArchiveWP plugin%4$s. Go further with accessibility." +msgstr "Solo 3 días: Ahorre el %% en %1$scursos de accesibilidad%2$s y el %3$splugin ArchiveWP%4$s de Equalize Digital. Vaya más allá con la accesibilidad." + +#: admin/class-admin-notices.php:238 +msgid "Limited-time offer • May 20–22 • Use coupon code " +msgstr "Oferta por tiempo limitado • 20-22 de mayo • Use el código de cupón " + +#: admin/class-admin-notices.php:239 +msgid "Grab the Deal Before It Ends" +msgstr "Aproveche la oferta antes de que finalice" + +#: admin/class-admin-notices.php:242 +msgid "3 days only: Save 15% when you upgrade to Accessibility Checker Pro with coupon code" +msgstr "Solo 3 días: Ahorre un 15 % al actualizar a Accessibility Checker Pro con el código de cupón" -#: admin/class-admin-notices.php:217 -msgid "Use coupon code GAAD25 from May 13th-May 21st to get access to full-site scanning and other pro features at a special discount. Not sure if upgrading is right for you?" -msgstr "Usa el código de cupón GAAD25 del 13 al 21 de mayo para obtener acceso al escaneo completo del sitio y otras funciones pro con un descuento especial. ¿No estás seguro si la actualización es adecuada para ti?" +#: admin/class-admin-notices.php:244 +msgid "Limited-time offer • May 20–22" +msgstr "Oferta por tiempo limitado • 20-22 de mayo" -#: admin/class-admin-notices.php:302 +#: admin/class-admin-notices.php:331 msgid "Hello! Thank you for using Accessibility Checker as part of your accessibility toolkit. Since you've been using it for a while, would you please write a 5-star review of Accessibility Checker in the WordPress plugin directory? This will help increase our visibility so more people can learn about the importance of web accessibility. Thanks so much!" msgstr "¡Hola! Gracias por utilizar Accessibility Checker como parte de tus herramientas de accesibilidad. Ya que lo has estado usando durante un tiempo, ¿podrías escribir una reseña de 5 estrellas de Accessibility Checker en el directorio de plugins de WordPress? Esto nos ayudará a aumentar nuestra visibilidad para que más personas puedan conocer la importancia de la accesibilidad web. ¡Muchas gracias!" -#: admin/class-admin-notices.php:305 +#: admin/class-admin-notices.php:334 msgid "Write A Review" msgstr "Escribir una reseña" -#: admin/class-admin-notices.php:306 +#: admin/class-admin-notices.php:335 msgid "Remind Me In Two Weeks" msgstr "Recordármelo en dos semanas" -#: admin/class-admin-notices.php:307 +#: admin/class-admin-notices.php:336 msgid "Never Ask Again" msgstr "No volver a preguntar" -#: admin/class-admin-notices.php:334 +#: admin/class-admin-notices.php:363 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:212 -#: admin/class-ajax.php:591 -#: admin/class-ajax.php:809 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:227 +#: admin/class-ajax.php:638 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:68 +#: admin/class-ajax.php:231 +#: admin/class-ajax.php:642 +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:87 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:90 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:93 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:95 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:126 +#. translators: %d: percentage of passed checks +#: admin/class-ajax.php:106 #, php-format -msgid "%s Error" -msgid_plural "%s Errors" -msgstr[0] "%s Error" -msgstr[1] "%s Errores" +msgid "%d%% Passed Checks" +msgstr "%d%% comprobaciones superadas" -#. translators: %s: Number of contrast errors -#: admin/class-ajax.php:132 -#, php-format -msgid "%s Contrast Error" -msgid_plural "%s Contrast Errors" -msgstr[0] "%s Error de contraste" -msgstr[1] "%s Errores de contraste" +#: admin/class-ajax.php:115 +#: admin/class-welcome-page.php:102 +#: admin/class-widgets.php:111 +#: build/sidebar.bundle.js:2 +msgid "Passed Checks" +msgstr "Comprobaciones superadas" + +#: admin/class-ajax.php:125 +msgid "Passed Tests" +msgstr "Pruebas superadas" -#. translators: %s: Number of warnings #: admin/class-ajax.php:138 -#, php-format -msgid "%s Warning" -msgid_plural "%s Warnings" -msgstr[0] "%s Advertencia" -msgstr[1] "%s Advertencias" +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "Problem" +msgid_plural "Problems" +msgstr[0] "Problema" +msgstr[1] "Problemas" -#. translators: %s: Number of ignored items #: admin/class-ajax.php:144 +msgid "Contrast Problem" +msgid_plural "Contrast Problems" +msgstr[0] "Problema de contraste" +msgstr[1] "Problemas de contraste" + +#: admin/class-ajax.php:150 +#: admin/class-widgets.php:182 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "Needs Review" +msgid_plural "Needs Review" +msgstr[0] "Necesita revisión" +msgstr[1] "Necesita revisión" + +#: admin/class-ajax.php:156 +#: admin/class-ajax.php:385 +#: admin/class-welcome-page.php:197 +msgid "Dismissed Issue" +msgid_plural "Dismissed Issues" +msgstr[0] "Problema descartado" +msgstr[1] "Problemas descartados" + +#: admin/class-ajax.php:176 +#: includes/wcag.php:1763 +#: build/sidebar.bundle.js:2 +msgid "Reading Level" +msgstr "Nivel de lectura" + +#. translators: 1: opening anchor tag, 2: closing anchor tag with arrow icon and screen reader text +#: admin/class-ajax.php:187 #, php-format -msgid "%s Ignored Item" -msgid_plural "%s Ignored Items" -msgstr[0] "%s Elemento ignorado" -msgstr[1] "%s Elementos ignorados" +msgid "* True accessibility requires manual testing in addition to automated scans. %1$sLearn how to manually test for accessibility%2$s" +msgstr "* La verdadera accesibilidad requiere pruebas manuales además de escaneos automatizados. %1$sAprenda a realizar pruebas manuales de accesibilidad%2$s" + +#: admin/class-ajax.php:198 +#: admin/class-ajax.php:790 +#: admin/class-ignore-ui.php:126 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid ", opens a new window" +msgstr ", se abre una nueva ventana" -#: admin/class-ajax.php:182 +#: admin/class-ajax.php:203 msgid "No summary to return" msgstr "No hay resumen para devolver" -#: admin/class-ajax.php:226 +#: admin/class-ajax.php:242 +#: includes/classes/class-rest-api.php:905 msgid "Invalid table name" msgstr "Nombre de tabla no válido" -#: admin/class-ajax.php:372 +#: admin/class-ajax.php:383 +msgid " total" +msgstr " total" + +#. translators: 1: rule title, 2: "Opens in a new window." +#: admin/class-ajax.php:392 +#, php-format +msgid "Read documentation for %1$s. %2$s" +msgstr "Lea la documentación de %1$s. %2$s" + +#. translators: %s: rule title +#: admin/class-ajax.php:400 +#, php-format +msgid "Expand issues for %s" +msgstr "Expandir problemas para %s" + +#: admin/class-ajax.php:426 +#: build/issueModal.bundle.js:2 msgid "These settings enable global fixes across your entire site." msgstr "Estas configuraciones habilitan correcciones globales en todo tu sitio." -#: admin/class-ajax.php:373 +#: admin/class-ajax.php:427 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:401 +#: admin/class-ajax.php:455 #: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 msgid "Save" msgstr "Guardar" -#: admin/class-ajax.php:423 +#: admin/class-ajax.php:477 +#: build/issueModal.bundle.js:2 msgid "Affected Code" msgstr "Código afectado" +#: admin/class-ajax.php:480 +#: build/issueModal.bundle.js:2 +msgid "Image" +msgstr "Imagen" + +#: admin/class-ajax.php:483 +#: build/issueModal.bundle.js:2 +msgid "Landmark" +msgstr "Punto de referencia" + +#: admin/class-ajax.php:486 +msgid "Actions" +msgstr "Acciones" + +#: admin/class-ajax.php:495 +msgid "Dismissed" +msgstr "Descartado" + +#: admin/class-ajax.php:495 +msgid "Dismiss" +msgstr "Descartar" + +#. translators: %d: issue ID number +#: admin/class-ajax.php:506 +#, php-format +msgid "Issue ID %d" +msgstr "ID de problema %d" + +#. translators: %d: issue ID number +#: admin/class-ajax.php:524 +#, php-format +msgid "image for issue %d" +msgstr "imagen para el problema %d" + #. Translators: %d is the issue ID. -#: admin/class-ajax.php:500 +#: admin/class-ajax.php:561 #, 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:501 +#: admin/class-ajax.php:562 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 msgid "View on page" msgstr "Ver en la página" -#: admin/class-ajax.php:520 +#: admin/class-ajax.php:581 msgid "Fix: " msgstr "Corrección: " -#: admin/class-ajax.php:521 +#: admin/class-ajax.php:582 msgid "Fix" msgstr "Corregir" -#: admin/class-ajax.php:544 -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:562 +#: admin/class-ajax.php:615 msgid "No details to return" msgstr "No hay detalles para devolver" -#: admin/class-ajax.php:701 +#. translators: %s: reading grade level value e.g. "8th Grade (Flesch-Kincaid)", displayed in a element. Do not translate the %s placeholder. +#: admin/class-ajax.php:687 +#, php-format +msgid "Post Reading Grade Level: %s" +msgstr "Nivel de lectura de la publicación: %s" + +#: admin/class-ajax.php:688 +#: admin/class-ajax.php:709 +#: admin/site-health/class-pro.php:75 +msgid "None" +msgstr "Ninguno" + +#: admin/class-ajax.php:691 +msgid "Your post has a reading level higher than 9th grade. Web Content Accessibility Guidelines (WCAG) at the AAA level require a simplified summary of your post that is 9th grade or below." +msgstr "Su publicación tiene un nivel de lectura superior al de 9.º grado. Las Pautas de Accesibilidad para el Contenido Web (WCAG) en el nivel AAA requieren un resumen simplificado de su publicación que sea de 9.º grado o inferior." + +#: admin/class-ajax.php:693 +msgid "Your post does not contain enough content to calculate its reading level." +msgstr "Su publicación no contiene suficiente contenido para calcular su nivel de lectura." + +#: admin/class-ajax.php:695 +msgid "A simplified summary is not necessary when content reading level is 9th grade or below. Choose when to prompt for a simplified summary on the settings page." +msgstr "No es necesario un resumen simplificado cuando el nivel de lectura del contenido es de 9.º grado o inferior. Elija cuándo solicitar un resumen simplificado en la página de configuración." + +#. translators: %s: the simplified summary grade level value (wrapped in a tag) +#: admin/class-ajax.php:708 +#: admin/class-ajax.php:720 +#, php-format +msgid "Simplified Summary Reading Grade Level: %s" +msgstr "Nivel de lectura del resumen simplificado: %s" + +#: admin/class-ajax.php:712 +#: build/sidebar.bundle.js:2 +msgid "Not enough content to determine an accurate reading level." +msgstr "No hay suficiente contenido para determinar un nivel de lectura preciso." + +#: admin/class-ajax.php:725 +msgid "Your simplified summary has a reading level above 9th grade." +msgstr "Su resumen simplificado tiene un nivel de lectura superior al 9.º grado." + +#: admin/class-ajax.php:726 +msgid "Your simplified summary has a reading level at or below 9th grade." +msgstr "Su resumen simplificado tiene un nivel de lectura igual o inferior al 9.º grado." + +#: admin/class-ajax.php:737 +#: admin/class-ajax.php:767 +msgid "Simplified summary is not being automatically inserted into the content." +msgstr "El resumen simplificado no se inserta automáticamente en el contenido." + +#. translators: %s: link to the settings page +#: admin/class-ajax.php:740 +#, php-format +msgid "Your Prompt for Simplified Summary is set to “never.” If you would like the simplified summary to be displayed automatically, you can change this on the %s." +msgstr "Su solicitud de resumen simplificado está configurada en “nunca.” Si desea que el resumen simplificado se muestre automáticamente, puede cambiar esto en la %s." + +#: admin/class-ajax.php:741 +#: admin/class-ajax.php:758 +#: admin/class-ajax.php:771 +msgid "settings page" +msgstr "página de configuración" + +#. translators: %s: position phrase wrapped in a element (e.g. "before the content"). Do not translate the %s placeholder. +#: admin/class-ajax.php:752 +#, php-format +msgid "Simplified summary is being automatically inserted %s." +msgstr "El resumen simplificado se inserta automáticamente %s." + +#: admin/class-ajax.php:753 +msgid "the content" +msgstr "el contenido" + +#. translators: %s: link to the settings page +#: admin/class-ajax.php:757 +#, php-format +msgid "Set where the Simplified Summary is inserted into the content on the %s." +msgstr "Establezca dónde se inserta el resumen simplificado en el contenido en la %s." + +#. translators: %s: link to the settings page +#: admin/class-ajax.php:770 +#, php-format +msgid "Your Simplified Summary location is set to “manually” which requires a function be added to your page template. If you would like the simplified summary to be displayed automatically, you can change this on the %s." +msgstr "La ubicación de su resumen simplificado está configurada en “manualmente”, lo que requiere que se añada una función a la plantilla de su página. Si desea que el resumen simplificado se muestre automáticamente, puede cambiar esto en la %s." + +#: admin/class-ajax.php:784 +#: includes/classes/class-simplified-summary.php:77 +#: includes/options-page.php:932 +#: includes/options-page.php:956 +#: build/sidebar.bundle.js:2 +msgid "Simplified Summary" +msgstr "Resumen simplificado" + +#: admin/class-ajax.php:786 +#: build/sidebar.bundle.js:2 +msgid "Save Summary" +msgstr "Guardar resumen" + +#: admin/class-ajax.php:790 +msgid "Learn more about improving readability and simplified summary requirements" +msgstr "Más información sobre cómo mejorar la legibilidad y los requisitos de resumen simplificado" + +#: admin/class-ajax.php:793 msgid "No readability data to return" msgstr "No hay datos de legibilidad para devolver" -#: admin/class-ajax.php:758 -#: admin/class-ajax.php:781 +#: admin/class-ajax.php:853 +#: admin/class-ajax.php:874 msgid "No ignore data to return" msgstr "No hay datos de ignorar para devolver" -#: admin/class-ajax.php:816 -msgid "The summary was not set" -msgstr "No se ha establecido el resumen" +#: admin/class-enqueue-admin.php:435 +msgid "* Screen Reader Text" +msgstr "* Texto de lector de pantalla" -#: admin/class-frontend-highlight.php:84 +#: admin/class-frontend-highlight.php:86 msgid "The id value was not set" msgstr "No se ha establecido el valor de ID" -#: admin/class-frontend-highlight.php:92 +#: admin/class-frontend-highlight.php:93 +#: includes/classes/class-rest-api.php:1043 +msgid "Post not found" +msgstr "Publicación no encontrada" + +#: admin/class-frontend-highlight.php:115 msgid "Issue query returned no results" msgstr "La consulta de problemas no devolvió resultados" -#: admin/class-frontend-highlight.php:138 +#: admin/class-frontend-highlight.php:168 msgid "Object query returned no results" msgstr "La consulta de objetos no devolvió resultados" -#: admin/class-plugin-action-links.php:48 -#: includes/classes/class-admin-toolbar.php:94 -#: includes/options-page.php:66 +#: admin/class-ignore-ui.php:31 +msgid "False positive" +msgstr "Falso positivo" + +#: admin/class-ignore-ui.php:32 +msgid "The scanner flagged this, but it does not apply to this content." +msgstr "El escáner lo marcó, pero no se aplica a este contenido." + +#: admin/class-ignore-ui.php:35 +msgid "Remediated" +msgstr "Corregido" + +#: admin/class-ignore-ui.php:36 +msgid "The issue has been fixed, but the page has not been rescanned yet." +msgstr "El problema se ha solucionado, pero la página aún no se ha vuelto a escanear." + +#: admin/class-ignore-ui.php:39 +msgid "Confirmed accessible" +msgstr "Accesible confirmado" + +#: admin/class-ignore-ui.php:40 +msgid "Reviewed and verified to meet accessibility requirements." +msgstr "Revisado y verificado para cumplir con los requisitos de accesibilidad." + +#: admin/class-ignore-ui.php:82 +msgid "Username:" +msgstr "Nombre de usuario:" + +#: admin/class-ignore-ui.php:92 +msgid "Date:" +msgstr "Fecha:" + +#: admin/class-ignore-ui.php:97 +#: build/issueModal.bundle.js:2 +msgid "Reopen Issue" +msgstr "Reabrir problema" + +#: admin/class-ignore-ui.php:98 +#: build/issueModal.bundle.js:2 +msgid "Dismiss Issue" +msgstr "Descartar problema" + +#: admin/class-ignore-ui.php:119 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:142 +msgid "Comment" +msgstr "Comentario" + +#: admin/class-ignore-ui.php:126 +msgid "Manage Globally Dismissed" +msgstr "Gestionar descartados globalmente" + +#: admin/class-ignore-ui.php:134 +msgid "Your user account doesn't have permission to dismiss this issue." +msgstr "Su cuenta de usuario no tiene permiso para descartar este problema." + +#: admin/class-ignore-ui.php:156 +#: build/issueModal.bundle.js:2 +msgid "Dismiss issue as:" +msgstr "Descartar problema como:" + +#: admin/class-plugin-action-links.php:52 +#: includes/classes/class-admin-toolbar.php:98 +#: includes/options-page.php:72 msgid "Settings" msgstr "Ajustes" -#: admin/class-plugin-action-links.php:60 +#: admin/class-plugin-action-links.php:64 msgid "Get Accessibility Checker Pro, opens in new window" msgstr "Obtén Accessibility Checker Pro, se abre en una nueva ventana" -#: admin/class-plugin-row-meta.php:53 +#: admin/class-plugin-row-meta.php:57 msgid "View Accessibility Checker Documentation (opens in new window)" msgstr "Ver la documentación de Accessibility Checker (se abre en una nueva ventana)" -#: admin/class-plugin-row-meta.php:54 -#: admin/class-widgets.php:309 +#: admin/class-plugin-row-meta.php:58 +#: admin/class-widgets.php:318 msgid "Documentation" msgstr "Documentación" -#: admin/class-plugin-row-meta.php:59 +#: admin/class-plugin-row-meta.php:63 msgid "Get support for Accessibility Checker (opens in new window)" msgstr "Obtener soporte para Accessibility Checker (se abre en una nueva ventana)" -#: admin/class-plugin-row-meta.php:60 +#: admin/class-plugin-row-meta.php:64 msgid "Support" msgstr "Soporte" -#: admin/class-plugin-row-meta.php:65 +#: admin/class-plugin-row-meta.php:69 msgid "Rate Accessibility Checker plugin (opens in new window)" msgstr "Valorar el plugin Accessibility Checker (se abre en una nueva ventana)" -#: admin/class-plugin-row-meta.php:66 +#: admin/class-plugin-row-meta.php:70 msgid "Rate plugin" msgstr "Valorar plugin" -#: admin/class-upgrade-promotion.php:58 -msgid "Upgrade to Pro" -msgstr "Actualiza a pro" - -#: admin/class-upgrade-promotion.php:60 +#: admin/class-upgrade-promotion.php:64 msgid "Upgrade Sale Now" msgstr "Oferta de actualización ahora" -#: admin/class-upgrade-promotion.php:82 +#: admin/class-upgrade-promotion.php:86 msgid "Unable to redirect to upgrade page." msgstr "No se pudo redirigir a la página de actualización." -#: admin/class-welcome-page.php:38 +#: admin/class-welcome-page.php:68 msgid "Most Recent Test Summary" msgstr "Resumen del test más reciente" -#: admin/class-welcome-page.php:44 +#: admin/class-welcome-page.php:75 msgid "Update Counts" msgstr "Actualizar recuentos" -#: admin/class-welcome-page.php:48 +#: admin/class-welcome-page.php:80 msgid "Start New Scan" msgstr "Iniciar nuevo análisis" -#: admin/class-welcome-page.php:52 +#: admin/class-welcome-page.php:84 msgid "View All Open Issues" msgstr "Ver todos los problemas abiertos" -#: admin/class-welcome-page.php:57 +#: admin/class-welcome-page.php:89 msgid "See History" msgstr "Ver historial" -#: admin/class-welcome-page.php:70 -#: admin/class-widgets.php:98 -msgid "Passed Tests" -msgstr "Pruebas superadas" +#: admin/class-welcome-page.php:119 +msgid "Unique Problem" +msgid_plural "Unique Problems" +msgstr[0] "Problema único" +msgstr[1] "Problemas únicos" + +#: admin/class-welcome-page.php:145 +msgid "Unique Contrast Problem" +msgid_plural "Unique Contrast Problems" +msgstr[0] "Problema de contraste único" +msgstr[1] "Problemas de contraste únicos" -#: admin/class-welcome-page.php:86 -msgid "Unique Error" -msgid_plural "Unique Errors" -msgstr[0] "Error único" -msgstr[1] "Errores únicos" - -#: admin/class-welcome-page.php:111 -msgid "Unique Color Contrast Error" -msgid_plural "Unique Color Contrast Errors" -msgstr[0] "Error único de contraste de color" -msgstr[1] "Errores únicos de contraste de color" - -#: admin/class-welcome-page.php:136 -msgid "Unique Warning" -msgid_plural "Unique Warnings" -msgstr[0] "Advertencia única" -msgstr[1] "Advertencias únicas" - -#: admin/class-welcome-page.php:161 -msgid "Ignored Item" -msgid_plural "Ignored Items" -msgstr[0] "Elemento ignorado" -msgstr[1] "Elementos ignorados" - -#: admin/class-welcome-page.php:178 +#: admin/class-welcome-page.php:171 +msgid "Unique Item Needing Review" +msgid_plural "Unique Items Needing Review" +msgstr[0] "Elemento único que necesita revisión" +msgstr[1] "Elementos únicos que necesitan revisión" + +#: admin/class-welcome-page.php:214 msgid "Average Issues Per Page" msgstr "Promedio de problemas por página" -#: admin/class-welcome-page.php:191 +#: admin/class-welcome-page.php:227 msgid "Average Issue Density" msgstr "Densidad media de problemas" -#: admin/class-welcome-page.php:204 -#: admin/class-widgets.php:105 +#: admin/class-welcome-page.php:240 msgid "Report Last Updated:" msgstr "Informe actualizado por última vez:" -#: admin/class-welcome-page.php:214 -#: includes/options-page.php:408 +#: admin/class-welcome-page.php:250 +#: includes/options-page.php:619 msgid "Never" msgstr "Nunca" -#: admin/class-welcome-page.php:228 +#: admin/class-welcome-page.php:264 +#: admin/class-widgets.php:97 msgid "URLs Scanned" msgstr "URLs analizadas" #. translators: %1$s is the number of post types with issues, %2$s is the number of public post types. -#: admin/class-welcome-page.php:239 +#: admin/class-welcome-page.php:275 #, php-format msgid "%1$s of %2$s" msgstr "%1$s de %2$s" -#: admin/class-welcome-page.php:248 +#: admin/class-welcome-page.php:284 msgid "Post Types Checked" msgstr "Tipos de entradas comprobados" -#: admin/class-welcome-page.php:261 +#: admin/class-welcome-page.php:297 msgid "URLs with 100% score" msgstr "URLs con puntuación del 100%" -#: admin/class-welcome-page.php:269 +#: admin/class-welcome-page.php:305 msgid "This summary is automatically updated every 24 hours, or any time a full site scan is completed. You can also manually update these results by clicking the Update Counts button." msgstr "Este resumen se actualiza automáticamente cada 24 horas, o cada vez que se completa un análisis completo del sitio. También puedes actualizar manualmente estos resultados haciendo clic en el botón Actualizar recuentos." -#: admin/class-welcome-page.php:275 +#: admin/class-welcome-page.php:311 msgid "Your site has a large number of issues. For performance reasons, not all issues have been included in this summary." msgstr "Tu sitio tiene una gran cantidad de problemas. Por razones de rendimiento, no todos los problemas se han incluido en este resumen." -#: admin/class-welcome-page.php:285 +#: admin/class-welcome-page.php:321 msgid "Site-Wide Accessibility Reports" msgstr "Informes de accesibilidad de todo el sitio" -#: admin/class-welcome-page.php:290 +#: admin/class-welcome-page.php:326 msgid "Hide banner" msgstr "Ocultar banner" -#: admin/class-welcome-page.php:299 +#: admin/class-welcome-page.php:335 msgid "Unlock Detailed Accessibility Reports" msgstr "Desbloquea informes detallados de accesibilidad" -#: admin/class-welcome-page.php:302 -#: admin/class-widgets.php:71 +#: admin/class-welcome-page.php:338 +#: admin/class-widgets.php:75 msgid "Start scanning your entire website for accessibility issues, get full-site reports, and become compliant with accessibility guidelines faster." msgstr "Comienza a analizar todo tu sitio web en busca de problemas de accesibilidad, obtén informes completos del sitio y cumple más rápidamente con las pautas de accesibilidad." -#: admin/class-welcome-page.php:306 -#: admin/class-widgets.php:73 +#: admin/class-welcome-page.php:342 +#: admin/class-widgets.php:77 msgid "Upgrade Accessibility Checker" msgstr "Mejorar Accessibility Checker" -#: admin/class-widgets.php:69 +#: admin/class-widgets.php:73 msgid "close ad" msgstr "cerrar anuncio" -#: admin/class-widgets.php:70 +#: admin/class-widgets.php:74 msgid "Get Detailed Accessibility Reports" msgstr "Obtener informes detallados de accesibilidad" -#: admin/class-widgets.php:88 +#: admin/class-widgets.php:92 msgid "Full Site Accessibility Status" msgstr "Estado de accesibilidad de todo el sitio" -#: admin/class-widgets.php:113 -msgid "URLs Scanned:" -msgstr "URLs analizadas:" +#: admin/class-widgets.php:99 +msgid "Updated" +msgstr "Actualizado" #: admin/class-widgets.php:121 -msgid "Errors:" -msgstr "Errores:" +msgid "Problems:" +msgstr "Problemas:" -#: admin/class-widgets.php:125 -msgid "Color Contrast Errors:" -msgstr "Errores de contraste de color:" +#: admin/class-widgets.php:127 +msgid "Contrast Problems:" +msgstr "Problemas de contraste:" -#: admin/class-widgets.php:129 -msgid "Warnings:" -msgstr "Advertencias:" +#: admin/class-widgets.php:133 +msgid "Needs Review:" +msgstr "Necesita revisión:" -#: admin/class-widgets.php:144 +#: admin/class-widgets.php:148 msgid "Your site has accessibility issues that should be addressed as soon as possible to ensure compliance with accessibility guidelines." msgstr "Tu sitio tiene problemas de accesibilidad que deben abordarse lo antes posible para garantizar el cumplimiento de las pautas de accesibilidad." -#: admin/class-widgets.php:147 +#: admin/class-widgets.php:151 msgid "Way to go! Accessibility Checker cannot find any accessibility problems in the content it tested. Some problems cannot be found by automated tools so don't forget to" msgstr "¡Bien hecho! Accessibility Checker no puede encontrar ningún problema de accesibilidad en el contenido que ha probado. Algunas herramientas automáticas no pueden detectar ciertos problemas, así que no olvides" -#: admin/class-widgets.php:147 +#: admin/class-widgets.php:151 msgid "manually test your site" msgstr "probar manualmente tu sitio" -#: admin/class-widgets.php:162 +#: admin/class-widgets.php:166 msgid "Issues By Post Type" msgstr "Problemas por tipo de entrada" -#: admin/class-widgets.php:169 +#: admin/class-widgets.php:173 msgid "Post Type" msgstr "Tipo de entrada" -#: admin/class-widgets.php:172 -msgid "Errors" -msgstr "Errores" +#: admin/class-widgets.php:176 +#: build/sidebar.bundle.js:2 +msgid "Problems" +msgstr "Problemas" -#: admin/class-widgets.php:175 +#: admin/class-widgets.php:179 msgid "Contrast" msgstr "Contraste" -#: admin/class-widgets.php:178 -msgid "Warnings" -msgstr "Advertencias" +#: admin/class-widgets.php:251 +msgid "Upgrade to Scan (opens in a new window)" +msgstr "Actualizar a Escanear (se abre en una ventana nueva)" -#: admin/class-widgets.php:247 +#: admin/class-widgets.php:252 msgid "Upgrade to Scan" msgstr "Actualizar para analizar" -#: admin/class-widgets.php:276 +#: admin/class-widgets.php:282 msgid "See More Reports" msgstr "Ver más informes" -#: admin/class-widgets.php:286 -#: partials/welcome-page.php:235 +#: admin/class-widgets.php:294 +#: partials/welcome-page.php:243 msgid "Learn Accessibility" msgstr "Aprender sobre accesibilidad" -#: admin/class-widgets.php:307 +#: admin/class-widgets.php:316 msgid "Additional Resources" msgstr "Recursos adicionales" -#: admin/class-widgets.php:308 +#: admin/class-widgets.php:317 msgid "Blog (opens in a new window)" msgstr "Blog (se abre en una nueva ventana)" -#: admin/class-widgets.php:308 +#: admin/class-widgets.php:317 msgid "Blog" msgstr "Blog" -#: admin/class-widgets.php:309 +#: admin/class-widgets.php:318 msgid "Documentation (opens in a new window)" msgstr "Documentación (se abre en una nueva ventana)" -#: admin/opt-in/class-email-opt-in.php:115 +#: admin/opt-in/class-email-opt-in.php:119 msgid "Accessibility Events & News in Your Inbox" msgstr "Eventos y noticias de accesibilidad en tu bandeja de entrada" -#: admin/opt-in/class-email-opt-in.php:121 +#: admin/opt-in/class-email-opt-in.php:125 msgid "Subscribe to Equalize Digital's email list to get access to free accessibility webinars and training resources." msgstr "Suscríbete a la lista de correo electrónico de Equalize Digital para acceder a seminarios web gratuitos sobre accesibilidad y recursos de formación." -#: admin/opt-in/class-email-opt-in.php:127 +#: admin/opt-in/class-email-opt-in.php:131 msgid "Email*" msgstr "Email*" -#: admin/opt-in/class-email-opt-in.php:131 +#: admin/opt-in/class-email-opt-in.php:135 msgid "Type your email" msgstr "Escribe tu email" -#: admin/opt-in/class-email-opt-in.php:139 +#: admin/opt-in/class-email-opt-in.php:143 msgid "First Name" msgstr "Nombre" -#: admin/opt-in/class-email-opt-in.php:143 +#: admin/opt-in/class-email-opt-in.php:147 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:157 +#, 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" -#: admin/site-health/class-checks.php:44 +#: admin/site-health/class-checks.php:48 msgid "Accessibility issues" msgstr "Problemas de accesibilidad" -#: admin/site-health/class-checks.php:49 +#: admin/site-health/class-checks.php:53 msgid "Content checked for accessibility" msgstr "Contenido revisado para accesibilidad" -#: admin/site-health/class-checks.php:54 +#: admin/site-health/class-checks.php:58 msgid "Post types configured for accessibility checks" msgstr "Tipos de publicación configurados para comprobaciones de accesibilidad" -#: admin/site-health/class-checks.php:69 +#: admin/site-health/class-checks.php:73 msgid "Accessibility" msgstr "Accesibilidad" -#: admin/site-health/class-checks.php:96 +#: admin/site-health/class-checks.php:100 msgid "View Issues" msgstr "Ver problemas" -#: admin/site-health/class-checks.php:103 +#: admin/site-health/class-checks.php:107 msgid "View Accessibility Checker" msgstr "Ver Accessibility Checker" -#: admin/site-health/class-checks.php:122 +#: admin/site-health/class-checks.php:126 msgid "Accessibility issues detected" msgstr "Problemas de accesibilidad detectados" #. translators: 1: error count, 2: warning count. -#: admin/site-health/class-checks.php:125 +#: admin/site-health/class-checks.php:129 #, php-format msgid "Accessibility Checker has detected %1$s errors and %2$s warnings." msgstr "Accessibility Checker ha detectado %1$s errores y %2$s advertencias." -#: admin/site-health/class-checks.php:141 +#: admin/site-health/class-checks.php:145 msgid "No accessibility issues detected" msgstr "No se han detectado problemas de accesibilidad" -#: admin/site-health/class-checks.php:142 +#: admin/site-health/class-checks.php:146 msgid "Accessibility Checker has not found any issues in scanned content." msgstr "Accessibility Checker no ha encontrado ningún problema en el contenido analizado." -#: admin/site-health/class-checks.php:160 +#: admin/site-health/class-checks.php:164 msgid "Content has not been checked" msgstr "El contenido no ha sido revisado" -#: admin/site-health/class-checks.php:161 +#: admin/site-health/class-checks.php:165 msgid "No posts have been scanned yet. Run a full site scan to begin checking your content for accessibility issues." msgstr "Aún no se ha analizado ninguna publicación. Ejecuta un análisis completo del sitio para empezar a comprobar problemas de accesibilidad en tu contenido." -#: admin/site-health/class-checks.php:165 +#: admin/site-health/class-checks.php:169 msgid "Start full site scan" msgstr "Iniciar análisis completo del sitio" -#: admin/site-health/class-checks.php:174 +#: admin/site-health/class-checks.php:178 msgid "Content is being checked for accessibility" msgstr "El contenido está siendo revisado para accesibilidad" #. translators: %s is the number of posts scanned. -#: admin/site-health/class-checks.php:177 +#: admin/site-health/class-checks.php:181 #, php-format msgid "Accessibility Checker has scanned %s post for accessibility issues." msgid_plural "Accessibility Checker has scanned %s posts for accessibility issues." -msgstr[0] "Accessibility Checker ha analizado %s publicación en busca de problemas de accesibilidad." +msgstr[0] "Accessibility Checker ha escaneado %s entrada en busca de problemas de accesibilidad." msgstr[1] "Accessibility Checker ha analizado %s publicaciones en busca de problemas de accesibilidad." -#: admin/site-health/class-checks.php:196 +#: admin/site-health/class-checks.php:200 msgid "No post types selected for accessibility checking" msgstr "No hay tipos de publicación seleccionados para la comprobación de accesibilidad" -#: admin/site-health/class-checks.php:197 +#: admin/site-health/class-checks.php:201 msgid "Accessibility Checker cannot scan any content because no post types have been selected. Without configured post types, no accessibility issues will be detected." msgstr "Accessibility Checker no puede analizar ningún contenido porque no se han seleccionado tipos de publicación. Sin tipos de publicación configurados, no se detectarán problemas de accesibilidad." -#: admin/site-health/class-checks.php:201 +#: admin/site-health/class-checks.php:205 msgid "Configure post types" msgstr "Configurar tipos de publicación" -#: admin/site-health/class-checks.php:213 +#: admin/site-health/class-checks.php:217 msgid "Post types are configured for accessibility checking" msgstr "Los tipos de publicación están configurados para la comprobación de accesibilidad" #. translators: 1: number of post types, 2: comma-separated list of post type names. -#: admin/site-health/class-checks.php:216 +#: admin/site-health/class-checks.php:220 #, php-format msgid "Accessibility Checker is configured to scan %1$s post type: %2$s." msgid_plural "Accessibility Checker is configured to scan %1$s post types: %2$s." msgstr[0] "Accessibility Checker está configurado para analizar %1$s tipo de publicación: %2$s." -msgstr[1] "Accessibility Checker está configurado para analizar %1$s tipos de publicación: %2$s." +msgstr[1] "Accessibility Checker está configurado para escanear %1$s tipos de entrada: %2$s." #: admin/site-health/class-free.php:46 msgid "Accessibility Checker — Free" @@ -774,7 +1353,7 @@ msgid "Disabled" msgstr "Deshabilitado" #: admin/site-health/class-free.php:69 -#: includes/options-page.php:137 +#: includes/options-page.php:203 msgid "Delete Data" msgstr "Eliminar datos" @@ -831,405 +1410,442 @@ msgid "Simplified Sum Heading" msgstr "Encabezado del resumen simplificado" #: admin/site-health/class-pro.php:74 +#: includes/options-page.php:194 msgid "Ignore Permissions" msgstr "Permisos de ignorar" -#: admin/site-health/class-pro.php:75 -msgid "None" -msgstr "Ninguno" - #: admin/site-health/class-pro.php:78 msgid "Ignores DB Table Count" msgstr "Recuento de tablas de la base de datos de elementos ignorados" #. translators: %1$s is the site name, %2$s is a link with the plugin name. -#: includes/classes/class-accessibility-statement.php:45 +#: includes/classes/class-accessibility-statement.php:49 #, php-format msgid "%1$s uses %2$s to monitor our website's accessibility." msgstr "%1$s usa %2$s para monitorizar la accesibilidad de nuestro sitio web." -#: includes/classes/class-accessibility-statement.php:50 +#: includes/classes/class-accessibility-statement.php:54 msgid "Accessibility Checker (opens in a new window)" msgstr "Accessibility Checker (se abre en una nueva ventana)" #. translators: %1$s is a link to the accessibility policy page, with text "Accessibility Policy". -#: includes/classes/class-accessibility-statement.php:59 +#: includes/classes/class-accessibility-statement.php:63 #, php-format msgid "Read our %s" msgstr "Lee nuestra %s" -#: includes/classes/class-accessibility-statement.php:60 +#: includes/classes/class-accessibility-statement.php:64 msgid "Accessibility Policy" msgstr "Política de accesibilidad" -#: includes/classes/class-admin-toolbar.php:115 -#: partials/pro-callout.php:47 -#: partials/welcome-page.php:215 +#: includes/classes/class-admin-toolbar.php:119 +#: partials/pro-callout.php:51 +#: partials/welcome-page.php:219 msgid "Get Accessibility Checker Pro" msgstr "Obtener Accessibility Checker Pro" -#: includes/classes/class-admin-toolbar.php:120 +#: includes/classes/class-admin-toolbar.php:124 msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Obtén Accessibility Checker Pro (se abre en una nueva ventana)" -#: includes/classes/class-simplified-summary.php:73 -msgid "Simplified Summary" -msgstr "Resumen simplificado" +#: includes/classes/class-rest-api.php:1230 +msgid "Issue not found." +msgstr "Problema no encontrado." + +#: includes/classes/class-rest-api.php:1273 +msgid "Failed to update the issue." +msgstr "No se pudo actualizar el problema." -#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:34 +#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:45 msgid "Add Size & Type To File Links" msgstr "Añadir tamaño y tipo a los enlaces de archivos" -#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:43 +#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:54 msgid "Add Context to Linked Files" msgstr "Añadir contexto a los archivos enlazados" -#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:76 +#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:87 msgid "Add File Size & Type To Links" msgstr "Añadir tamaño y tipo de archivo a los enlaces" -#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:78 +#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:89 msgid "Add the file size and type to linked files that may trigger a download." msgstr "Añade el tamaño y tipo de archivo a los enlaces de archivos que puedan iniciar una descarga." -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:34 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:45 msgid "Add Labels to Unlabelled Form Fields" msgstr "Añadir etiquetas a los campos de formulario sin etiquetar" -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:43 -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:66 -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:89 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:54 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:77 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:100 msgid "Label Form Fields" msgstr "Etiquetar campos de formulario" -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:92 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:103 msgid "Add labels to unlabelled form fields if field purpose can be determined." msgstr "Añadir etiquetas a los campos de formulario sin etiquetar si se puede determinar el propósito del campo." #. translators: %1$s: a CSS class name wrapped in a tag. -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:123 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:134 #, php-format msgid "Attempt to add labels to form fields that are missing them. Note: You may need to add custom styles targeting the %1$s class if adding labels affects your form layouts." msgstr "Intenta añadir etiquetas a los campos de formulario que carecen de ellas. Nota: Es posible que necesites añadir estilos personalizados dirigidos a la clase %1$s si la adición de etiquetas afecta al diseño de tus formularios." -#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:34 +#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:45 msgid "Add Missing or Empty Page Titles" msgstr "Añadir títulos de página faltantes o vacíos" -#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:43 +#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:54 msgid "Set Page HTML Titles" msgstr "Establecer títulos HTML de página" -#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:77 +#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:88 msgid "Add Missing Page Title" msgstr "Añadir título de página faltante" #. translators: %1$s: a code tag with a title tag. -#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:80 +#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:91 #, php-format msgid "Add a %1$s tag to the page if it's missing or empty." msgstr "Añade una etiqueta %1$s a la página si falta o está vacía." -#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:34 +#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:38 msgid "Add warning when link opens new tab/window" msgstr "Añadir advertencia cuando un enlace abre una nueva pestaña/ventana" -#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:68 +#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:72 msgid "Add Label To Links That Open A New Tab/Window" msgstr "Añadir etiqueta a los enlaces que abren una nueva pestaña/ventana" #. translators: %1%s: A tag containing target="_blank". -#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:73 +#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:77 #, php-format msgid "Add a label and icon to links with %1$s informing users they will open a new tab/window. %2$sNote: This setting will have no effect if the \"Block Links Opening New Windows\" fix is enabled.%3$s" msgstr "Añade una etiqueta y un icono a los enlaces con %1$s informando a los usuarios que abrirán una nueva pestaña/ventana. %2$sNota: Esta configuración no tendrá efecto si la corrección “Bloquear enlaces que abren nuevas ventanas” está activada.%3$s" -#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:36 -#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:68 +#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:117 +#: build/pageScanner.bundle.js:2 +msgid "opens a new window" +msgstr "abre una nueva ventana" + +#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:47 +#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:79 msgid "Block PDF Uploads" msgstr "Bloquear subidas de PDF" #. translators: %1$s: a code tag with the capability name. -#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:72 +#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:83 #, php-format msgid "Restrict PDF uploads for users without the %1$s capability (allowed for admins by default)." msgstr "Restringir las subidas de PDF para usuarios sin la capacidad %1$s (permitido para administradores por defecto)." -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:34 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:38 msgid "Add Labels to Comment and Search Forms" msgstr "Añadir etiquetas a los formularios de comentarios y búsqueda" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:43 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:47 msgid "Label Comment/Search Fields" msgstr "Etiquetar campos de comentarios/búsqueda" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:66 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:70 msgid "Comment and Search Form Labels" msgstr "Etiquetas de formularios de comentarios y búsqueda" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:67 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:71 msgid "Add missing labels to WordPress comment and search forms." msgstr "Añadir etiquetas faltantes a los formularios de comentarios y búsqueda de WordPress." -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:90 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:94 msgid "Label Comment Form" msgstr "Etiquetar formulario de comentarios" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:93 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:97 msgid "Add missing labels to the WordPress comment form." msgstr "Añadir etiquetas faltantes al formulario de comentarios de WordPress." -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:101 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:105 msgid "Label Search Form" msgstr "Etiquetar formulario de búsqueda" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:104 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:108 msgid "Add a missing label to the WordPress search form." msgstr "Añadir una etiqueta faltante al formulario de búsqueda de WordPress." -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:138 -msgid "Comment" -msgstr "Comentario" - -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:143 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:147 msgid "Name" msgstr "Nombre" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:148 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:152 msgid "Email" msgstr "Email" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:153 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:157 msgid "Website" msgstr "Sitio web" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:177 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:181 msgid "Search …" msgstr "Buscar …" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:182 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:186 msgid "Search for:" msgstr "Buscar:" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:184 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:188 msgid "Search" msgstr "Buscar" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:198 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:202 msgid "Settings to add missing labels to WordPress comment and search forms." msgstr "Ajustes para añadir etiquetas faltantes a los formularios de comentarios y búsqueda de WordPress." -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:33 +#: includes/classes/Fixes/Fix/EmptySearchFix.php:42 +#: includes/classes/Fixes/Fix/EmptySearchFix.php:88 +msgid "Force Error on Empty Search" +msgstr "Forzar error en búsqueda vacía" + +#: includes/classes/Fixes/Fix/EmptySearchFix.php:65 +msgid "Empty Search Handling" +msgstr "Gestión de búsquedas vacías" + +#: includes/classes/Fixes/Fix/EmptySearchFix.php:91 +msgid "When a search is submitted with an empty query, force WordPress to display the search results template so users see a meaningful response. This assumes the active theme has a search.php template." +msgstr "Cuando se envía una búsqueda con una consulta vacía, forzar a WordPress a mostrar la plantilla de resultados de búsqueda para que los usuarios vean una respuesta significativa. Esto asume que el tema activo tiene una plantilla search.php." + +#: includes/classes/Fixes/Fix/EmptySearchFix.php:107 +msgid "Force WordPress to show a search results page when a search is submitted with an empty query." +msgstr "Forzar a WordPress a mostrar una página de resultados de búsqueda cuando se envía una búsqueda con una consulta vacía." + +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:37 msgid "Add Focus Outlines" msgstr "Añadir contornos de enfoque" -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:56 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:60 msgid "Focus Outline" msgstr "Contorno de enfoque" -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:57 -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:83 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:61 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:87 msgid "Add an outline to elements when they receive keyboard focus." msgstr "Añadir un contorno a los elementos cuando reciben el enfoque del teclado." -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:81 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:85 msgid "Add Focus Outline" msgstr "Añadir contorno de enfoque" -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:112 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:116 msgid "Settings related to enhancing focus outlines for better keyboard accessibility." msgstr "Ajustes relacionados con la mejora de los contornos de enfoque para una mejor accesibilidad del teclado." -#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:33 +#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:37 msgid "Add lang & dir Attributes" msgstr "Añadir atributos lang y dir" -#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:42 +#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:46 msgid "Set Page Language" msgstr "Establecer el idioma de la página" -#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:76 +#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:80 msgid "Add \"lang\" & \"dir\" Attributes" msgstr "Añadir atributos “lang” y “dir”" #. translators: %1$s: a attribute name wrapped in a tag. %2$s: dir attribute %3$s: html element. -#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:79 +#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:83 #, php-format msgid "Add the site language (%1$s) and text direction (%2$s) attributes to the %3$s element." msgstr "Añadir los atributos de idioma del sitio (%1$s) y dirección del texto (%2$s) al elemento %3$s." -#: includes/classes/Fixes/Fix/LinkUnderline.php:33 +#: includes/classes/Fixes/Fix/LinkUnderline.php:37 msgid "Add Underlines to all non-nav Links" msgstr "Añadir subrayados a todos los enlaces que no sean de navegación" -#: includes/classes/Fixes/Fix/LinkUnderline.php:42 +#: includes/classes/Fixes/Fix/LinkUnderline.php:46 msgid "Underline Links" msgstr "Subrayar enlaces" -#: includes/classes/Fixes/Fix/LinkUnderline.php:76 +#: includes/classes/Fixes/Fix/LinkUnderline.php:80 msgid "Force Link Underline" msgstr "Forzar subrayado de enlaces" -#: includes/classes/Fixes/Fix/LinkUnderline.php:78 +#: includes/classes/Fixes/Fix/LinkUnderline.php:82 msgid "Ensure that non-navigation links are underlined." msgstr "Asegurar que los enlaces que no son de navegación estén subrayados." -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:34 +#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:38 msgid "Make Meta Viewport Tag Scalable" msgstr "Hacer que la etiqueta meta viewport sea escalable" -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:57 -msgid "Ensure scalable viewport" -msgstr "Asegurar un viewport escalable" - -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:58 -msgid "Make sure that the viewport tag on the page allows scaling." -msgstr "Asegurarse de que la etiqueta viewport en la página permita el escalado." - -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:81 +#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:71 msgid "Make Viewport Scalable" msgstr "Hacer el viewport escalable" -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:84 +#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:74 msgid "Ensure the viewport tag allows for scaling, enhancing accessibility on mobile devices." msgstr "Asegurar que la etiqueta viewport permita el escalado, mejorando la accesibilidad en dispositivos móviles." -#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:34 +#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:38 msgid "Prevent Links Opening New Windows" msgstr "Evitar que los enlaces abran nuevas ventanas" -#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:68 +#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:72 msgid "Block Links Opening New Windows" msgstr "Bloquear enlaces que abran nuevas ventanas" #. translators: %1%s: A tag containing target="_blank". -#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:73 +#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:77 #, php-format msgid "Prevent links from opening in a new window or tab by removing %1$s." msgstr "Evitar que los enlaces se abran en una nueva ventana o pestaña eliminando %1$s." -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:34 -msgid "Add \"Read\" Link with Post Title" -msgstr "Añadir enlace “Leer” con el título del post" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:43 -msgid "Add Title to Read More Link" -msgstr "Añadir título al enlace leer más" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:66 -msgid "Read More links" -msgstr "Enlaces Leer más" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:67 -msgid "Add the post title and links " -msgstr "Añadir el título del post y enlaces " - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:91 -msgid "Add Post Title To \"Read More\"" -msgstr "Añadir título del post a “Leer más”" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:93 -msgid "Add the post title to \"Read More\" links in post lists when your theme outputs those links." -msgstr "Añadir el título del post a los enlaces “Leer más” en las listas de posts cuando tu tema muestra esos enlaces." - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:102 -msgid "For Screen Readers Only" -msgstr "Solo para lectores de pantalla" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:104 -msgid "Makes the post title added to \"Read More\" links visible only to screen readers." -msgstr "Hace que el título del post añadido a los enlaces “Leer más” sea visible solo para lectores de pantalla." - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:235 -msgid "This fix adds the post title to the \"Read More\" links in post lists at the \"More\" block and in excerpts." -msgstr "Esta corrección añade el título del post a los enlaces “Leer más” en las listas de posts en el bloque “Más” y en los extractos." - -#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:33 +#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:37 msgid "Prefer Accessible Label Attribute" msgstr "Preferir atributo de etiqueta accesible" -#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:42 +#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:46 msgid "Remove Unnecessary Title Attributes" msgstr "Eliminar atributos title innecesarios" -#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:76 +#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:80 msgid "Remove Title Attributes" msgstr "Eliminar atributos title" #. translators: %1$s: a attribute name wrapped in a tag. -#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:79 +#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:83 #, php-format msgid "Remove %1$s attributes from elements that already have a preferred accessible name." msgstr "Eliminar atributos %1$s de elementos que ya tienen un nombre accesible preferido." -#: includes/classes/Fixes/Fix/SkipLinkFix.php:34 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:38 msgid "Add Skip Links" msgstr "Añadir enlaces de salto" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:57 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:61 msgid "Skip Link" msgstr "Enlace de salto" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:81 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:85 msgid "Enable Skip Link" msgstr "Habilitar enlace de salto" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:84 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:88 msgid "Add a skip link to all site pages, allowing users to skip directly to the main content." msgstr "Añadir un enlace de salto a todas las páginas del sitio, permitiendo a los usuarios saltar directamente al contenido principal." -#: includes/classes/Fixes/Fix/SkipLinkFix.php:92 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:96 msgid "Main Content Target (required)" msgstr "Objetivo del contenido principal (obligatorio)" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:95 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:99 msgid "Define the ID(s) of the main content area(s) to be targeted by skip links. Enter multiple IDs separated by commas; the system will cascade through the list to find the appropriate one for each page." msgstr "Define el ID o IDs de las áreas de contenido principal a las que se dirigirán los enlaces de salto. Introduce múltiples IDs separados por comas; el sistema recorrerá la lista para encontrar el apropiado para cada página." -#: includes/classes/Fixes/Fix/SkipLinkFix.php:104 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:108 msgid "Navigation Target" msgstr "Objetivo de navegación" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:107 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:111 msgid "Set the ID attribute of the navigation element. This is useful if your main navigation contains actions that most site visitors would want to take such as login or search features." msgstr "Establece el atributo ID del elemento de navegación. Esto es útil si tu navegación principal contiene acciones que la mayoría de los visitantes del sitio querrían realizar, como funciones de inicio de sesión o búsqueda." #. translators: %1$s: opening anchor tag, %2$s: closing anchor tag. -#: includes/classes/Fixes/Fix/SkipLinkFix.php:236 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:240 #, php-format msgid "If your theme is not already adding a skip link that allows keyboard users to bypass the navigation and quickly jump to the main content, enable skip links here. %1$sLearn more about skip links.%2$s" msgstr "Si tu tema aún no está añadiendo un enlace de salto que permita a los usuarios de teclado omitir la navegación y saltar rápidamente al contenido principal, habilita los enlaces de salto aquí. %1$sMás información sobre los enlaces de salto.%2$s" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:263 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:267 msgid "Skip to content" msgstr "Saltar al contenido" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:272 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:276 msgid "Skip to navigation" msgstr "Saltar a la navegación" -#: includes/classes/Fixes/Fix/TabindexFix.php:33 +#: includes/classes/Fixes/Fix/TabindexFix.php:37 msgid "Remove Tabindex from Focusable Elements" msgstr "Eliminar tabindex de elementos enfocables" -#: includes/classes/Fixes/Fix/TabindexFix.php:67 +#: includes/classes/Fixes/Fix/TabindexFix.php:71 msgid "Remove Tab Index" msgstr "Eliminar índice de tabulación" #. translators: %1$s: a attribute name wrapped in a tag. -#: includes/classes/Fixes/Fix/TabindexFix.php:70 +#: includes/classes/Fixes/Fix/TabindexFix.php:74 #, php-format msgid "Remove the %1$s attribute from focusable elements." msgstr "Eliminar el atributo %1$s de elementos enfocables." -#: includes/classes/Fixes/FixesManager.php:241 +#: includes/classes/Fixes/FixesManager.php:252 msgid "Note: This setting is not recommended for themes that are already accessibility-ready." msgstr "Nota: Esta configuración no se recomienda para temas que ya están preparados para la accesibilidad." -#: includes/classes/Fixes/FixesManager.php:294 +#: includes/classes/Fixes/FixesManager.php:322 msgid "Fix not found" msgstr "Corrección no encontrada" +#: includes/classes/Fixes/FixesManager.php:358 +msgid "Fix not found." +msgstr "Solución no encontrada." + +#: includes/classes/MyDot/Connector.php:202 +msgid "You do not have permission to manage this license." +msgstr "No tiene permiso para gestionar esta licencia." + +#: includes/classes/MyDot/Connector.php:238 +msgid "Pro license is active. Please deactivate the Pro license first if you want to use a free license." +msgstr "La licencia Pro está activa. Desactive primero la licencia Pro si desea utilizar una licencia gratuita." + +#: includes/classes/MyDot/Connector.php:268 +msgid "An error occurred, please try again." +msgstr "Ha ocurrido un error, por favor, inténtelo de nuevo." + +#: includes/classes/MyDot/Connector.php:557 +msgid "You do not have permission to register this site." +msgstr "No tiene permiso para registrar este sitio." + +#: includes/classes/MyDot/Connector.php:578 +msgid "You do not have permission to unregister this site." +msgstr "No tiene permiso para anular el registro de este sitio." + +#: includes/classes/MyDot/Connector.php:604 +msgid "No license key found. Please activate a license before registering your site." +msgstr "No se encontró ninguna clave de licencia. Por favor, active una licencia antes de registrar su sitio." + +#: includes/classes/MyDot/Connector.php:615 +#: includes/classes/MyDot/Connector.php:822 +msgid "Unknown error occurred while registering the site." +msgstr "Se produjo un error desconocido al registrar el sitio." + +#: includes/classes/MyDot/Connector.php:644 +msgid "Site registered successfully. Your site is now configured to use additional accessibility services." +msgstr "Sitio registrado correctamente. Su sitio está ahora configurado para utilizar servicios de accesibilidad adicionales." + +#: includes/classes/MyDot/Connector.php:654 +msgid "Site registration completed, but the response data was not in the expected format. Some features may not work correctly." +msgstr "El registro del sitio se completó, pero los datos de respuesta no tenían el formato esperado. Es posible que algunas funciones no funcionen correctamente." + +#: includes/classes/MyDot/Connector.php:730 +msgid "Unable to unregister site. Required registration data is missing." +msgstr "No se pudo anular el registro del sitio. Faltan los datos de registro necesarios." + +#: includes/classes/MyDot/Connector.php:747 +#: includes/classes/MyDot/Connector.php:880 +msgid "Unknown error occurred while unregistering the site." +msgstr "Se produjo un error desconocido al anular el registro del sitio." + +#: includes/classes/MyDot/Connector.php:762 +msgid "Site unregistered successfully. Your site will no longer receive email reports." +msgstr "Sitio dado de baja correctamente. Su sitio ya no recibirá informes por correo electrónico." + +#: includes/classes/MyDot/Connector.php:785 +msgid "No license key provided." +msgstr "No se proporcionó ninguna clave de licencia." + +#: includes/classes/MyDot/Connector.php:843 +msgid "Missing required parameters for unregistration." +msgstr "Faltan parámetros obligatorios para la anulación del registro." + #: includes/classes/Rules/AffectedDisabilities.php:50 msgid "Blind" msgstr "Ciego" @@ -1271,18 +1887,18 @@ msgid "Hard of hearing" msgstr "Con dificultades auditivas" #: includes/classes/Rules/AffectedDisabilities.php:70 -#: includes/wcag.php:52 -#: includes/wcag.php:85 -#: includes/wcag.php:118 -#: includes/wcag.php:151 -#: includes/wcag.php:251 -#: includes/wcag.php:269 -#: includes/wcag.php:1661 -#: includes/wcag.php:1695 -#: includes/wcag.php:1728 -#: includes/wcag.php:1748 -#: includes/wcag.php:1767 -#: includes/wcag.php:1786 +#: includes/wcag.php:56 +#: includes/wcag.php:89 +#: includes/wcag.php:122 +#: includes/wcag.php:155 +#: includes/wcag.php:255 +#: includes/wcag.php:273 +#: includes/wcag.php:1665 +#: includes/wcag.php:1699 +#: includes/wcag.php:1732 +#: includes/wcag.php:1752 +#: includes/wcag.php:1771 +#: includes/wcag.php:1790 msgid "Language learners" msgstr "Estudiantes de idiomas" @@ -2625,1706 +3241,1786 @@ msgid "W3C: Understanding Guideline 1.2" msgstr "W3C: Entendiendo la Pauta 1.2" #. translators: 1: a php classname, 2: an error message that was thrown about why this failed to register. -#: includes/classes/WPCLI/BootstrapCLI.php:101 +#: includes/classes/WPCLI/BootstrapCLI.php:113 #, php-format msgid "Failed to register command %1$s because %2$s" msgstr "No se pudo registrar el comando %1$s porque %2$s" -#: includes/classes/WPCLI/Command/DeleteStats.php:61 +#: includes/classes/WPCLI/Command/CleanupOrphanedIssues.php:73 +msgid "Number of orphaned posts to process in one batch." +msgstr "Número de entradas huérfanas a procesar en un lote." + +#: includes/classes/WPCLI/Command/CleanupOrphanedIssues.php:80 +msgid "Seconds to sleep between deletions (default: 0)." +msgstr "Segundos de espera entre eliminaciones (predeterminado: 0)." + +#: includes/classes/WPCLI/Command/DeleteStats.php:72 msgid "The ID of the post to delete stats for." msgstr "El ID de la entrada para la que se eliminarán las estadísticas." -#: includes/classes/WPCLI/Command/DeleteStats.php:83 +#: includes/classes/WPCLI/Command/DeleteStats.php:94 msgid "No Post ID provided." msgstr "No se proporcionó ID de entrada." #. translators: 1: a post ID. -#: includes/classes/WPCLI/Command/DeleteStats.php:92 +#: includes/classes/WPCLI/Command/DeleteStats.php:103 #, php-format msgid "Post ID %1$s does not exist." msgstr "El ID de entrada %1$s no existe." #. translators: 1: a post ID. -#: includes/classes/WPCLI/Command/DeleteStats.php:103 +#: includes/classes/WPCLI/Command/DeleteStats.php:114 #, php-format msgid "Stats of %1$s deleted." msgstr "Estadísticas de %1$s eliminadas." -#: includes/classes/WPCLI/Command/GetSiteStats.php:67 +#: includes/classes/WPCLI/Command/GetSiteStats.php:78 msgid "Keys to show in the results. Defaults to all keys." msgstr "Claves para mostrar en los resultados. Por defecto, todas las claves." -#: includes/classes/WPCLI/Command/GetSiteStats.php:75 +#: includes/classes/WPCLI/Command/GetSiteStats.php:86 msgid "Clear the cache before retrieving the stats (can be intensive)." msgstr "Limpiar la caché antes de recuperar las estadísticas (puede ser intensivo)." #. translators: 1: a stat key that was requested but not found. -#: includes/classes/WPCLI/Command/GetSiteStats.php:111 +#: includes/classes/WPCLI/Command/GetSiteStats.php:122 #, php-format msgid "Stat key: %1$s not found in stats." msgstr "Clave de estadística: %1$s no encontrada en las estadísticas." -#: includes/classes/WPCLI/Command/GetStats.php:85 +#: includes/classes/WPCLI/Command/GetStats.php:96 msgid "The ID of the post to get stats for." msgstr "El ID de la entrada para la que se obtendrán las estadísticas." #. translators: 1: a post ID. -#: includes/classes/WPCLI/Command/GetStats.php:126 +#: includes/classes/WPCLI/Command/GetStats.php:137 #, php-format msgid "Post ID %1$d does not exist." msgstr "El ID de entrada %1$d no existe." #. translators: 1: a post ID. -#: includes/classes/WPCLI/Command/GetStats.php:142 +#: includes/classes/WPCLI/Command/GetStats.php:153 #, php-format msgid "Either the post is not yet scanned or all tests passed for post ID %1$d." msgstr "O bien la entrada aún no ha sido escaneada o todas las pruebas pasaron para el ID de entrada %1$d." -#: includes/helper-functions.php:25 +#: includes/helper-functions.php:31 msgid "permalink of " msgstr "enlace permanente de " -#: includes/helper-functions.php:26 +#: includes/helper-functions.php:32 msgid "permalink to " msgstr "enlace permanente a " -#: includes/helper-functions.php:27 +#: includes/helper-functions.php:33 msgid " " msgstr " " -#: includes/helper-functions.php:339 +#: includes/helper-functions.php:409 msgid "Attend Free" msgstr "Asistir gratis" +#: includes/helper-functions.php:415 +#: partials/welcome-page.php:88 +#: partials/welcome-page.php:93 +#: partials/welcome-page.php:98 +#: partials/welcome-page.php:103 +#: partials/welcome-page.php:108 +#: partials/welcome-page.php:113 +#: partials/welcome-page.php:118 +#: partials/welcome-page.php:124 +#: partials/welcome-page.php:220 +msgid "(opens in a new window)" +msgstr "(se abre en una nueva ventana)" + #. translators: %s is the landmark type (e.g., "Header", "Navigation", "Main"). -#: includes/helper-functions.php:782 -#, php-format +#: includes/helper-functions.php:861 +#: build/issueModal.bundle.js:2 +#, php-format,js-format msgid "View %s landmark on website, opens a new window" msgstr "Ver %s punto de referencia en el sitio web, se abre una nueva ventana" -#: includes/options-page.php:42 +#: includes/options-page.php:48 msgid "Welcome to Accessibility Checker" msgstr "Bienvenido a Accessibility Checker" -#: includes/options-page.php:65 +#: includes/options-page.php:71 msgid "Accessibility Checker Settings" msgstr "Configuración de Accessibility Checker" -#: includes/options-page.php:99 -msgid "General Settings" -msgstr "Ajustes generales" +#: includes/options-page.php:115 +msgid "Scan Settings" +msgstr "Configuración de escaneo" + +#: includes/options-page.php:122 +msgid "Permissions" +msgstr "Permisos" -#: includes/options-page.php:106 +#: includes/options-page.php:129 msgid "Simplified Summary Settings" msgstr "Ajustes de resumen simplificado" -#: includes/options-page.php:113 +#: includes/options-page.php:136 msgid "Footer Accessibility Statement" msgstr "Declaración de accesibilidad del pie de página" -#: includes/options-page.php:120 +#: includes/options-page.php:143 msgid "Frontend Accessibility Checker" msgstr "Accessibility Checker en el frontend" -#: includes/options-page.php:128 +#: includes/options-page.php:150 +msgid "System Settings" +msgstr "Configuración del sistema" + +#: includes/options-page.php:158 msgid "Post Types To Be Checked" msgstr "Tipos de entrada a comprobar" -#: includes/options-page.php:146 +#: includes/options-page.php:167 +msgid "Scan Speed" +msgstr "Velocidad de escaneo" + +#: includes/options-page.php:176 +msgid "Archive Scanning" +msgstr "Escaneo de archivos" + +#: includes/options-page.php:185 +msgid "Taxonomy Scanning" +msgstr "Escaneo de taxonomías" + +#: includes/options-page.php:212 +msgid "Block Editor Metabox" +msgstr "Metabox del editor de bloques" + +#: includes/options-page.php:221 msgid "Prompt for Simplified Summary" msgstr "Solicitar resumen simplificado" -#: includes/options-page.php:155 +#: includes/options-page.php:230 msgid "Simplified Summary Position" msgstr "Posición del resumen simplificado" -#: includes/options-page.php:164 -#: includes/options-page.php:533 +#: includes/options-page.php:239 +msgid "Simplified Summary Heading" +msgstr "Encabezado de resumen simplificado" + +#: includes/options-page.php:248 +#: includes/options-page.php:752 msgid "Add Footer Accessibility Statement" msgstr "Añadir declaración de accesibilidad en el pie de página" -#: includes/options-page.php:173 -#: includes/options-page.php:556 +#: includes/options-page.php:257 +#: includes/options-page.php:775 msgid "Include Link to Accessibility Policy" msgstr "Incluir enlace a la política de accesibilidad" -#: includes/options-page.php:182 +#: includes/options-page.php:266 msgid "Accessibility Policy page" msgstr "Página de política de accesibilidad" -#: includes/options-page.php:191 +#: includes/options-page.php:275 msgid "Accessibility Statement Preview" msgstr "Vista previa de la declaración de accesibilidad" -#: includes/options-page.php:200 +#: includes/options-page.php:283 msgid "Frontend Accessibility Checker Position" msgstr "Posición de Accessibility Checker en el frontend" -#. translators: %1$s: link to the plugin documentation website. -#: includes/options-page.php:244 -#, php-format -msgid "Use the settings below to configure Accessibility Checker. Additional information about each setting can be found in the %1$s." -msgstr "Utiliza la configuración a continuación para configurar Accessibility Checker. Puedes encontrar información adicional sobre cada ajuste en el %1$s." - -#: includes/options-page.php:245 -msgid "plugin documentation (opens in a new window)" -msgstr "documentación del plugin (se abre en una nueva ventana)" - -#: includes/options-page.php:245 -msgid "plugin documentation" -msgstr "documentación del plugin" +#: includes/options-page.php:333 +msgid "Configure the types of content that should be checked for accessibility issues." +msgstr "Configura los tipos de contenido que deben comprobarse para detectar problemas de accesibilidad." #. translators: %1$s: link to the "Accessibility Checker Pro" website. -#: includes/options-page.php:251 +#: includes/options-page.php:338 #, php-format msgid "More features and email support is available with %1$s." msgstr "Más funciones y soporte por email están disponibles con %1$s." -#: includes/options-page.php:259 +#: includes/options-page.php:346 msgid "Accessibility Checker Pro (opens in a new window)" msgstr "Accessibility Checker Pro (se abre en una nueva ventana)" -#: includes/options-page.php:259 -#: partials/welcome-page.php:21 +#: includes/options-page.php:346 +#: partials/welcome-page.php:25 msgid "Accessibility Checker Pro" msgstr "Accessibility Checker Pro" -#: includes/options-page.php:273 +#: includes/options-page.php:360 msgid "Use the settings below to configure the frontend accessibility checker." msgstr "Utiliza la configuración siguiente para configurar el comprobador de accesibilidad frontend." -#: includes/options-page.php:283 +#: includes/options-page.php:370 msgid "Web Content Accessibility Guidelines (WCAG) at the AAA level require any content with a reading level above 9th grade to have an alternative that is easier to read. Simplified summary text is added on the readability tab in the Accessibility Checker meta box on each post's or page's edit screen." msgstr "Las Pautas de Accesibilidad al Contenido Web (WCAG) en el nivel AAA requieren que cualquier contenido con un nivel de lectura superior al 9º grado tenga una alternativa más fácil de leer. El texto del resumen simplificado se añade en la pestaña de legibilidad en el metabox de Accessibility Checker en la pantalla de edición de cada entrada o página." -#: includes/options-page.php:293 +#: includes/options-page.php:380 msgid "Learn more about simplified summaries and readability requirements (opens in a new window)" msgstr "Más información sobre resúmenes simplificados y requisitos de legibilidad (se abre en una nueva ventana)" -#: includes/options-page.php:293 +#: includes/options-page.php:380 msgid "Learn more about simplified summaries and readability requirements." msgstr "Más información sobre resúmenes simplificados y requisitos de legibilidad." -#: includes/options-page.php:302 +#: includes/options-page.php:389 msgid "Are you thinking \"Wow, this plugin is amazing\" and is it helping you make your website more accessible? Share your efforts to make your website more accessible with your customers and let them know you're using Accessibility Checker to ensure all people can use your website. Add a small text-only link and statement in the footer of your website." msgstr "¿Estás pensando “Vaya, este plugin es increíble” y te está ayudando a hacer tu sitio web más accesible? Comparte tus esfuerzos para hacer tu sitio web más accesible con tus clientes y hazles saber que estás utilizando Accessibility Checker para garantizar que todas las personas puedan usar tu sitio web. Añade un pequeño enlace de solo texto y una declaración en el pie de página de tu sitio web." -#: includes/options-page.php:315 +#: includes/options-page.php:398 +msgid "Configure system-level settings for the Accessibility Checker plugin." +msgstr "Configura los ajustes a nivel de sistema para el plugin Accessibility Checker." + +#: includes/options-page.php:412 +msgid "Fast" +msgstr "Rápido" + +#: includes/options-page.php:413 +msgid "Normal" +msgstr "Normal" + +#: includes/options-page.php:414 +msgid "Slow" +msgstr "Lento" + +#: includes/options-page.php:415 +msgid "Slowest" +msgstr "Más lento" + +#: includes/options-page.php:437 +msgid "Faster scans are more resource intensive and may place a high load on your website." +msgstr "Los escaneos más rápidos consumen más recursos y pueden generar una alta carga en tu sitio web." + +#: includes/options-page.php:463 +msgid "Enable scanning of archive pages" +msgstr "Habilitar escaneo de páginas de archivo" + +#: includes/options-page.php:467 +msgid "Choose whether archive pages should be included in full site scans. By default, a sampling method is used to select taxonomy terms for archive data." +msgstr "Elige si las páginas de archivo deben incluirse en los escaneos completos del sitio. Por defecto, se utiliza un método de muestreo para seleccionar términos de taxonomía para los datos de archivo." + +#: includes/options-page.php:493 +msgid "Scan all taxonomy terms instead of just a sample" +msgstr "Escanear todos los términos de taxonomía en lugar de solo una muestra" + +#: includes/options-page.php:497 +msgid "Check all taxonomy term archive pages instead of a representative sample. This requires archive page scanning to be enabled and may add a large number of URLs to the scan list." +msgstr "Comprobar todas las páginas de archivo de términos de taxonomía en lugar de una muestra representativa. Esto requiere que el escaneo de páginas de archivo esté habilitado y puede añadir un gran número de URLs a la lista de escaneo." + +#: includes/options-page.php:526 msgid "Before the content" msgstr "Antes del contenido" -#: includes/options-page.php:320 +#: includes/options-page.php:531 msgid "After the content" msgstr "Después del contenido" -#: includes/options-page.php:325 +#: includes/options-page.php:536 msgid "Insert manually" msgstr "Insertar manualmente" -#: includes/options-page.php:329 +#: includes/options-page.php:540 msgid "Use this function to manually add the simplified summary to your theme within the loop." msgstr "Usa esta función para añadir manualmente el resumen simplificado a tu tema dentro del bucle." -#: includes/options-page.php:331 +#: includes/options-page.php:542 msgid "The function optionally accepts the post ID as a parameter." msgstr "La función opcionalmente acepta el ID de la entrada como parámetro." -#: includes/options-page.php:334 +#: includes/options-page.php:545 msgid "Set where you would like simplified summaries to appear in relation to your content if filled in." msgstr "Establece dónde te gustaría que aparecieran los resúmenes simplificados en relación con tu contenido si se rellenan." -#: includes/options-page.php:349 +#: includes/options-page.php:560 msgid "Bottom Right Corner (default)" msgstr "Esquina inferior derecha (predeterminado)" -#: includes/options-page.php:354 +#: includes/options-page.php:565 msgid "Bottom Left Corner" msgstr "Esquina inferior izquierda" -#: includes/options-page.php:358 +#: includes/options-page.php:569 msgid "Set where you would like the frontend accessibility checker to appear on the page." msgstr "Establece dónde te gustaría que apareciera el comprobador de accesibilidad frontend en la página." -#: includes/options-page.php:398 +#: includes/options-page.php:609 msgid "When Required" msgstr "Cuando sea necesario" -#: includes/options-page.php:403 +#: includes/options-page.php:614 msgid "Always" msgstr "Siempre" -#: includes/options-page.php:411 +#: includes/options-page.php:622 msgid "Should Accessibility Checker only ask for a simplified summary when the reading level of your post or page is above 9th grade, always ask for it regardless of reading level, or never ask for it regardless of reading level?" msgstr "¿Debería Accessibility Checker pedir un resumen simplificado solo cuando el nivel de lectura de tu entrada o página está por encima del 9º grado, pedirlo siempre independientemente del nivel de lectura, o no pedirlo nunca independientemente del nivel de lectura?" -#: includes/options-page.php:462 +#: includes/options-page.php:677 msgid "To check content other than posts and pages, please " msgstr "Para comprobar contenido que no sean entradas y páginas, por favor " -#: includes/options-page.php:464 +#: includes/options-page.php:679 msgid "upgrade to pro" msgstr "actualizar a pro" -#: includes/options-page.php:465 +#: includes/options-page.php:680 msgid " (opens in a new window)" msgstr " (se abre en una nueva ventana)" -#: includes/options-page.php:470 +#: includes/options-page.php:685 msgid "Choose which post types should be checked during a scan. Please note, removing a previously selected post type will remove its scanned information and any custom ignored warnings that have been setup." msgstr "Elige qué tipos de entradas deben comprobarse durante un escaneo. Ten en cuenta que eliminar un tipo de entrada previamente seleccionado eliminará su información escaneada y cualquier advertencia personalizada ignorada que se haya configurado." -#: includes/options-page.php:608 +#: includes/options-page.php:827 msgid "Delete all Accessibility Checker data when the plugin is uninstalled." msgstr "Eliminar todos los datos de Accessibility Checker cuando se desinstale el plugin." -#: includes/wcag.php:11 +#: includes/options-page.php:845 +msgid "Show Accessibility Checker metabox in the Block Editor" +msgstr "Mostrar metabox de Accessibility Checker en el editor de bloques" + +#: includes/options-page.php:1004 +msgid "Choose which user roles have permission to ignore issues." +msgstr "Elige qué roles de usuario tienen permiso para ignorar problemas." + +#: includes/options-page.php:1037 +msgid "Configure which user roles have access to specific Accessibility Checker features." +msgstr "Configura qué roles de usuario tienen acceso a características específicas de Accessibility Checker." + +#: includes/wcag.php:15 msgid "Non-text Content" msgstr "Contenido no textual" -#: includes/wcag.php:12 +#: includes/wcag.php:16 msgid "All non-text content must have a text alternative that serves the same purpose, unless it falls into specific exceptions like controls, media, tests, sensory content, CAPTCHA, or decorative elements. Each type must follow specific guidance to ensure accessibility without interfering with the user experience." msgstr "Todo el contenido no textual debe tener una alternativa de texto que cumpla el mismo propósito, a menos que entre en excepciones específicas como controles, medios, pruebas, contenido sensorial, CAPTCHA o elementos decorativos. Cada tipo debe seguir una guía específica para garantizar la accesibilidad sin interferir con la experiencia del usuario." -#: includes/wcag.php:15 +#: includes/wcag.php:19 msgid "1.1 Text Alternatives" msgstr "1.1 alternativas textuales" -#: includes/wcag.php:16 -#: includes/wcag.php:49 -#: includes/wcag.php:82 -#: includes/wcag.php:115 -#: includes/wcag.php:148 -#: includes/wcag.php:181 -#: includes/wcag.php:213 -#: includes/wcag.php:230 -#: includes/wcag.php:247 -#: includes/wcag.php:266 -#: includes/wcag.php:284 -#: includes/wcag.php:319 -#: includes/wcag.php:353 -#: includes/wcag.php:386 -#: includes/wcag.php:413 -#: includes/wcag.php:441 -#: includes/wcag.php:459 -#: includes/wcag.php:492 -#: includes/wcag.php:520 -#: includes/wcag.php:547 -#: includes/wcag.php:575 -#: includes/wcag.php:604 -#: includes/wcag.php:638 -#: includes/wcag.php:671 -#: includes/wcag.php:703 -#: includes/wcag.php:735 -#: includes/wcag.php:753 -#: includes/wcag.php:770 -#: includes/wcag.php:788 +#: includes/wcag.php:20 +#: includes/wcag.php:53 +#: includes/wcag.php:86 +#: includes/wcag.php:119 +#: includes/wcag.php:152 +#: includes/wcag.php:185 +#: includes/wcag.php:217 +#: includes/wcag.php:234 +#: includes/wcag.php:251 +#: includes/wcag.php:270 +#: includes/wcag.php:288 +#: includes/wcag.php:323 +#: includes/wcag.php:357 +#: includes/wcag.php:390 +#: includes/wcag.php:417 +#: includes/wcag.php:445 +#: includes/wcag.php:463 +#: includes/wcag.php:496 +#: includes/wcag.php:524 +#: includes/wcag.php:551 +#: includes/wcag.php:579 +#: includes/wcag.php:608 +#: includes/wcag.php:642 +#: includes/wcag.php:675 +#: includes/wcag.php:707 +#: includes/wcag.php:739 +#: includes/wcag.php:757 +#: includes/wcag.php:774 +#: includes/wcag.php:792 msgid "Perceivable" msgstr "Perceptible" -#: includes/wcag.php:18 -#: includes/wcag.php:288 -#: includes/wcag.php:1533 -#: includes/wcag.php:2200 -#: includes/wcag.php:2234 +#: includes/wcag.php:22 +#: includes/wcag.php:292 +#: includes/wcag.php:1537 +#: includes/wcag.php:2204 +#: includes/wcag.php:2238 msgid "People with dexterity impairments using voice control" msgstr "Personas con discapacidades de destreza que usan control por voz" -#: includes/wcag.php:19 -#: includes/wcag.php:289 -#: includes/wcag.php:323 -#: includes/wcag.php:444 -#: includes/wcag.php:894 -#: includes/wcag.php:923 -#: includes/wcag.php:957 -#: includes/wcag.php:991 -#: includes/wcag.php:1011 -#: includes/wcag.php:1030 -#: includes/wcag.php:1049 -#: includes/wcag.php:1133 -#: includes/wcag.php:1167 -#: includes/wcag.php:1237 -#: includes/wcag.php:1304 -#: includes/wcag.php:1338 -#: includes/wcag.php:1372 -#: includes/wcag.php:1457 -#: includes/wcag.php:1476 -#: includes/wcag.php:1506 -#: includes/wcag.php:1662 -#: includes/wcag.php:1696 -#: includes/wcag.php:1806 -#: includes/wcag.php:1842 -#: includes/wcag.php:1877 -#: includes/wcag.php:1908 -#: includes/wcag.php:1940 -#: includes/wcag.php:1976 -#: includes/wcag.php:2010 -#: includes/wcag.php:2044 -#: includes/wcag.php:2078 -#: includes/wcag.php:2112 -#: includes/wcag.php:2131 -#: includes/wcag.php:2202 -#: includes/wcag.php:2236 -#: includes/wcag.php:2267 +#: includes/wcag.php:23 +#: includes/wcag.php:293 +#: includes/wcag.php:327 +#: includes/wcag.php:448 +#: includes/wcag.php:898 +#: includes/wcag.php:927 +#: includes/wcag.php:961 +#: includes/wcag.php:995 +#: includes/wcag.php:1015 +#: includes/wcag.php:1034 +#: includes/wcag.php:1053 +#: includes/wcag.php:1137 +#: includes/wcag.php:1171 +#: includes/wcag.php:1241 +#: includes/wcag.php:1308 +#: includes/wcag.php:1342 +#: includes/wcag.php:1376 +#: includes/wcag.php:1461 +#: includes/wcag.php:1480 +#: includes/wcag.php:1510 +#: includes/wcag.php:1666 +#: includes/wcag.php:1700 +#: includes/wcag.php:1810 +#: includes/wcag.php:1846 +#: includes/wcag.php:1881 +#: includes/wcag.php:1912 +#: includes/wcag.php:1944 +#: includes/wcag.php:1980 +#: includes/wcag.php:2014 +#: includes/wcag.php:2048 +#: includes/wcag.php:2082 +#: includes/wcag.php:2116 +#: includes/wcag.php:2135 +#: includes/wcag.php:2206 +#: includes/wcag.php:2240 +#: includes/wcag.php:2271 msgid "Screen reader users (blind/low vision and neurodivergent people)" msgstr "Usuarios de lectores de pantalla (personas ciegas/con baja visión y neurodivergentes)" -#: includes/wcag.php:44 +#: includes/wcag.php:48 msgid "Prerecorded Audio-only and Video-only" msgstr "Audio solo y vídeo solo pregrabados" -#: includes/wcag.php:45 +#: includes/wcag.php:49 msgid "For prerecorded audio-only and video-only content, a text alternative must be provided that presents equivalent information. This ensures users who cannot hear or see the media can still access its content through text." msgstr "Para contenido de solo audio y solo vídeo pregrabado, se debe proporcionar una alternativa de texto que presente información equivalente. Esto asegura que los usuarios que no pueden oír o ver el medio aún puedan acceder a su contenido a través del texto." -#: includes/wcag.php:48 -#: includes/wcag.php:81 -#: includes/wcag.php:114 -#: includes/wcag.php:147 -#: includes/wcag.php:180 -#: includes/wcag.php:212 -#: includes/wcag.php:229 -#: includes/wcag.php:246 -#: includes/wcag.php:265 +#: includes/wcag.php:52 +#: includes/wcag.php:85 +#: includes/wcag.php:118 +#: includes/wcag.php:151 +#: includes/wcag.php:184 +#: includes/wcag.php:216 +#: includes/wcag.php:233 +#: includes/wcag.php:250 +#: includes/wcag.php:269 msgid "1.2 Time-based Media" msgstr "1.2 medios basados en el tiempo" -#: includes/wcag.php:51 -#: includes/wcag.php:84 -#: includes/wcag.php:117 -#: includes/wcag.php:150 -#: includes/wcag.php:215 -#: includes/wcag.php:249 -#: includes/wcag.php:268 -#: includes/wcag.php:356 -#: includes/wcag.php:607 -#: includes/wcag.php:755 +#: includes/wcag.php:55 +#: includes/wcag.php:88 +#: includes/wcag.php:121 +#: includes/wcag.php:154 +#: includes/wcag.php:219 +#: includes/wcag.php:253 +#: includes/wcag.php:272 +#: includes/wcag.php:360 +#: includes/wcag.php:611 +#: includes/wcag.php:759 msgid "Deaf and hard of hearing people" msgstr "Personas sordas y con dificultades auditivas" -#: includes/wcag.php:77 +#: includes/wcag.php:81 msgid "Captions (Prerecorded)" msgstr "Subtítulos (pregrabados)" -#: includes/wcag.php:78 +#: includes/wcag.php:82 msgid "Captions must be provided for all prerecorded audio content in synchronized media—such as videos where audio and visuals play together—so that users who are deaf or hard of hearing can access the spoken information and important sounds." msgstr "Se deben proporcionar subtítulos para todo el contenido de audio pregrabado en medios sincronizados, como vídeos donde el audio y las imágenes se reproducen juntos, para que los usuarios sordos o con dificultades auditivas puedan acceder a la información hablada y los sonidos importantes." -#: includes/wcag.php:110 +#: includes/wcag.php:114 msgid "Audio Description or Media Alternative (Prerecorded)" msgstr "Descripción de audio o alternativa multimedia (pregrabada)" -#: includes/wcag.php:111 +#: includes/wcag.php:115 msgid "For prerecorded video content with audio (synchronized media), an audio description—or a written transcript that includes visual details—must be provided to ensure users who are blind or have low vision can understand important visual information that isn't spoken." msgstr "Para el contenido de vídeo pregrabado con audio (medios sincronizados), se debe proporcionar una descripción de audio, o una transcripción escrita que incluya detalles visuales, para garantizar que los usuarios ciegos o con baja visión puedan entender la información visual importante que no se habla." -#: includes/wcag.php:143 +#: includes/wcag.php:147 msgid "Captions (Live)" msgstr "Subtítulos (en directo)" -#: includes/wcag.php:144 +#: includes/wcag.php:148 msgid "For all live video content that includes audio, captions must be provided in real time so that users who are deaf or hard of hearing can access the spoken information as it happens." msgstr "Para todo el contenido de vídeo en directo que incluya audio, se deben proporcionar subtítulos en tiempo real para que los usuarios sordos o con dificultades auditivas puedan acceder a la información hablada mientras ocurre." -#: includes/wcag.php:176 +#: includes/wcag.php:180 msgid "Audio Description (Prerecorded)" msgstr "Audiodescripción (pregrabada)" -#: includes/wcag.php:177 +#: includes/wcag.php:181 msgid "For prerecorded video with audio, an audio description of important visual content must be provided, allowing users who are blind or have low vision to understand visual information that is not described in the main audio." msgstr "Para vídeos pregrabados con audio, se debe proporcionar una audiodescripción del contenido visual importante, permitiendo a los usuarios ciegos o con baja visión entender la información visual que no se describe en el audio principal." -#: includes/wcag.php:183 -#: includes/wcag.php:232 -#: includes/wcag.php:355 -#: includes/wcag.php:461 -#: includes/wcag.php:577 -#: includes/wcag.php:606 -#: includes/wcag.php:705 -#: includes/wcag.php:790 -#: includes/wcag.php:807 -#: includes/wcag.php:841 -#: includes/wcag.php:875 +#: includes/wcag.php:187 +#: includes/wcag.php:236 +#: includes/wcag.php:359 +#: includes/wcag.php:465 +#: includes/wcag.php:581 +#: includes/wcag.php:610 +#: includes/wcag.php:709 +#: includes/wcag.php:794 +#: includes/wcag.php:811 +#: includes/wcag.php:845 +#: includes/wcag.php:879 msgid "Blind and low vision people" msgstr "Personas ciegas y con baja visión" -#: includes/wcag.php:208 +#: includes/wcag.php:212 msgid "Sign Language (Prerecorded)" msgstr "Lengua de signos (pregrabada)" -#: includes/wcag.php:209 +#: includes/wcag.php:213 msgid "A sign language interpretation must be provided for all prerecorded audio content in synchronized media, ensuring that users who are deaf and use sign language can fully understand the spoken content." msgstr "Se debe proporcionar una interpretación en lengua de signos para todo el contenido de audio pregrabado en medios sincronizados, asegurando que los usuarios sordos que utilizan la lengua de signos puedan entender completamente el contenido hablado." -#: includes/wcag.php:225 +#: includes/wcag.php:229 msgid "Extended Audio Description (Prerecorded)" msgstr "Audiodescripción ampliada (pregrabada)" -#: includes/wcag.php:226 +#: includes/wcag.php:230 msgid "For all prerecorded multimedia content, extended audio descriptions must be provided when necessary—meaning the video is paused to insert additional descriptions—so that users who are blind or have low vision can understand important visual details that can't be described during the natural pauses in the audio." msgstr "Para todo el contenido multimedia pregrabado, se deben proporcionar audiodescripciones ampliadas cuando sea necesario —es decir, el vídeo se pausa para insertar descripciones adicionales— para que los usuarios ciegos o con baja visión puedan entender detalles visuales importantes que no se pueden describir durante las pausas naturales del audio." -#: includes/wcag.php:242 +#: includes/wcag.php:246 msgid "Media Alternative (Prerecorded)" msgstr "Alternativa multimedia (pregrabada)" -#: includes/wcag.php:243 +#: includes/wcag.php:247 msgid "For prerecorded synchronized media, a full text alternative (such as a transcript) is provided that gives all the information in both the video and audio tracks, so users who cannot see or hear the content can still access it." msgstr "Para los medios sincronizados pregrabados, se proporciona una alternativa de texto completa (como una transcripción) que ofrece toda la información tanto de las pistas de vídeo como de audio, para que los usuarios que no pueden ver ni oír el contenido puedan acceder a él." -#: includes/wcag.php:250 +#: includes/wcag.php:254 msgid "Deaf-blind people" msgstr "Personas sordociegas" -#: includes/wcag.php:261 +#: includes/wcag.php:265 msgid "Audio-only (Live)" msgstr "Solo audio (en directo)" -#: includes/wcag.php:262 +#: includes/wcag.php:266 msgid "For live audio-only content, a text alternative is provided in real time so people who cannot hear the audio can still access the information." msgstr "Para el contenido de solo audio en directo, se proporciona una alternativa de texto en tiempo real para que las personas que no pueden oír el audio puedan acceder a la información." -#: includes/wcag.php:279 +#: includes/wcag.php:283 msgid "Info and Relationships" msgstr "Información y relaciones" -#: includes/wcag.php:280 +#: includes/wcag.php:284 msgid "Information, structure, and relationships in content are programmatically determined or available in text, so assistive technologies can present them to users." msgstr "La información, la estructura y las relaciones en el contenido se determinan programáticamente o están disponibles en texto, para que las tecnologías de asistencia puedan presentarlas a los usuarios." -#: includes/wcag.php:283 -#: includes/wcag.php:318 -#: includes/wcag.php:352 -#: includes/wcag.php:385 -#: includes/wcag.php:412 -#: includes/wcag.php:440 +#: includes/wcag.php:287 +#: includes/wcag.php:322 +#: includes/wcag.php:356 +#: includes/wcag.php:389 +#: includes/wcag.php:416 +#: includes/wcag.php:444 msgid "1.3 Adaptable" msgstr "1.3 adaptable" -#: includes/wcag.php:286 -#: includes/wcag.php:321 -#: includes/wcag.php:808 -#: includes/wcag.php:842 -#: includes/wcag.php:876 -#: includes/wcag.php:1184 -#: includes/wcag.php:1201 -#: includes/wcag.php:1218 -#: includes/wcag.php:1269 -#: includes/wcag.php:1404 -#: includes/wcag.php:1474 -#: includes/wcag.php:1504 -#: includes/wcag.php:1624 -#: includes/wcag.php:1804 -#: includes/wcag.php:1839 -#: includes/wcag.php:1937 +#: includes/wcag.php:290 +#: includes/wcag.php:325 +#: includes/wcag.php:812 +#: includes/wcag.php:846 +#: includes/wcag.php:880 +#: includes/wcag.php:1188 +#: includes/wcag.php:1205 +#: includes/wcag.php:1222 +#: includes/wcag.php:1273 +#: includes/wcag.php:1408 +#: includes/wcag.php:1478 +#: includes/wcag.php:1508 +#: includes/wcag.php:1628 +#: includes/wcag.php:1808 +#: includes/wcag.php:1843 +#: includes/wcag.php:1941 msgid "People who rely on keyboard control" msgstr "Personas que dependen del control por teclado" -#: includes/wcag.php:287 -#: includes/wcag.php:322 +#: includes/wcag.php:291 +#: includes/wcag.php:326 msgid "People with cognitive differences who view interfaces using an adapted layout" msgstr "Personas con diferencias cognitivas que ven las interfaces usando un diseño adaptado" -#: includes/wcag.php:314 +#: includes/wcag.php:318 msgid "Meaningful Sequence" msgstr "Secuencia significativa" -#: includes/wcag.php:315 +#: includes/wcag.php:319 msgid "Content is presented in a meaningful order so that reading or navigation order does not confuse users when using assistive technology." msgstr "El contenido se presenta en un orden significativo para que el orden de lectura o navegación no confunda a los usuarios cuando utilizan tecnologías de asistencia." -#: includes/wcag.php:348 +#: includes/wcag.php:352 msgid "Sensory Characteristics" msgstr "Características sensoriales" -#: includes/wcag.php:349 +#: includes/wcag.php:353 msgid "Instructions do not rely only on sensory characteristics such as shape, color, size, or sound, so everyone can understand them." msgstr "Las instrucciones no dependen únicamente de características sensoriales como la forma, el color, el tamaño o el sonido, para que todos puedan entenderlas." -#: includes/wcag.php:381 +#: includes/wcag.php:385 msgid "Orientation" msgstr "Orientación" -#: includes/wcag.php:382 +#: includes/wcag.php:386 msgid "Content does not restrict its view and operation to a single display orientation, such as portrait or landscape, unless a specific orientation is essential." msgstr "El contenido no restringe su visualización y operación a una sola orientación de pantalla, como vertical u horizontal, a menos que una orientación específica sea esencial." -#: includes/wcag.php:388 -#: includes/wcag.php:1165 -#: includes/wcag.php:1303 -#: includes/wcag.php:1336 -#: includes/wcag.php:1370 -#: includes/wcag.php:1438 -#: includes/wcag.php:1456 -#: includes/wcag.php:1503 -#: includes/wcag.php:1607 -#: includes/wcag.php:1727 -#: includes/wcag.php:1747 -#: includes/wcag.php:1766 -#: includes/wcag.php:1785 -#: includes/wcag.php:1875 -#: includes/wcag.php:1906 -#: includes/wcag.php:1957 -#: includes/wcag.php:1974 -#: includes/wcag.php:2008 -#: includes/wcag.php:2042 -#: includes/wcag.php:2076 -#: includes/wcag.php:2110 -#: includes/wcag.php:2129 -#: includes/wcag.php:2148 +#: includes/wcag.php:392 +#: includes/wcag.php:1169 +#: includes/wcag.php:1307 +#: includes/wcag.php:1340 +#: includes/wcag.php:1374 +#: includes/wcag.php:1442 +#: includes/wcag.php:1460 +#: includes/wcag.php:1507 +#: includes/wcag.php:1611 +#: includes/wcag.php:1731 +#: includes/wcag.php:1751 +#: includes/wcag.php:1770 +#: includes/wcag.php:1789 +#: includes/wcag.php:1879 +#: includes/wcag.php:1910 +#: includes/wcag.php:1961 +#: includes/wcag.php:1978 +#: includes/wcag.php:2012 +#: includes/wcag.php:2046 +#: includes/wcag.php:2080 +#: includes/wcag.php:2114 +#: includes/wcag.php:2133 +#: includes/wcag.php:2152 msgid "All people including those who do not identify as disabled" msgstr "Todas las personas, incluidas las que no se identifican como discapacitadas" -#: includes/wcag.php:408 +#: includes/wcag.php:412 msgid "Identify Input Purpose" msgstr "Identificar el propósito de entrada" -#: includes/wcag.php:409 +#: includes/wcag.php:413 msgid "The purpose of input fields that collect information about the user can be programmatically determined, so browsers and assistive technologies can help users fill them in." msgstr "El propósito de los campos de entrada que recopilan información sobre el usuario se puede determinar programáticamente, para que los navegadores y las tecnologías de asistencia puedan ayudar a los usuarios a rellenarlos." -#: includes/wcag.php:415 -#: includes/wcag.php:443 -#: includes/wcag.php:1166 -#: includes/wcag.php:1235 -#: includes/wcag.php:1371 -#: includes/wcag.php:1439 -#: includes/wcag.php:2166 -#: includes/wcag.php:2183 +#: includes/wcag.php:419 +#: includes/wcag.php:447 +#: includes/wcag.php:1170 +#: includes/wcag.php:1239 +#: includes/wcag.php:1375 +#: includes/wcag.php:1443 +#: includes/wcag.php:2170 +#: includes/wcag.php:2187 msgid "People with cognitive disabilities or limited short-term memory or reading disabilities" msgstr "Personas con discapacidades cognitivas o memoria a corto plazo limitada o discapacidades de lectura" -#: includes/wcag.php:416 -#: includes/wcag.php:809 -#: includes/wcag.php:843 -#: includes/wcag.php:877 -#: includes/wcag.php:922 -#: includes/wcag.php:990 -#: includes/wcag.php:1010 -#: includes/wcag.php:1029 -#: includes/wcag.php:1048 -#: includes/wcag.php:1132 -#: includes/wcag.php:1270 -#: includes/wcag.php:1405 -#: includes/wcag.php:1475 -#: includes/wcag.php:1505 -#: includes/wcag.php:1560 -#: includes/wcag.php:1805 -#: includes/wcag.php:1841 -#: includes/wcag.php:1939 +#: includes/wcag.php:420 +#: includes/wcag.php:813 +#: includes/wcag.php:847 +#: includes/wcag.php:881 +#: includes/wcag.php:926 +#: includes/wcag.php:994 +#: includes/wcag.php:1014 +#: includes/wcag.php:1033 +#: includes/wcag.php:1052 +#: includes/wcag.php:1136 +#: includes/wcag.php:1274 +#: includes/wcag.php:1409 +#: includes/wcag.php:1479 +#: includes/wcag.php:1509 +#: includes/wcag.php:1564 +#: includes/wcag.php:1809 +#: includes/wcag.php:1845 +#: includes/wcag.php:1943 msgid "People with dexterity and mobility impairments" msgstr "Personas con discapacidades de destreza y movilidad" -#: includes/wcag.php:436 +#: includes/wcag.php:440 msgid "Identify Purpose" msgstr "Identificar el propósito" -#: includes/wcag.php:437 +#: includes/wcag.php:441 msgid "The purpose of user interface components, icons, and regions can be programmatically determined, so assistive technologies can adapt the experience for users." msgstr "El propósito de los componentes de la interfaz de usuario, los iconos y las regiones se puede determinar programáticamente, para que las tecnologías de asistencia puedan adaptar la experiencia para los usuarios." -#: includes/wcag.php:454 +#: includes/wcag.php:458 msgid "Use of Color" msgstr "Uso del color" -#: includes/wcag.php:455 +#: includes/wcag.php:459 msgid "Color is not used as the only way to convey information, indicate an action, prompt a response, or distinguish a visual element." msgstr "El color no se utiliza como la única forma de transmitir información, indicar una acción, solicitar una respuesta o distinguir un elemento visual." -#: includes/wcag.php:458 -#: includes/wcag.php:491 -#: includes/wcag.php:519 -#: includes/wcag.php:546 -#: includes/wcag.php:574 -#: includes/wcag.php:603 -#: includes/wcag.php:637 -#: includes/wcag.php:670 -#: includes/wcag.php:702 -#: includes/wcag.php:734 -#: includes/wcag.php:752 -#: includes/wcag.php:769 -#: includes/wcag.php:787 +#: includes/wcag.php:462 +#: includes/wcag.php:495 +#: includes/wcag.php:523 +#: includes/wcag.php:550 +#: includes/wcag.php:578 +#: includes/wcag.php:607 +#: includes/wcag.php:641 +#: includes/wcag.php:674 +#: includes/wcag.php:706 +#: includes/wcag.php:738 +#: includes/wcag.php:756 +#: includes/wcag.php:773 +#: includes/wcag.php:791 msgid "1.4 Distinguishable" msgstr "1.4 distinguible" -#: includes/wcag.php:462 +#: includes/wcag.php:466 msgid "Color blind people" msgstr "Personas daltónicas" -#: includes/wcag.php:487 +#: includes/wcag.php:491 msgid "Reflow" msgstr "Reajuste" -#: includes/wcag.php:488 +#: includes/wcag.php:492 msgid "Content can be viewed without scrolling in more than one direction, so users can easily read and interact with it on small screens or when zoomed in." msgstr "El contenido se puede ver sin desplazamiento en más de una dirección, para que los usuarios puedan leerlo e interactuar con él fácilmente en pantallas pequeñas o cuando se amplía." -#: includes/wcag.php:494 -#: includes/wcag.php:1641 +#: includes/wcag.php:498 +#: includes/wcag.php:1645 msgid "People on mobile devices" msgstr "Personas en dispositivos móviles" -#: includes/wcag.php:495 -#: includes/wcag.php:522 -#: includes/wcag.php:550 -#: includes/wcag.php:641 -#: includes/wcag.php:673 -#: includes/wcag.php:738 -#: includes/wcag.php:773 -#: includes/wcag.php:1271 -#: includes/wcag.php:1406 -#: includes/wcag.php:1589 -#: includes/wcag.php:1643 +#: includes/wcag.php:499 +#: includes/wcag.php:526 +#: includes/wcag.php:554 +#: includes/wcag.php:645 +#: includes/wcag.php:677 +#: includes/wcag.php:742 +#: includes/wcag.php:777 +#: includes/wcag.php:1275 +#: includes/wcag.php:1410 +#: includes/wcag.php:1593 +#: includes/wcag.php:1647 msgid "People with low vision" msgstr "Personas con baja visión" -#: includes/wcag.php:515 +#: includes/wcag.php:519 msgid "Non-text Contrast" msgstr "Contraste de elementos no textuales" -#: includes/wcag.php:516 +#: includes/wcag.php:520 msgid "Visual information needed to identify user interface components and graphical objects has a contrast ratio of at least 3:1 against adjacent colors." msgstr "La información visual necesaria para identificar los componentes de la interfaz de usuario y los objetos gráficos tiene una relación de contraste de al menos 3:1 con los colores adyacentes." -#: includes/wcag.php:542 +#: includes/wcag.php:546 msgid "Text Spacing" msgstr "Espaciado del texto" -#: includes/wcag.php:543 +#: includes/wcag.php:547 msgid "Users can override text spacing to improve readability without losing content or functionality." msgstr "Los usuarios pueden anular el espaciado del texto para mejorar la legibilidad sin perder contenido o funcionalidad." -#: includes/wcag.php:549 -#: includes/wcag.php:772 -#: includes/wcag.php:1729 -#: includes/wcag.php:1749 -#: includes/wcag.php:1768 -#: includes/wcag.php:1787 -#: includes/wcag.php:1840 -#: includes/wcag.php:1876 -#: includes/wcag.php:1907 -#: includes/wcag.php:1938 -#: includes/wcag.php:1975 -#: includes/wcag.php:2009 -#: includes/wcag.php:2043 -#: includes/wcag.php:2077 -#: includes/wcag.php:2111 -#: includes/wcag.php:2130 +#: includes/wcag.php:553 +#: includes/wcag.php:776 +#: includes/wcag.php:1733 +#: includes/wcag.php:1753 +#: includes/wcag.php:1772 +#: includes/wcag.php:1791 +#: includes/wcag.php:1844 +#: includes/wcag.php:1880 +#: includes/wcag.php:1911 +#: includes/wcag.php:1942 +#: includes/wcag.php:1979 +#: includes/wcag.php:2013 +#: includes/wcag.php:2047 +#: includes/wcag.php:2081 +#: includes/wcag.php:2115 +#: includes/wcag.php:2134 msgid "People with cognitive disabilities and reading disabilities" msgstr "Personas con discapacidades cognitivas y discapacidades de lectura" -#: includes/wcag.php:570 +#: includes/wcag.php:574 msgid "Content on Hover or Focus" msgstr "Contenido al pasar el ratón o al enfocar" -#: includes/wcag.php:571 +#: includes/wcag.php:575 msgid "If extra content appears on hover or focus, users can dismiss it, move their pointer over it, and it remains visible until dismissed or focus is moved." msgstr "Si aparece contenido adicional al pasar el ratón o al enfocar, los usuarios pueden descartarlo, mover su puntero sobre él y permanece visible hasta que se descarta o se mueve el foco." -#: includes/wcag.php:578 -#: includes/wcag.php:956 -#: includes/wcag.php:1337 +#: includes/wcag.php:582 +#: includes/wcag.php:960 +#: includes/wcag.php:1341 msgid "People with cognitive disabilities" msgstr "Personas con discapacidades cognitivas" -#: includes/wcag.php:579 -#: includes/wcag.php:1642 +#: includes/wcag.php:583 +#: includes/wcag.php:1646 msgid "People with dexterity impairments" msgstr "Personas con discapacidades de destreza" -#: includes/wcag.php:599 +#: includes/wcag.php:603 msgid "Audio Control" msgstr "Control de audio" -#: includes/wcag.php:600 +#: includes/wcag.php:604 msgid "If audio plays automatically for more than 3 seconds, users must be able to pause, stop, or control the volume independently from the system volume." msgstr "Si el audio se reproduce automáticamente durante más de 3 segundos, los usuarios deben poder pausarlo, detenerlo o controlar el volumen independientemente del volumen del sistema." -#: includes/wcag.php:608 -#: includes/wcag.php:955 -#: includes/wcag.php:1009 +#: includes/wcag.php:612 +#: includes/wcag.php:959 +#: includes/wcag.php:1013 msgid "People with ADD or difficulty focusing on content without distraction" msgstr "Personas con TDA o dificultad para concentrarse en el contenido sin distracciones" -#: includes/wcag.php:633 +#: includes/wcag.php:637 msgid "Contrast (Minimum)" msgstr "Contraste (mínimo)" -#: includes/wcag.php:634 +#: includes/wcag.php:638 msgid "Text and images of text must have a contrast ratio of at least 4.5:1, except for large text, incidental text, or logotypes." msgstr "El texto y las imágenes de texto deben tener una relación de contraste de al menos 4.5:1, excepto para texto grande, texto incidental o logotipos." -#: includes/wcag.php:640 -#: includes/wcag.php:737 +#: includes/wcag.php:644 +#: includes/wcag.php:741 msgid "People on mobile devices in a sunny environment" msgstr "Personas con dispositivos móviles en un entorno soleado" -#: includes/wcag.php:666 +#: includes/wcag.php:670 msgid "Resize text" msgstr "Cambiar el tamaño del texto" -#: includes/wcag.php:667 +#: includes/wcag.php:671 msgid "Text can be resized up to 200% without loss of content or functionality, so people with low vision can read it more easily." msgstr "El texto se puede ampliar hasta un 200 % sin pérdida de contenido o funcionalidad, para que las personas con baja visión puedan leerlo más fácilmente." -#: includes/wcag.php:698 +#: includes/wcag.php:702 msgid "Images of Text" msgstr "Imágenes de texto" -#: includes/wcag.php:699 +#: includes/wcag.php:703 msgid "If the same visual presentation can be made using text alone, do not use images of text except for decorative or essential purposes." msgstr "Si se puede lograr la misma presentación visual usando solo texto, no uses imágenes de texto excepto con fines decorativos o esenciales." -#: includes/wcag.php:730 +#: includes/wcag.php:734 msgid "Contrast (Enhanced)" msgstr "Contraste (mejorado)" -#: includes/wcag.php:731 +#: includes/wcag.php:735 msgid "Text and images of text must have a contrast ratio of at least 7:1, except for large text, incidental text, or logotypes." msgstr "El texto y las imágenes de texto deben tener una relación de contraste de al menos 7:1, excepto para texto grande, texto incidental o logotipos." -#: includes/wcag.php:748 +#: includes/wcag.php:752 msgid "Low or No Background Audio" msgstr "Audio de fondo bajo o ausente" -#: includes/wcag.php:749 +#: includes/wcag.php:753 msgid "For prerecorded audio-only content, background sounds are either low, can be turned off, or are not present, so speech is easier to understand." msgstr "Para el contenido de solo audio pregrabado, los sonidos de fondo son bajos, se pueden apagar o no están presentes, para que el habla sea más fácil de entender." -#: includes/wcag.php:765 +#: includes/wcag.php:769 msgid "Visual Presentation" msgstr "Presentación visual" -#: includes/wcag.php:766 +#: includes/wcag.php:770 msgid "Users can choose how blocks of text are presented, such as foreground and background colors, width, and line spacing, to make reading easier." msgstr "Los usuarios pueden elegir cómo se presentan los bloques de texto, como los colores de primer plano y fondo, el ancho y el espaciado entre líneas, para facilitar la lectura." -#: includes/wcag.php:783 +#: includes/wcag.php:787 msgid "Images of Text (No Exception)" msgstr "Imágenes de texto (sin excepción)" -#: includes/wcag.php:784 +#: includes/wcag.php:788 msgid "Images of text are only used for pure decoration or where a particular presentation of text is essential, with no exceptions." msgstr "Las imágenes de texto solo se utilizan para decoración pura o cuando una presentación particular del texto es esencial, sin excepciones." -#: includes/wcag.php:800 +#: includes/wcag.php:804 msgid "Keyboard" msgstr "Teclado" -#: includes/wcag.php:801 +#: includes/wcag.php:805 msgid "All functionality is available using a keyboard, so users who cannot use a mouse can still operate the content." msgstr "Toda la funcionalidad está disponible usando un teclado, para que los usuarios que no pueden usar un ratón aún puedan operar el contenido." -#: includes/wcag.php:804 -#: includes/wcag.php:838 -#: includes/wcag.php:872 -#: includes/wcag.php:891 +#: includes/wcag.php:808 +#: includes/wcag.php:842 +#: includes/wcag.php:876 +#: includes/wcag.php:895 msgid "2.1 Keyboard Accessible" msgstr "2.1 accesible por teclado" -#: includes/wcag.php:805 -#: includes/wcag.php:839 -#: includes/wcag.php:873 -#: includes/wcag.php:892 -#: includes/wcag.php:919 -#: includes/wcag.php:953 -#: includes/wcag.php:987 -#: includes/wcag.php:1006 -#: includes/wcag.php:1026 -#: includes/wcag.php:1045 -#: includes/wcag.php:1064 -#: includes/wcag.php:1096 -#: includes/wcag.php:1113 -#: includes/wcag.php:1130 -#: includes/wcag.php:1163 -#: includes/wcag.php:1182 -#: includes/wcag.php:1199 -#: includes/wcag.php:1216 -#: includes/wcag.php:1233 -#: includes/wcag.php:1267 -#: includes/wcag.php:1301 -#: includes/wcag.php:1334 -#: includes/wcag.php:1368 -#: includes/wcag.php:1402 -#: includes/wcag.php:1436 -#: includes/wcag.php:1454 -#: includes/wcag.php:1472 -#: includes/wcag.php:1501 -#: includes/wcag.php:1531 -#: includes/wcag.php:1558 -#: includes/wcag.php:1585 -#: includes/wcag.php:1605 -#: includes/wcag.php:1622 -#: includes/wcag.php:1639 +#: includes/wcag.php:809 +#: includes/wcag.php:843 +#: includes/wcag.php:877 +#: includes/wcag.php:896 +#: includes/wcag.php:923 +#: includes/wcag.php:957 +#: includes/wcag.php:991 +#: includes/wcag.php:1010 +#: includes/wcag.php:1030 +#: includes/wcag.php:1049 +#: includes/wcag.php:1068 +#: includes/wcag.php:1100 +#: includes/wcag.php:1117 +#: includes/wcag.php:1134 +#: includes/wcag.php:1167 +#: includes/wcag.php:1186 +#: includes/wcag.php:1203 +#: includes/wcag.php:1220 +#: includes/wcag.php:1237 +#: includes/wcag.php:1271 +#: includes/wcag.php:1305 +#: includes/wcag.php:1338 +#: includes/wcag.php:1372 +#: includes/wcag.php:1406 +#: includes/wcag.php:1440 +#: includes/wcag.php:1458 +#: includes/wcag.php:1476 +#: includes/wcag.php:1505 +#: includes/wcag.php:1535 +#: includes/wcag.php:1562 +#: includes/wcag.php:1589 +#: includes/wcag.php:1609 +#: includes/wcag.php:1626 +#: includes/wcag.php:1643 msgid "Operable" msgstr "Operable" -#: includes/wcag.php:834 +#: includes/wcag.php:838 msgid "No Keyboard Trap" msgstr "Sin trampas de teclado" -#: includes/wcag.php:835 +#: includes/wcag.php:839 msgid "Keyboard users can move to and away from all parts of the content without getting stuck." msgstr "Los usuarios de teclado pueden moverse hacia y desde todas las partes del contenido sin quedarse atascados." -#: includes/wcag.php:868 +#: includes/wcag.php:872 msgid "Keyboard (No Exception)" msgstr "Teclado (sin excepción)" -#: includes/wcag.php:869 +#: includes/wcag.php:873 msgid "All functionality is available from a keyboard interface, with no exceptions." msgstr "Toda la funcionalidad está disponible desde una interfaz de teclado, sin excepciones." -#: includes/wcag.php:887 +#: includes/wcag.php:891 msgid "Character Key Shortcuts" msgstr "Atajos de teclado de caracteres" -#: includes/wcag.php:888 +#: includes/wcag.php:892 msgid "If a keyboard shortcut uses only letters, numbers, or punctuation, users can turn it off, change it, or it only works when the element has focus." msgstr "Si un atajo de teclado usa solo letras, números o puntuación, los usuarios pueden desactivarlo, cambiarlo o solo funciona cuando el elemento tiene el foco." -#: includes/wcag.php:914 +#: includes/wcag.php:918 msgid "Timing Adjustable" msgstr "Tiempo ajustable" -#: includes/wcag.php:915 +#: includes/wcag.php:919 msgid "If a time limit is set, users can turn it off, adjust it, or extend it unless the time limit is essential." msgstr "Si se establece un límite de tiempo, los usuarios pueden desactivarlo, ajustarlo o extenderlo a menos que el límite de tiempo sea esencial." -#: includes/wcag.php:918 -#: includes/wcag.php:952 -#: includes/wcag.php:986 -#: includes/wcag.php:1005 -#: includes/wcag.php:1025 -#: includes/wcag.php:1044 +#: includes/wcag.php:922 +#: includes/wcag.php:956 +#: includes/wcag.php:990 +#: includes/wcag.php:1009 +#: includes/wcag.php:1029 +#: includes/wcag.php:1048 msgid "2.2 Enough Time" msgstr "2.2 tiempo suficiente" -#: includes/wcag.php:921 -#: includes/wcag.php:989 -#: includes/wcag.php:1008 -#: includes/wcag.php:1028 -#: includes/wcag.php:1047 +#: includes/wcag.php:925 +#: includes/wcag.php:993 +#: includes/wcag.php:1012 +#: includes/wcag.php:1032 +#: includes/wcag.php:1051 msgid "People who need more time to react" msgstr "Personas que necesitan más tiempo para reaccionar" -#: includes/wcag.php:948 +#: includes/wcag.php:952 msgid "Pause, Stop, Hide" msgstr "Pausar, detener, ocultar" -#: includes/wcag.php:949 +#: includes/wcag.php:953 msgid "Users can pause, stop, or hide moving, blinking, scrolling, or auto-updating information that starts automatically and lasts more than five seconds." msgstr "Los usuarios pueden pausar, detener u ocultar información en movimiento, parpadeante, de desplazamiento o de actualización automática que comienza automáticamente y dura más de cinco segundos." -#: includes/wcag.php:982 +#: includes/wcag.php:986 msgid "No Timing" msgstr "Sin tiempo" -#: includes/wcag.php:983 +#: includes/wcag.php:987 msgid "If an element requires a response in a specific time, users can turn off the timer, adjust the time limit, or the timing is not essential." msgstr "Si un elemento requiere una respuesta en un tiempo específico, los usuarios pueden desactivar el temporizador, ajustar el límite de tiempo o el tiempo no es esencial." -#: includes/wcag.php:1001 +#: includes/wcag.php:1005 msgid "Interruptions" msgstr "Interrupciones" -#: includes/wcag.php:1002 +#: includes/wcag.php:1006 msgid "Users are not interrupted by unexpected changes in content, and can control interruptions such as auto-updating content." msgstr "Los usuarios no son interrumpidos por cambios inesperados en el contenido y pueden controlar las interrupciones, como el contenido de actualización automática." -#: includes/wcag.php:1021 +#: includes/wcag.php:1025 msgid "Re-authenticating" msgstr "Reautenticación" -#: includes/wcag.php:1022 +#: includes/wcag.php:1026 msgid "If users are logged out due to inactivity, they are notified before the session expires and can continue the session without losing data." msgstr "Si los usuarios son desconectados debido a la inactividad, se les notifica antes de que expire la sesión y pueden continuar la sesión sin perder datos." -#: includes/wcag.php:1040 +#: includes/wcag.php:1044 msgid "Timeouts" msgstr "Tiempos de espera" -#: includes/wcag.php:1041 +#: includes/wcag.php:1045 msgid "Users are warned of impending timeouts and can request more time or save their work before timing out." msgstr "Se advierte a los usuarios de los tiempos de espera inminentes y pueden solicitar más tiempo o guardar su trabajo antes de que se agote el tiempo." -#: includes/wcag.php:1059 +#: includes/wcag.php:1063 msgid "Three Flashes or Below Threshold" msgstr "Tres destellos o por debajo del umbral" -#: includes/wcag.php:1060 +#: includes/wcag.php:1064 msgid "Content does not flash more than three times in any one second period, reducing the risk of seizures for people with photosensitive epilepsy." msgstr "El contenido no destella más de tres veces en cualquier período de un segundo, reduciendo el riesgo de convulsiones para personas con epilepsia fotosensible." -#: includes/wcag.php:1063 -#: includes/wcag.php:1095 -#: includes/wcag.php:1112 +#: includes/wcag.php:1067 +#: includes/wcag.php:1099 +#: includes/wcag.php:1116 msgid "2.3 Seizures and Physical Reactions" msgstr "2.3 convulsiones y reacciones físicas" -#: includes/wcag.php:1066 -#: includes/wcag.php:1098 +#: includes/wcag.php:1070 +#: includes/wcag.php:1102 msgid "People with photosensitive epilepsy and other photosensitive seizure disorders" msgstr "Personas con epilepsia fotosensible y otros trastornos de convulsiones fotosensibles" -#: includes/wcag.php:1091 +#: includes/wcag.php:1095 msgid "Three Flashes" msgstr "Tres destellos" -#: includes/wcag.php:1092 +#: includes/wcag.php:1096 msgid "No part of the content flashes more than three times per second, with no exceptions." msgstr "Ninguna parte del contenido parpadea más de tres veces por segundo, sin excepciones." -#: includes/wcag.php:1108 +#: includes/wcag.php:1112 msgid "Animation from Interactions" msgstr "Animación de interacciones" -#: includes/wcag.php:1109 +#: includes/wcag.php:1113 msgid "Users can turn off non-essential animations triggered by interactions, helping those who are sensitive to motion." msgstr "Los usuarios pueden desactivar las animaciones no esenciales activadas por interacciones, ayudando a aquellos que son sensibles al movimiento." -#: includes/wcag.php:1115 +#: includes/wcag.php:1119 msgid "People with vestibular (inner ear) disorders where movement can cause dizziness/headaches and nausea" msgstr "Personas con trastornos vestibulares (oído interno) donde el movimiento puede causar mareos/dolores de cabeza y náuseas" -#: includes/wcag.php:1125 +#: includes/wcag.php:1129 msgid "Bypass Blocks" msgstr "Saltar bloques" -#: includes/wcag.php:1126 +#: includes/wcag.php:1130 msgid "A way is available to skip repeated blocks of content, such as navigation menus, so users can quickly reach the main content." msgstr "Hay disponible una forma de saltar bloques repetidos de contenido, como menús de navegación, para que los usuarios puedan llegar rápidamente al contenido principal." -#: includes/wcag.php:1129 -#: includes/wcag.php:1162 -#: includes/wcag.php:1181 -#: includes/wcag.php:1198 -#: includes/wcag.php:1215 -#: includes/wcag.php:1232 -#: includes/wcag.php:1266 -#: includes/wcag.php:1300 -#: includes/wcag.php:1333 -#: includes/wcag.php:1367 -#: includes/wcag.php:1401 -#: includes/wcag.php:1435 -#: includes/wcag.php:1453 +#: includes/wcag.php:1133 +#: includes/wcag.php:1166 +#: includes/wcag.php:1185 +#: includes/wcag.php:1202 +#: includes/wcag.php:1219 +#: includes/wcag.php:1236 +#: includes/wcag.php:1270 +#: includes/wcag.php:1304 +#: includes/wcag.php:1337 +#: includes/wcag.php:1371 +#: includes/wcag.php:1405 +#: includes/wcag.php:1439 +#: includes/wcag.php:1457 msgid "2.4 Navigable" msgstr "2.4 navegable" -#: includes/wcag.php:1158 +#: includes/wcag.php:1162 msgid "Section Headings" msgstr "Encabezados de sección" -#: includes/wcag.php:1159 +#: includes/wcag.php:1163 msgid "Section headings are used to organize content, making it easier to understand and navigate." msgstr "Se utilizan encabezados de sección para organizar el contenido, facilitando su comprensión y navegación." -#: includes/wcag.php:1177 +#: includes/wcag.php:1181 msgid "Focus Not Obscured (Minimum)" msgstr "Foco no oscurecido (mínimo)" -#: includes/wcag.php:1178 +#: includes/wcag.php:1182 msgid "When an element receives keyboard focus, it is at least partially visible and not hidden by other content." msgstr "Cuando un elemento recibe el foco del teclado, es al menos parcialmente visible y no está oculto por otro contenido." -#: includes/wcag.php:1194 +#: includes/wcag.php:1198 msgid "Focus Not Obscured (Enhanced)" msgstr "Foco no oscurecido (mejorado)" -#: includes/wcag.php:1195 +#: includes/wcag.php:1199 msgid "When an element receives keyboard focus, it is fully visible and not hidden by other content." msgstr "Cuando un elemento recibe el foco del teclado, es completamente visible y no está oculto por otro contenido." -#: includes/wcag.php:1211 +#: includes/wcag.php:1215 msgid "Focus Appearance" msgstr "Apariencia del foco" -#: includes/wcag.php:1212 +#: includes/wcag.php:1216 msgid "The visible focus indicator for interactive elements is clearly visible and meets minimum size and contrast requirements." msgstr "El indicador de foco visible para elementos interactivos es claramente visible y cumple con los requisitos mínimos de tamaño y contraste." -#: includes/wcag.php:1228 +#: includes/wcag.php:1232 msgid "Page Titled" msgstr "Título de la página" -#: includes/wcag.php:1229 +#: includes/wcag.php:1233 msgid "Web pages have descriptive titles that help users understand the topic or purpose of the page." msgstr "Las páginas web tienen títulos descriptivos que ayudan a los usuarios a entender el tema o propósito de la página." -#: includes/wcag.php:1236 -#: includes/wcag.php:2149 +#: includes/wcag.php:1240 +#: includes/wcag.php:2153 msgid "People with severe mobility impairments relying on audio to navigate the web" msgstr "Personas con discapacidades de movilidad severas que dependen del audio para navegar por la web" -#: includes/wcag.php:1262 +#: includes/wcag.php:1266 msgid "Focus Order" msgstr "Orden del foco" -#: includes/wcag.php:1263 +#: includes/wcag.php:1267 msgid "When navigating with a keyboard, focus moves in a logical order that preserves meaning and operability." msgstr "Al navegar con el teclado, el foco se mueve en un orden lógico que preserva el significado y la operabilidad." -#: includes/wcag.php:1296 +#: includes/wcag.php:1300 msgid "Link Purpose (In Context)" msgstr "Propósito del enlace (en contexto)" -#: includes/wcag.php:1297 +#: includes/wcag.php:1301 msgid "The purpose of each link is clear from the link text and the context in which it appears, so users know where the link will take them." msgstr "El propósito de cada enlace es claro a partir del texto del enlace y el contexto en el que aparece, para que los usuarios sepan a dónde los llevará el enlace." -#: includes/wcag.php:1329 +#: includes/wcag.php:1333 msgid "Multiple Ways" msgstr "Múltiples vías" -#: includes/wcag.php:1330 +#: includes/wcag.php:1334 msgid "More than one way is available to locate a web page within a set of web pages, except where the web page is the result of a query." msgstr "Hay disponible más de una forma de localizar una página web dentro de un conjunto de páginas web, excepto cuando la página web es el resultado de una consulta." -#: includes/wcag.php:1363 +#: includes/wcag.php:1367 msgid "Headings and Labels" msgstr "Encabezados y etiquetas" -#: includes/wcag.php:1364 +#: includes/wcag.php:1368 msgid "Headings and labels describe the topic or purpose of content, and are not ambiguous or misleading." msgstr "Los encabezados y etiquetas describen el tema o propósito del contenido, y no son ambiguos ni engañosos." -#: includes/wcag.php:1397 +#: includes/wcag.php:1401 msgid "Focus Visible" msgstr "Foco visible" -#: includes/wcag.php:1398 +#: includes/wcag.php:1402 msgid "It is visible when an element has keyboard focus, so users navigating with a keyboard can see which element is active." msgstr "Es visible cuando un elemento tiene el foco del teclado, para que los usuarios que navegan con el teclado puedan ver qué elemento está activo." -#: includes/wcag.php:1431 +#: includes/wcag.php:1435 msgid "Location" msgstr "Ubicación" -#: includes/wcag.php:1432 +#: includes/wcag.php:1436 msgid "Users are informed about their location within a set of web pages, such as through breadcrumb navigation or a clear page title." msgstr "Se informa a los usuarios sobre su ubicación dentro de un conjunto de páginas web, como a través de una navegación de migas de pan o un título de página claro." -#: includes/wcag.php:1449 +#: includes/wcag.php:1453 msgid "Link Purpose (Link Only)" msgstr "Propósito del enlace (solo enlace)" -#: includes/wcag.php:1450 +#: includes/wcag.php:1454 msgid "The purpose of each link can be determined by the link text alone, without needing additional context." msgstr "El propósito de cada enlace se puede determinar por el texto del enlace solo, sin necesidad de contexto adicional." -#: includes/wcag.php:1467 +#: includes/wcag.php:1471 msgid "Pointer Gestures" msgstr "Gestos del puntero" -#: includes/wcag.php:1468 +#: includes/wcag.php:1472 msgid "For functionality that can be operated by a pointer gesture, at least one of the following is true: the gesture can be performed by a simple tap, the gesture can be performed with a single finger, or the gesture can be performed with a voice command." msgstr "Para la funcionalidad que se puede operar mediante un gesto del puntero, al menos una de las siguientes es verdadera: el gesto se puede realizar con un simple toque, el gesto se puede realizar con un solo dedo, o el gesto se puede realizar con un comando de voz." -#: includes/wcag.php:1471 -#: includes/wcag.php:1500 -#: includes/wcag.php:1530 -#: includes/wcag.php:1557 -#: includes/wcag.php:1584 -#: includes/wcag.php:1604 -#: includes/wcag.php:1621 -#: includes/wcag.php:1638 +#: includes/wcag.php:1475 +#: includes/wcag.php:1504 +#: includes/wcag.php:1534 +#: includes/wcag.php:1561 +#: includes/wcag.php:1588 +#: includes/wcag.php:1608 +#: includes/wcag.php:1625 +#: includes/wcag.php:1642 msgid "2.5 Input Modalities" msgstr "2.5 modalidades de entrada" -#: includes/wcag.php:1496 +#: includes/wcag.php:1500 msgid "Pointer Cancellation" msgstr "Cancelación del puntero" -#: includes/wcag.php:1497 +#: includes/wcag.php:1501 msgid "For actions that require a pointer gesture, the user can cancel the action by moving the pointer away before the action is completed." msgstr "Para las acciones que requieren un gesto del puntero, el usuario puede cancelar la acción moviendo el puntero antes de que se complete la acción." -#: includes/wcag.php:1526 +#: includes/wcag.php:1530 msgid "Label in Name" msgstr "Etiqueta en el nombre" -#: includes/wcag.php:1527 +#: includes/wcag.php:1531 msgid "The name of user interface components includes text labels that describe their purpose, so assistive technologies can convey this information to users." msgstr "El nombre de los componentes de la interfaz de usuario incluye etiquetas de texto que describen su propósito, para que las tecnologías de asistencia puedan transmitir esta información a los usuarios." -#: includes/wcag.php:1553 +#: includes/wcag.php:1557 msgid "Motion Actuation" msgstr "Actuación por movimiento" -#: includes/wcag.php:1554 +#: includes/wcag.php:1558 msgid "Functionality that can be operated by a motion gesture can also be operated by a simple touch or click, so users who cannot perform motion gestures can still use the functionality." msgstr "La funcionalidad que se puede operar mediante un gesto de movimiento también se puede operar con un simple toque o clic, para que los usuarios que no pueden realizar gestos de movimiento aún puedan usar la funcionalidad." -#: includes/wcag.php:1580 +#: includes/wcag.php:1584 msgid "Target Size" msgstr "Tamaño del objetivo" -#: includes/wcag.php:1581 +#: includes/wcag.php:1585 msgid "The size of the target for pointer gestures is large enough to be easily activated, even by users with limited dexterity." msgstr "El tamaño del objetivo para los gestos del puntero es lo suficientemente grande como para activarse fácilmente, incluso por usuarios con destreza limitada." -#: includes/wcag.php:1587 +#: includes/wcag.php:1591 msgid "People using a mobile device in environments where they are exposed to shaking (such as public transportation)" msgstr "Personas que usan un dispositivo móvil en entornos donde están expuestas a sacudidas (como el transporte público)" -#: includes/wcag.php:1588 +#: includes/wcag.php:1592 msgid "People with dexterity and mobility impairments including hand tremors" msgstr "Personas con discapacidades de destreza y movilidad, incluyendo temblores en las manos" -#: includes/wcag.php:1590 -#: includes/wcag.php:1644 +#: includes/wcag.php:1594 +#: includes/wcag.php:1648 msgid "People with with large fingers or who are operating the device with only a part of their finger or knuckle" msgstr "Personas con dedos grandes o que operan el dispositivo solo con una parte de su dedo o nudillo" -#: includes/wcag.php:1600 +#: includes/wcag.php:1604 msgid "Concurrent Input Mechanisms" msgstr "Mecanismos de entrada concurrentes" -#: includes/wcag.php:1601 +#: includes/wcag.php:1605 msgid "If an input mechanism requires a specific posture or movement, an alternative input mechanism is available that does not have the same requirement." msgstr "Si un mecanismo de entrada requiere una postura o movimiento específico, hay disponible un mecanismo de entrada alternativo que no tiene el mismo requisito." -#: includes/wcag.php:1617 +#: includes/wcag.php:1621 msgid "Dragging Movements" msgstr "Movimientos de arrastre" -#: includes/wcag.php:1618 +#: includes/wcag.php:1622 msgid "For functionality that requires dragging movements, the action can also be completed by simpler actions, so users with limited dexterity can still use the functionality." msgstr "Para la funcionalidad que requiere movimientos de arrastre, la acción también se puede completar con acciones más simples, para que los usuarios con destreza limitada aún puedan usar la funcionalidad." -#: includes/wcag.php:1634 +#: includes/wcag.php:1638 msgid "Target Size (Minimum)" msgstr "Tamaño del objetivo (mínimo)" -#: includes/wcag.php:1635 +#: includes/wcag.php:1639 msgid "The target size for any interactive element is at least 44x44 pixels, so it can be easily activated by users with various abilities." msgstr "El tamaño del objetivo para cualquier elemento interactivo es de al menos 44x44 píxeles, para que pueda ser activado fácilmente por usuarios con diversas capacidades." -#: includes/wcag.php:1654 +#: includes/wcag.php:1658 msgid "Language of Page" msgstr "Idioma de la página" -#: includes/wcag.php:1655 +#: includes/wcag.php:1659 msgid "The default language of each web page is programmatically determined, so assistive technologies can use the correct language settings." msgstr "El idioma predeterminado de cada página web se determina programáticamente, para que las tecnologías de asistencia puedan usar la configuración de idioma correcta." -#: includes/wcag.php:1658 -#: includes/wcag.php:1692 -#: includes/wcag.php:1724 -#: includes/wcag.php:1744 -#: includes/wcag.php:1763 -#: includes/wcag.php:1782 +#: includes/wcag.php:1662 +#: includes/wcag.php:1696 +#: includes/wcag.php:1728 +#: includes/wcag.php:1748 +#: includes/wcag.php:1767 +#: includes/wcag.php:1786 msgid "3.1 Readable" msgstr "3.1 legible" -#: includes/wcag.php:1659 -#: includes/wcag.php:1693 -#: includes/wcag.php:1725 -#: includes/wcag.php:1745 -#: includes/wcag.php:1764 -#: includes/wcag.php:1783 -#: includes/wcag.php:1802 -#: includes/wcag.php:1837 -#: includes/wcag.php:1873 -#: includes/wcag.php:1904 -#: includes/wcag.php:1935 -#: includes/wcag.php:1955 -#: includes/wcag.php:1972 -#: includes/wcag.php:2006 -#: includes/wcag.php:2040 -#: includes/wcag.php:2074 -#: includes/wcag.php:2108 -#: includes/wcag.php:2127 -#: includes/wcag.php:2146 -#: includes/wcag.php:2164 -#: includes/wcag.php:2181 +#: includes/wcag.php:1663 +#: includes/wcag.php:1697 +#: includes/wcag.php:1729 +#: includes/wcag.php:1749 +#: includes/wcag.php:1768 +#: includes/wcag.php:1787 +#: includes/wcag.php:1806 +#: includes/wcag.php:1841 +#: includes/wcag.php:1877 +#: includes/wcag.php:1908 +#: includes/wcag.php:1939 +#: includes/wcag.php:1959 +#: includes/wcag.php:1976 +#: includes/wcag.php:2010 +#: includes/wcag.php:2044 +#: includes/wcag.php:2078 +#: includes/wcag.php:2112 +#: includes/wcag.php:2131 +#: includes/wcag.php:2150 +#: includes/wcag.php:2168 +#: includes/wcag.php:2185 msgid "Understandable" msgstr "Comprensible" -#: includes/wcag.php:1688 +#: includes/wcag.php:1692 msgid "Language of Parts" msgstr "Idioma de las partes" -#: includes/wcag.php:1689 +#: includes/wcag.php:1693 msgid "The language of each part of the content can be programmatically determined, so assistive technologies can provide appropriate language support." msgstr "El idioma de cada parte del contenido se puede determinar programáticamente, para que las tecnologías de asistencia puedan proporcionar el soporte de idioma apropiado." -#: includes/wcag.php:1720 +#: includes/wcag.php:1724 msgid "Unusual Words" msgstr "Palabras inusuales" -#: includes/wcag.php:1721 +#: includes/wcag.php:1725 msgid "Unusual or rare words are defined or explained, so users with cognitive disabilities or who are not familiar with the language can understand them." msgstr "Las palabras inusuales o raras se definen o explican, para que los usuarios con discapacidades cognitivas o que no están familiarizados con el idioma puedan entenderlas." -#: includes/wcag.php:1740 +#: includes/wcag.php:1744 msgid "Abbreviations" msgstr "Abreviaturas" -#: includes/wcag.php:1741 +#: includes/wcag.php:1745 msgid "Abbreviations and acronyms are defined the first time they are used, so users can understand their meaning." msgstr "Las abreviaturas y acrónimos se definen la primera vez que se usan, para que los usuarios puedan entender su significado." -#: includes/wcag.php:1759 -msgid "Reading Level" -msgstr "Nivel de lectura" - -#: includes/wcag.php:1760 +#: includes/wcag.php:1764 msgid "Content is written in a clear and simple language, and does not require specialized knowledge to understand." msgstr "El contenido está escrito en un lenguaje claro y simple, y no requiere conocimientos especializados para entenderlo." -#: includes/wcag.php:1778 +#: includes/wcag.php:1782 msgid "Pronunciation" msgstr "Pronunciación" -#: includes/wcag.php:1779 +#: includes/wcag.php:1783 msgid "A pronunciation guide is available for unusual or difficult words, so users can understand how to say them." msgstr "Hay disponible una guía de pronunciación para palabras inusuales o difíciles, para que los usuarios puedan saber cómo pronunciarlas." -#: includes/wcag.php:1797 +#: includes/wcag.php:1801 msgid "On Focus" msgstr "Al recibir el foco" -#: includes/wcag.php:1798 +#: includes/wcag.php:1802 msgid "When an element receives focus, it does not cause unexpected changes that could confuse the user, and it is clear how to interact with the element." msgstr "Cuando un elemento recibe el foco, no causa cambios inesperados que puedan confundir al usuario, y está claro cómo interactuar con el elemento." -#: includes/wcag.php:1801 -#: includes/wcag.php:1836 -#: includes/wcag.php:1872 -#: includes/wcag.php:1903 -#: includes/wcag.php:1934 -#: includes/wcag.php:1954 +#: includes/wcag.php:1805 +#: includes/wcag.php:1840 +#: includes/wcag.php:1876 +#: includes/wcag.php:1907 +#: includes/wcag.php:1938 +#: includes/wcag.php:1958 msgid "3.2 Predictable" msgstr "3.2 predecible" -#: includes/wcag.php:1832 +#: includes/wcag.php:1836 msgid "On Input" msgstr "Al recibir entrada" -#: includes/wcag.php:1833 +#: includes/wcag.php:1837 msgid "When an input field receives data, it does not cause unexpected changes that could confuse the user, and it is clear how the data will be used." msgstr "Cuando un campo de entrada recibe datos, no causa cambios inesperados que puedan confundir al usuario, y queda claro cómo se utilizarán los datos." -#: includes/wcag.php:1868 +#: includes/wcag.php:1872 msgid "Consistent Navigation" msgstr "Navegación coherente" -#: includes/wcag.php:1869 +#: includes/wcag.php:1873 msgid "Navigation mechanisms are consistent across the website, so users can predictably move through the site." msgstr "Los mecanismos de navegación son coherentes en todo el sitio web, para que los usuarios puedan moverse de forma predecible por el sitio." -#: includes/wcag.php:1899 +#: includes/wcag.php:1903 msgid "Consistent Identification" msgstr "Identificación coherente" -#: includes/wcag.php:1900 +#: includes/wcag.php:1904 msgid "Components that have the same functionality within a set of web pages are identified consistently, so users can recognize them easily." msgstr "Los componentes que tienen la misma funcionalidad dentro de un conjunto de páginas web se identifican de manera coherente, para que los usuarios puedan reconocerlos fácilmente." -#: includes/wcag.php:1930 +#: includes/wcag.php:1934 msgid "Change on Request" msgstr "Cambio a petición" -#: includes/wcag.php:1931 +#: includes/wcag.php:1935 msgid "Changes in content or context that occur as a result of user input do not occur unexpectedly, and users are notified of any changes." msgstr "Los cambios en el contenido o el contexto que se producen como resultado de la entrada del usuario no ocurren de forma inesperada, y se notifica a los usuarios de cualquier cambio." -#: includes/wcag.php:1950 +#: includes/wcag.php:1954 msgid "Consistent Help" msgstr "Ayuda coherente" -#: includes/wcag.php:1951 -#: includes/wcag.php:2104 +#: includes/wcag.php:1955 +#: includes/wcag.php:2108 msgid "Help and documentation are available and are easy to find, so users can get assistance when needed." msgstr "La ayuda y la documentación están disponibles y son fáciles de encontrar, para que los usuarios puedan obtener asistencia cuando la necesiten." -#: includes/wcag.php:1967 +#: includes/wcag.php:1971 msgid "Error Identification" msgstr "Identificación de errores" -#: includes/wcag.php:1968 -#: includes/wcag.php:2036 +#: includes/wcag.php:1972 +#: includes/wcag.php:2040 msgid "If an input error is detected and suggestions for correction are known, then the suggestions are provided to the user." msgstr "Si se detecta un error de entrada y se conocen sugerencias para corregirlo, entonces se proporcionan las sugerencias al usuario." -#: includes/wcag.php:1971 -#: includes/wcag.php:2005 -#: includes/wcag.php:2039 -#: includes/wcag.php:2073 -#: includes/wcag.php:2107 -#: includes/wcag.php:2126 -#: includes/wcag.php:2145 -#: includes/wcag.php:2163 -#: includes/wcag.php:2180 +#: includes/wcag.php:1975 +#: includes/wcag.php:2009 +#: includes/wcag.php:2043 +#: includes/wcag.php:2077 +#: includes/wcag.php:2111 +#: includes/wcag.php:2130 +#: includes/wcag.php:2149 +#: includes/wcag.php:2167 +#: includes/wcag.php:2184 msgid "3.3 Input Assistance" msgstr "3.3 asistencia de entrada" -#: includes/wcag.php:2001 +#: includes/wcag.php:2005 msgid "Labels or Instructions" msgstr "Etiquetas o instrucciones" -#: includes/wcag.php:2002 +#: includes/wcag.php:2006 msgid "Labels or instructions are provided when an input field requires user input, so users know what information is needed." msgstr "Se proporcionan etiquetas o instrucciones cuando un campo de entrada requiere la entrada del usuario, para que los usuarios sepan qué información se necesita." -#: includes/wcag.php:2035 +#: includes/wcag.php:2039 msgid "Error Suggestion" msgstr "Sugerencia de error" -#: includes/wcag.php:2069 +#: includes/wcag.php:2073 msgid "Error Prevention (Legal, Financial, Data)" msgstr "Prevención de errores (legal, financiero, datos)" -#: includes/wcag.php:2070 -#: includes/wcag.php:2123 +#: includes/wcag.php:2074 +#: includes/wcag.php:2127 msgid "For web pages that require user input, users are warned of errors and can correct them before finalizing the submission." msgstr "En las páginas web que requieren la entrada del usuario, se advierte a los usuarios de los errores y pueden corregirlos antes de finalizar el envío." -#: includes/wcag.php:2103 +#: includes/wcag.php:2107 msgid "Help" msgstr "Ayuda" -#: includes/wcag.php:2122 +#: includes/wcag.php:2126 msgid "Error Prevention (All)" msgstr "Prevención de errores (todos)" -#: includes/wcag.php:2141 +#: includes/wcag.php:2145 msgid "Redundant Entry" msgstr "Entrada redundante" -#: includes/wcag.php:2142 +#: includes/wcag.php:2146 msgid "Users are not required to enter the same information multiple times, reducing the risk of errors and saving time." msgstr "No se requiere que los usuarios introduzcan la misma información varias veces, reduciendo el riesgo de errores y ahorrando tiempo." -#: includes/wcag.php:2159 +#: includes/wcag.php:2163 msgid "Accessible Authentication (Minimum)" msgstr "Autenticación accesible (mínima)" -#: includes/wcag.php:2160 +#: includes/wcag.php:2164 msgid "Authentication processes do not rely on cognitive function tests like remembering a password or solving a puzzle, unless an alternative is provided." msgstr "Los procesos de autenticación no dependen de pruebas de función cognitiva como recordar una contraseña o resolver un rompecabezas, a menos que se proporcione una alternativa." -#: includes/wcag.php:2176 +#: includes/wcag.php:2180 msgid "Accessible Authentication (Enhanced)" msgstr "Autenticación accesible (mejorada)" -#: includes/wcag.php:2177 +#: includes/wcag.php:2181 msgid "Enhanced authentication methods are provided that do not rely on cognitive function tests, such as remembering passwords, and do not require a test of cognitive function." msgstr "Se proporcionan métodos de autenticación mejorados que no dependen de pruebas de función cognitiva, como recordar contraseñas, y no requieren una prueba de función cognitiva." -#: includes/wcag.php:2193 +#: includes/wcag.php:2197 msgid "Parsing" msgstr "Análisis" -#: includes/wcag.php:2194 +#: includes/wcag.php:2198 msgid "Content is coded so that assistive technologies can accurately interpret and present it to users." msgstr "El contenido está codificado para que las tecnologías de asistencia puedan interpretarlo y presentarlo con precisión a los usuarios." -#: includes/wcag.php:2197 -#: includes/wcag.php:2231 -#: includes/wcag.php:2264 +#: includes/wcag.php:2201 +#: includes/wcag.php:2235 +#: includes/wcag.php:2268 msgid "4.1 Compatible" msgstr "4.1 compatible" -#: includes/wcag.php:2198 -#: includes/wcag.php:2232 -#: includes/wcag.php:2265 +#: includes/wcag.php:2202 +#: includes/wcag.php:2236 +#: includes/wcag.php:2269 msgid "Robust" msgstr "Robusto" -#: includes/wcag.php:2201 -#: includes/wcag.php:2235 +#: includes/wcag.php:2205 +#: includes/wcag.php:2239 msgid "People with low vision using screen magnifiers" msgstr "Personas con baja visión que utilizan magnificadores de pantalla" -#: includes/wcag.php:2227 +#: includes/wcag.php:2231 msgid "Name, Role, Value" msgstr "Nombre, rol, valor" -#: includes/wcag.php:2228 +#: includes/wcag.php:2232 msgid "User interface components have names, roles, and values that can be programmatically determined, so assistive technologies can communicate them to users." msgstr "Los componentes de la interfaz de usuario tienen nombres, roles y valores que se pueden determinar programáticamente, para que las tecnologías de asistencia puedan comunicarlos a los usuarios." -#: includes/wcag.php:2260 +#: includes/wcag.php:2264 msgid "Status Messages" msgstr "Mensajes de estado" -#: includes/wcag.php:2261 +#: includes/wcag.php:2265 msgid "Status messages are programmatically determined so that assistive technologies can notify users of important changes, such as form errors or updates." msgstr "Los mensajes de estado se determinan programáticamente para que las tecnologías de asistencia puedan notificar a los usuarios de cambios importantes, como errores de formulario o actualizaciones." -#: includes/wcag.php:2286 +#: includes/wcag.php:2290 msgid "Best Practice" msgstr "Mejor práctica" -#: includes/wcag.php:2287 +#: includes/wcag.php:2291 msgid "A usability improvement or convention that enhances accessibility but is not required for WCAG compliance." msgstr "Una mejora de usabilidad o convención que mejora la accesibilidad pero no es necesaria para el cumplimiento de WCAG." -#: includes/wcag.php:2301 +#: includes/wcag.php:2305 msgid "Non-WCAG Accessibility Issue" msgstr "Problema de accesibilidad no WCAG" -#: includes/wcag.php:2302 +#: includes/wcag.php:2306 msgid "A problem that affects users with disabilities but doesn't map directly to a current WCAG success criterion." msgstr "Un problema que afecta a los usuarios con discapacidades pero que no se corresponde directamente con un criterio de éxito WCAG actual." -#: includes/wcag.php:2316 +#: includes/wcag.php:2320 msgid "Manual Testing Needed (Multiple Success Criteria)" msgstr "Se necesita prueba manual (múltiples criterios de éxito)" -#: includes/wcag.php:2317 +#: includes/wcag.php:2321 msgid "Used for documents, media, and other non-scannable content that require manual testing and are likely to fail multiple WCAG success criteria." msgstr "Se utiliza para documentos, medios y otro contenido no escaneable que requiere pruebas manuales y es probable que no cumpla múltiples criterios de éxito de WCAG." -#: partials/admin-page/fixes-page.php:14 +#: partials/admin-page/fixes-page.php:18 msgid "Settings Saved. To confirm and reflect these updates in your site's statistics, please rescan your site. If you are using a caching plugin, make sure to clear the cache to ensure the updated fixes are applied correctly." msgstr "Ajustes guardados. Para confirmar y reflejar estas actualizaciones en las estadísticas de su sitio, vuelva a escanear su sitio. Si está utilizando un plugin de caché, asegúrese de borrar la caché para garantizar que las correcciones actualizadas se apliquen correctamente." -#: partials/admin-page/fixes-page.php:22 +#: partials/admin-page/fixes-page.php:26 msgid "The Accessibility New Window Warnings plugin is installed. The fix for links opening in a new window included here will override its functionality. You can safely remove the plugin and use these fixes instead." msgstr "El plugin Accessibility New Window Warnings está instalado. La corrección para los enlaces que se abren en una nueva ventana incluida aquí anulará su funcionalidad. Puede eliminar el plugin de forma segura y utilizar estas correcciones en su lugar." -#: partials/custom-meta-box.php:10 +#: partials/custom-meta-box.php:17 msgid "Accessibility Checker issues panels" msgstr "Paneles de problemas de Accessibility Checker" -#: partials/custom-meta-box.php:21 -msgid "Summary" -msgstr "Resumen" +#: partials/custom-meta-box.php:28 +#: build/sidebar.bundle.js:2 +msgid "Accessibility Status" +msgstr "Estado de accesibilidad" -#: partials/custom-meta-box.php:31 -msgid "Details" -msgstr "Detalles" +#: partials/custom-meta-box.php:38 +#: build/sidebar.bundle.js:2 +msgid "Accessibility Analysis" +msgstr "Análisis de accesibilidad" -#: partials/custom-meta-box.php:41 -msgid "Readability" -msgstr "Legibilidad" +#: partials/custom-meta-box.php:48 +#: build/sidebar.bundle.js:2 +msgid "Readability Analysis" +msgstr "Análisis de legibilidad" -#: partials/custom-meta-box.php:50 +#: partials/custom-meta-box.php:57 msgid "Delete all currently found issues" msgstr "Eliminar todos los problemas encontrados actualmente" -#: partials/custom-meta-box.php:52 +#: partials/custom-meta-box.php:59 #: build/editorApp.bundle.js:2 #: build/frontendHighlighterApp.bundle.js:2 +#: build/sidebar.bundle.js:2 msgid "Clear Issues" msgstr "Borrar problemas" -#: partials/pro-callout.php:13 -#: partials/welcome-page.php:199 +#: partials/pro-callout.php:17 +#: partials/welcome-page.php:203 msgid "Equalize Digital Logo" msgstr "Logo de Equalize Digital" -#: partials/pro-callout.php:16 -#: partials/welcome-page.php:200 +#: partials/pro-callout.php:20 +#: partials/welcome-page.php:204 msgid "Upgrade to Accessibility Checker Pro" msgstr "Actualizar a Accessibility Checker Pro" -#: partials/pro-callout.php:20 -#: partials/welcome-page.php:203 +#: partials/pro-callout.php:24 +#: partials/welcome-page.php:207 msgid "Scan all post types" msgstr "Escanear todos los tipos de publicaciones" -#: partials/pro-callout.php:21 -#: partials/welcome-page.php:204 +#: partials/pro-callout.php:25 +#: partials/welcome-page.php:208 msgid "Admin columns to see accessibility status at a glance" msgstr "Columnas de administración para ver el estado de accesibilidad de un vistazo" -#: partials/pro-callout.php:22 -#: partials/welcome-page.php:205 +#: partials/pro-callout.php:26 +#: partials/welcome-page.php:209 msgid "Centralized list of all open issues" msgstr "Lista centralizada de todos los problemas abiertos" -#: partials/pro-callout.php:23 -#: partials/welcome-page.php:206 +#: partials/pro-callout.php:27 +#: partials/welcome-page.php:210 msgid "Ignore log" msgstr "Registro de ignorados" -#: partials/pro-callout.php:24 -#: partials/welcome-page.php:207 +#: partials/pro-callout.php:28 +#: partials/welcome-page.php:211 msgid "Rename simplified summary" msgstr "Renombrar resumen simplificado" -#: partials/pro-callout.php:25 -#: partials/welcome-page.php:208 +#: partials/pro-callout.php:29 +#: partials/welcome-page.php:212 msgid "User restrictions on ignoring issues" msgstr "Restricciones de usuario para ignorar problemas" -#: partials/pro-callout.php:26 -#: partials/welcome-page.php:209 +#: partials/pro-callout.php:30 +#: partials/welcome-page.php:213 msgid "Email support" msgstr "Soporte por email" -#: partials/pro-callout.php:27 -#: partials/welcome-page.php:210 +#: partials/pro-callout.php:31 +#: partials/welcome-page.php:214 msgid "...and more" msgstr "...y más" -#: partials/pro-callout.php:57 -#: partials/welcome-page.php:223 +#: partials/pro-callout.php:61 +#: partials/welcome-page.php:227 msgid "Or activate your license key here." msgstr "O active su clave de licencia aquí." -#: partials/settings-page.php:20 +#: partials/settings-page.php:24 msgid "General" msgstr "General" -#: partials/welcome-page.php:31 +#: partials/welcome-page.php:35 msgid "version" msgstr "versión" -#: partials/welcome-page.php:40 +#: partials/welcome-page.php:44 msgid "Link to Equalize Digital Website" msgstr "Enlace al sitio web de Equalize Digital" -#: partials/welcome-page.php:49 +#: partials/welcome-page.php:53 msgid "Quick Start Guide" msgstr "Guía de inicio rápido" -#: partials/welcome-page.php:50 +#: partials/welcome-page.php:54 msgid "Follow these steps to get started checking your content:" msgstr "Siga estos pasos para comenzar a comprobar su contenido:" #. translators: %s: path to settings page. -#: partials/welcome-page.php:57 +#: partials/welcome-page.php:61 #, php-format msgid "On the Settings Page, choose which post types you want to scan." msgstr "En la Página de Ajustes, elija qué tipos de publicaciones desea escanear." -#: partials/welcome-page.php:64 +#: partials/welcome-page.php:68 msgid "Go to the edit screen for the post you want to check." msgstr "Vaya a la pantalla de edición de la publicación que desea comprobar." -#: partials/welcome-page.php:65 +#: partials/welcome-page.php:69 msgid "Find the Accessibility Checker meta box below your content. If using a front-end page builder, you must visit the backend edit screen to view Accessibility Checker results." msgstr "Encuentra el metabox de Accessibility Checker debajo de tu contenido. Si utilizas un constructor de páginas en el frontend, debes visitar la pantalla de edición del backend para ver los resultados de Accessibility Checker." -#: partials/welcome-page.php:66 +#: partials/welcome-page.php:70 msgid "If errors or warnings are present on your post, open the details tab in Accessibility Checker for more information." msgstr "Si hay errores o advertencias presentes en tu entrada, abre la pestaña de detalles en Accessibility Checker para obtener más información." -#: partials/welcome-page.php:67 +#: partials/welcome-page.php:71 msgid "Expand each issue to see the code, or click \"view on page\" if you need help finding the element that needs fixing." msgstr "Expanda cada problema para ver el código, o haga clic en “ver en la página” si necesita ayuda para encontrar el elemento que necesita corrección." -#: partials/welcome-page.php:68 +#: partials/welcome-page.php:72 msgid "If you don't know what an error or warning means, click the \"i\" icon to read the documentation and how to fix it." msgstr "Si no sabe lo que significa un error o advertencia, haga clic en el icono “i” para leer la documentación y cómo solucionarlo." -#: partials/welcome-page.php:69 +#: partials/welcome-page.php:73 msgid "If an issue is a false positive and the element is accessible, you can remove issues from reports with the \"Ignore\" feature." msgstr "Si un problema es un falso positivo y el elemento es accesible, puede eliminar los problemas de los informes con la función “Ignorar”." -#: partials/welcome-page.php:70 +#: partials/welcome-page.php:74 msgid "After fixing each issue, update the post to see the accessibility report change. Your goal is to get every page to say 100% Passed Tests." msgstr "Después de corregir cada problema, actualice la publicación para ver el cambio en el informe de accesibilidad. Su objetivo es conseguir que cada página diga 100% de Pruebas Aprobadas." -#: partials/welcome-page.php:74 +#: partials/welcome-page.php:78 msgid "Watch a video of Accessibility Checker in use." msgstr "Ver un video de Accessibility Checker en uso." -#: partials/welcome-page.php:80 +#: partials/welcome-page.php:84 msgid "Documentation and FAQs" msgstr "Documentación y Preguntas Frecuentes" -#: partials/welcome-page.php:84 +#: partials/welcome-page.php:88 msgid "Why do we say 100% Passed Tests, Not 100% Accessible?" msgstr "¿Por qué decimos 100% de Pruebas Aprobadas, no 100% Accesible?" -#: partials/welcome-page.php:84 -#: partials/welcome-page.php:89 -#: partials/welcome-page.php:94 -#: partials/welcome-page.php:99 -#: partials/welcome-page.php:104 -#: partials/welcome-page.php:109 -#: partials/welcome-page.php:114 -#: partials/welcome-page.php:120 -#: partials/welcome-page.php:216 -msgid "(opens in a new window)" -msgstr "(se abre en una nueva ventana)" - -#: partials/welcome-page.php:89 +#: partials/welcome-page.php:93 msgid "How to Manually Check Your Website for Accessibility" msgstr "Cómo comprobar manualmente la accesibilidad de su sitio web" -#: partials/welcome-page.php:94 +#: partials/welcome-page.php:98 msgid "When to Ignore Accessibility Errors" msgstr "Cuándo ignorar errores de accesibilidad" -#: partials/welcome-page.php:99 +#: partials/welcome-page.php:103 msgid "What to do if a Plugin You’re Using has Accessibility Errors" msgstr "Qué hacer si un plugin que está utilizando tiene errores de accesibilidad" -#: partials/welcome-page.php:104 +#: partials/welcome-page.php:108 msgid "What to do if there are Accessibility Errors in Your Theme" msgstr "Qué hacer si hay errores de accesibilidad en su tema" -#: partials/welcome-page.php:109 +#: partials/welcome-page.php:113 msgid "Can I Hire Equalize Digital to Fix Accessibility Issues on My Website?" msgstr "¿Puedo contratar a Equalize Digital para solucionar problemas de accesibilidad en mi sitio web?" -#: partials/welcome-page.php:114 +#: partials/welcome-page.php:118 msgid "Additional Resources for Learning About Accessibility" msgstr "Recursos adicionales para aprender sobre accesibilidad" -#: partials/welcome-page.php:120 +#: partials/welcome-page.php:124 msgid "Read Full Documentation" msgstr "Leer documentación completa" -#: partials/welcome-page.php:127 +#: partials/welcome-page.php:131 msgid "Support Information" msgstr "Información de soporte" -#: partials/welcome-page.php:133 +#: partials/welcome-page.php:137 msgid "Plugin Support" msgstr "Soporte del plugin" -#: partials/welcome-page.php:135 +#: partials/welcome-page.php:139 msgid "Active license holders of paid Accessibility Checker plans get unlimited email support on plugin usage and troubleshooting." msgstr "Los titulares de licencias activas de los planes de pago de Accessibility Checker obtienen soporte por email ilimitado sobre el uso del plugin y resolución de problemas." -#: partials/welcome-page.php:138 +#: partials/welcome-page.php:142 msgid "Open Support Ticket" msgstr "Abrir ticket de soporte" -#: partials/welcome-page.php:145 +#: partials/welcome-page.php:149 msgid "Free Plugin Support" msgstr "Soporte del plugin gratuito" -#: partials/welcome-page.php:147 +#: partials/welcome-page.php:151 msgid "Free plugin support is available via the WordPress.org forums. You'll need to create an account then you can open a new support thread." msgstr "El soporte del plugin gratuito está disponible a través de los foros de WordPress.org. Necesitará crear una cuenta y luego podrá abrir un nuevo hilo de soporte." -#: partials/welcome-page.php:150 +#: partials/welcome-page.php:154 msgid "Go to Support Forum" msgstr "Ir al foro de soporte" -#: partials/welcome-page.php:157 +#: partials/welcome-page.php:161 msgid "Office Hours" msgstr "Horario de oficina" -#: partials/welcome-page.php:159 +#: partials/welcome-page.php:163 msgid "Open Q&A on Zoom every other week to help you remediate your website." msgstr "Sesión de preguntas y respuestas abierta en Zoom cada dos semanas para ayudarle a remediar su sitio web." -#: partials/welcome-page.php:161 +#: partials/welcome-page.php:165 msgid "Included in Small Business and Agency plans" msgstr "Incluido en los planes Small Business y Agency" -#: partials/welcome-page.php:166 +#: partials/welcome-page.php:170 msgid "Register for Office Hours" msgstr "Registrarse para el horario de oficina" -#: partials/welcome-page.php:172 +#: partials/welcome-page.php:176 msgid "Auditing and Remediation" msgstr "Auditoría y remediación" -#: partials/welcome-page.php:174 +#: partials/welcome-page.php:178 msgid "Get help making your website accessible. Expert auditing, user testing, and dev support. Conformance letters available." msgstr "Obtenga ayuda para hacer que su sitio web sea accesible. Auditoría experta, pruebas de usuario y soporte de desarrollo. Cartas de conformidad disponibles." -#: partials/welcome-page.php:178 +#: partials/welcome-page.php:182 msgid "Get Remediation Help" msgstr "Obtener ayuda de remediación" @@ -4356,6 +5052,7 @@ msgstr "Ajustes de corrección" #: build/editorApp.bundle.js:2 #: build/frontendHighlighterApp.bundle.js:2 +#: build/sidebar.bundle.js:2 msgid "This will clear all issues for this post. A save will be required to trigger a fresh scan of the post content. Do you want to continue?" msgstr "Esto borrará todos los problemas de esta publicación. Se requerirá un guardado para activar un nuevo escaneo del contenido de la publicación. ¿Desea continuar?" @@ -4391,11 +5088,6 @@ msgstr "Lo sentimos, su envío falló. Por favor, acorte sus respuestas e intén msgid "Sorry, your submission failed. Please try again." msgstr "Lo sentimos, el envío ha fallado. Por favor, inténtalo de nuevo." -#: build/frontendFixes.bundle.js:1 -#: build/pageScanner.bundle.js:2 -msgid "opens a new window" -msgstr "abre una nueva ventana" - #: build/frontendFixes.bundle.js:1 msgid "EDAC: Did not find a matching target ID on the page for the skip link." msgstr "EDAC: No se encontró un ID de destino coincidente en la página para el enlace de salto." @@ -4408,10 +5100,77 @@ msgstr "EDAC: Error al actualizar el historial para el enlace de salto." msgid "Close fixes modal" msgstr "Cerrar el modal de correcciones" +#: build/frontendHighlighterApp.bundle.js:2 +#, js-format +msgid "%1$d of %2$d" +msgstr "%1$d de %2$d" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Untitled issue" +msgstr "Problema sin título" + +#: build/frontendHighlighterApp.bundle.js:2 +#, js-format +msgid "Issue %1$d of %2$d: %3$s" +msgstr "Problema %1$d de %2$d: %3$s" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "The element is not visible. Try disabling styles." +msgstr "El elemento no está visible. Intente deshabilitar los estilos." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "The element is not focusable. Try disabling styles." +msgstr "El elemento no es enfocable. Intente deshabilitar los estilos." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "The element was not found on the page." +msgstr "El elemento no se encontró en la página." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Move to Left" +msgstr "Mover a la izquierda" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Move to Right" +msgstr "Mover a la derecha" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Panel position reset." +msgstr "Posición del panel restablecida." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Panel moved to the left." +msgstr "Panel movido a la izquierda." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Panel moved to the right." +msgstr "Panel movido a la derecha." + +#: build/frontendHighlighterApp.bundle.js:2 +#, js-format +msgid "Open details for %1$s, %2$s of %3$s" +msgstr "Abrir detalles para %1$s, %2$s de %3$s" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Undock Panel" +msgstr "Desacoplar panel" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Dock Panel" +msgstr "Acoplar panel" + #: build/frontendHighlighterApp.bundle.js:2 msgid "Rescan This Page" msgstr "Volver a escanear esta página" +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Accessibility Checker Tools" +msgstr "Herramientas de Accessibility Checker" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "More options" +msgstr "Más opciones" + #: build/frontendHighlighterApp.bundle.js:2 msgid "Disable Page Styles" msgstr "Desactivar estilos de página" @@ -4420,22 +5179,105 @@ msgstr "Desactivar estilos de página" msgid "Disable Styles" msgstr "Desactivar estilos" +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Close" +msgstr "Cerrar" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "No issues found on this page." +msgstr "No se encontraron problemas en esta página." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Loading..." +msgstr "Cargando..." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Previous" +msgstr "Anterior" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Next" +msgstr "Siguiente" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Reset Position" +msgstr "Restablecer posición" + #: build/frontendHighlighterApp.bundle.js:2 msgid "An error occurred when loading the issues." msgstr "Se produjo un error al cargar los problemas." #: build/frontendHighlighterApp.bundle.js:2 -msgid "Show Code" -msgstr "Mostrar código" +msgid "Panel docked." +msgstr "Panel acoplado." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Panel undocked." +msgstr "Panel desacoplado." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Severity:" +msgstr "Gravedad:" + +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "WCAG:" +msgstr "WCAG:" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Ignored" +msgstr "Ignorado" + +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "Show explanation" +msgstr "Mostrar explicación" + +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "Why It Matters" +msgstr "Por qué es importante" + +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "How to Fix" +msgstr "Cómo solucionarlo" + +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "More Detailed Documentation" +msgstr "Documentación más detallada" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Show Affected Code" +msgstr "Mostrar código afectado" + +#: build/frontendHighlighterApp.bundle.js:2 +#, js-format +msgid "Fix issue: %s" +msgstr "Corregir problema: %s" #: build/frontendHighlighterApp.bundle.js:2 -msgid "Issue type:" -msgstr "Tipo de problema:" +#: build/issueModal.bundle.js:2 +msgid "Fix Issue" +msgstr "Corregir problema" #: build/frontendHighlighterApp.bundle.js:2 msgid "Enable Styles" msgstr "Activar estilos" +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Enable Page Styles" +msgstr "Habilitar estilos de página" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Page styles disabled." +msgstr "Estilos de página deshabilitados." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Page styles re-enabled." +msgstr "Estilos de página reactivados." + #: build/frontendHighlighterApp.bundle.js:2 msgid "There are no settings to display." msgstr "No hay ajustes para mostrar." @@ -4445,34 +5287,45 @@ msgid "These settings enable global fixes across your entire site. Pages may nee msgstr "Estos ajustes habilitan correcciones globales en todo tu sitio. Es posible que las páginas deban volver a guardarse o que se deba ejecutar un escaneo completo del sitio para ver las correcciones reflejadas en los informes." #: build/frontendHighlighterApp.bundle.js:2 -msgid "No issues detected." -msgstr "No se han detectado problemas." +#, js-format +msgid "%d issue found" +msgid_plural "%d issues found" +msgstr[0] "%d problema encontrado" +msgstr[1] "%d problemas encontrados" + +#: build/frontendHighlighterApp.bundle.js:2 +#, js-format +msgid "%d Problem" +msgid_plural "%d Problems" +msgstr[0] "%d problema" +msgstr[1] "%d problemas" #: build/frontendHighlighterApp.bundle.js:2 -msgid "error" -msgid_plural "errors" -msgstr[0] "error" -msgstr[1] "errores" +#, js-format +msgid "%d Needs Review" +msgid_plural "%d Need Review" +msgstr[0] "%d necesita revisión" +msgstr[1] "%d necesitan revisión" #: build/frontendHighlighterApp.bundle.js:2 -msgid "warning" -msgid_plural "warnings" -msgstr[0] "advertencia" -msgstr[1] "advertencias" +#, js-format +msgid "%d Ignored" +msgid_plural "%d Ignored" +msgstr[0] "%d ignorado" +msgstr[1] "%d ignorados" #: build/frontendHighlighterApp.bundle.js:2 -msgid "and" -msgstr "y" +msgid "No issues detected." +msgstr "No se han detectado problemas." #: build/frontendHighlighterApp.bundle.js:2 -msgid "ignored issue" -msgid_plural "ignored issues" -msgstr[0] "problema ignorado" -msgstr[1] "problemas ignorados" +#, js-format +msgid "Landmark: %s" +msgstr "Hito: %s" #: build/frontendHighlighterApp.bundle.js:2 -msgid "detected." -msgstr "detectados." +msgid "Failed to load scanner script." +msgstr "No se pudo cargar el script del escáner." #: build/frontendHighlighterApp.bundle.js:2 msgid "Scanner function not found." @@ -4482,14 +5335,18 @@ msgstr "Función de escáner no encontrada." msgid "Scanning..." msgstr "Escaneando..." -#: build/frontendHighlighterApp.bundle.js:2 -msgid "No violations found, skipping save." -msgstr "No se encontraron infracciones, se omite el guardado." - #: build/frontendHighlighterApp.bundle.js:2 msgid "Missing postId or nonce." msgstr "Falta postId o nonce." +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescan complete. No violations found." +msgstr "Análisis completado. No se encontraron infracciones." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "No violations found, skipping save." +msgstr "No se encontraron infracciones, se omite el guardado." + #: build/frontendHighlighterApp.bundle.js:2 msgid "Accessibility scan error." msgstr "Error en el escaneo de accesibilidad." @@ -4498,10 +5355,129 @@ msgstr "Error en el escaneo de accesibilidad." msgid "Error saving scan results." msgstr "Error al guardar los resultados del escaneo." +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescan already in progress." +msgstr "Análisis ya en curso." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescanning this page." +msgstr "Reanalizando esta página." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescan complete." +msgstr "Reanálisis completado." + #: build/frontendHighlighterApp.bundle.js:2 msgid "Error: Missing required parameters." msgstr "Error: Faltan parámetros requeridos." +#: build/issueModal.bundle.js:2 +msgid "Issue related image" +msgstr "Imagen relacionada con el problema" + +#: build/issueModal.bundle.js:2 +msgid "Fix settings saved." +msgstr "Configuración de la solución guardada." + +#: build/issueModal.bundle.js:2 +msgid "Failed to save fix settings." +msgstr "No se pudo guardar la configuración de la solución." + +#: build/issueModal.bundle.js:2 +msgid "Loading fix information..." +msgstr "Cargando información de la solución..." + +#: build/issueModal.bundle.js:2 +#, js-format +msgid "Save fix for: %s" +msgstr "Guardar solución para: %s" + +#: build/issueModal.bundle.js:2 +msgid "Issue dismissed successfully." +msgstr "Problema descartado correctamente." + +#: build/issueModal.bundle.js:2 +msgid "Issue reopened successfully." +msgstr "Problema reabierto correctamente." + +#: build/issueModal.bundle.js:2 +msgid "Dismissing..." +msgstr "Descartando..." + +#: build/issueModal.bundle.js:2 +#, js-format +msgid "Issue Dismissed — %s" +msgstr "Problema descartado — %s" + +#: build/issueModal.bundle.js:2 +msgid "Issue Dismissed" +msgstr "Problema descartado" + +#: build/issueModal.bundle.js:2 +msgid "Scope:" +msgstr "Alcance:" + +#: build/issueModal.bundle.js:2 +msgid "All pages" +msgstr "Todas las páginas" + +#: build/issueModal.bundle.js:2 +msgid "By:" +msgstr "Por:" + +#: build/issueModal.bundle.js:2 +msgid "On:" +msgstr "El:" + +#: build/issueModal.bundle.js:2 +msgid "Reason for dismissal:" +msgstr "Motivo del descarte:" + +#: build/issueModal.bundle.js:2 +msgid "This issue was dismissed globally. Manage Global Dismissals to reopen it." +msgstr "Este problema se desestimó globalmente. Gestione los despidos globales para reabrirlo." + +#: build/issueModal.bundle.js:2 +msgid "Manage Global Dismissals" +msgstr "Gestionar despidos globales" + +#: build/issueModal.bundle.js:2 +msgid "Reopening..." +msgstr "Reabriendo..." + +#: build/issueModal.bundle.js:2 +msgid "Comment (optional)" +msgstr "Comentario (opcional)" + +#: build/issueModal.bundle.js:2 +msgid "Add a note explaining why this issue is being dismissed." +msgstr "Añada una nota explicando por qué se desestima este problema." + +#: build/issueModal.bundle.js:2 +msgid "More dismiss options" +msgstr "Más opciones de descarte" + +#: build/issueModal.bundle.js:2 +msgid "Dismiss & Close Modal" +msgstr "Descartar y cerrar modal" + +#: build/issueModal.bundle.js:2 +#, js-format +msgid "Issue #%s" +msgstr "Problema n.º %s" + +#: build/issueModal.bundle.js:2 +msgid "Issue Details" +msgstr "Detalles del problema" + +#: build/issueModal.bundle.js:2 +msgid "Type" +msgstr "Tipo" + +#: build/issueModal.bundle.js:2 +msgid "Severity" +msgstr "Gravedad" + #: build/pageScanner.bundle.js:2 msgid "new window" msgstr "nueva ventana" @@ -4510,6 +5486,10 @@ msgstr "nueva ventana" msgid "new tab" msgstr "nueva pestaña" +#: build/pageScanner.bundle.js:2 +msgid "new document" +msgstr "nuevo documento" + #: build/pageScanner.bundle.js:2 msgid "click" msgstr "clic" @@ -4585,3 +5565,250 @@ msgstr "seguir leyendo" #: build/pageScanner.bundle.js:2 msgid "learn more" msgstr "más información" + +#: build/sidebar.bundle.js:2 +msgid "Failed to load accessibility data" +msgstr "No se pudieron cargar los datos de accesibilidad" + +#: build/sidebar.bundle.js:2 +msgid "Error loading accessibility data" +msgstr "Error al cargar los datos de accesibilidad" + +#: build/sidebar.bundle.js:2 +msgid "Loading accessibility results..." +msgstr "Cargando resultados de accesibilidad..." + +#: build/sidebar.bundle.js:2 +msgid "Updating accessibility data..." +msgstr "Actualizando datos de accesibilidad..." + +#: build/sidebar.bundle.js:2 +msgid "problem to address" +msgid_plural "problems to address" +msgstr[0] "problema que abordar" +msgstr[1] "problemas que abordar" + +#: build/sidebar.bundle.js:2 +msgid "issue that needs review" +msgid_plural "issues that need review" +msgstr[0] "problema que necesita revisión" +msgstr[1] "problemas que necesitan revisión" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "You have %1$d %2$s and %3$d %4$s." +msgstr "Tiene %1$d %2$s y %3$d %4$s." + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "You have %1$d %2$s." +msgstr "Tiene %1$d %2$s." + +#: build/sidebar.bundle.js:2 +msgid "Check and fix accessibility issues in your content." +msgstr "Compruebe y solucione los problemas de accesibilidad en su contenido." + +#: build/sidebar.bundle.js:2 +msgid "Open Accessibility Panel" +msgstr "Abrir panel de accesibilidad" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "%dth" +msgstr "%d.º" + +#: build/sidebar.bundle.js:2 +msgid "Summary provided" +msgstr "Resumen proporcionado" + +#: build/sidebar.bundle.js:2 +msgid "Summary required" +msgstr "Resumen requerido" + +#: build/sidebar.bundle.js:2 +msgid "Summary not required" +msgstr "Resumen no requerido" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "View %d problems in Accessibility Analysis" +msgstr "Ver %d problemas en el Análisis de accesibilidad" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "View %d items needing review in Accessibility Analysis" +msgstr "Ver %d elementos que necesitan revisión en el Análisis de accesibilidad" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "View reading level details: %s" +msgstr "Ver detalles del nivel de lectura: %s" + +#: build/sidebar.bundle.js:2 +msgid "Issue" +msgstr "Problema" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "Issue actions for %s" +msgstr "Acciones del problema para %s" + +#: build/sidebar.bundle.js:2 +msgid "Issue actions" +msgstr "Acciones del problema" + +#: build/sidebar.bundle.js:2 +msgid "Show code" +msgstr "Mostrar código" + +#: build/sidebar.bundle.js:2 +msgid "Reopen issue" +msgstr "Reabrir problema" + +#: build/sidebar.bundle.js:2 +msgid "Dismiss issue" +msgstr "Descartar problema" + +#: build/sidebar.bundle.js:2 +msgid "Apply fix" +msgstr "Aplicar solución" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "%d total" +msgstr "%d en total" + +#: build/sidebar.bundle.js:2 +msgid "No dismissed issues." +msgstr "No hay problemas descartados." + +#: build/sidebar.bundle.js:2 +msgid "No issues found." +msgstr "No se encontraron problemas." + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "%d total issues" +msgstr "%d problemas en total" + +#: build/sidebar.bundle.js:2 +msgid "Dismissed Issues" +msgstr "Problemas descartados" + +#: build/sidebar.bundle.js:2 +msgid "Simplified summary saved successfully." +msgstr "Resumen simplificado guardado correctamente." + +#: build/sidebar.bundle.js:2 +msgid "Failed to save summary. Please try again." +msgstr "No se pudo guardar el resumen. Vuelva a intentarlo." + +#: build/sidebar.bundle.js:2 +msgid "An error occurred while saving the summary." +msgstr "Se produjo un error al guardar el resumen." + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "%s grade" +msgstr "%s grado" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "%dth grade" +msgstr "%d.º grado" + +#: build/sidebar.bundle.js:2 +msgid "Not available" +msgstr "No disponible" + +#: build/sidebar.bundle.js:2 +msgid "Warning" +msgstr "Advertencia" + +#: build/sidebar.bundle.js:2 +msgid "This post does not contain enough content to calculate a reading level." +msgstr "Esta publicación no contiene suficiente contenido para calcular un nivel de lectura." + +#: build/sidebar.bundle.js:2 +msgid "Adjust summary prompts in settings." +msgstr "Ajustar las indicaciones del resumen en la configuración." + +#: build/sidebar.bundle.js:2 +msgid "Content at or below a 9th-grade reading level does not require a simplified summary." +msgstr "El contenido con un nivel de lectura igual o inferior al 9.º grado no requiere un resumen simplificado." + +#: build/sidebar.bundle.js:2 +msgid "Content above a 9th-grade reading level requires a simplified summary to meet WCAG AAA guidance." +msgstr "El contenido con un nivel de lectura superior al 9.º grado requiere un resumen simplificado para cumplir con la guía WCAG AAA." + +#: build/sidebar.bundle.js:2 +msgid "Learn more about readability requirements." +msgstr "Más información sobre los requisitos de legibilidad." + +#: build/sidebar.bundle.js:2 +msgid "Simplified Summary Reading Level" +msgstr "Nivel de lectura del resumen simplificado" + +#: build/sidebar.bundle.js:2 +msgid "Needs improvement, summary is above the 9th-grade reading level." +msgstr "Necesita mejorar, el resumen está por encima del nivel de lectura de 9.º grado." + +#: build/sidebar.bundle.js:2 +msgid "Below the recommended 9th-grade reading level." +msgstr "Por debajo del nivel de lectura recomendado de 9.º grado." + +#: build/sidebar.bundle.js:2 +msgid "Enter simplified summary..." +msgstr "Introduzca el resumen simplificado..." + +#: build/sidebar.bundle.js:2 +msgid "A simplified summary is required for this content." +msgstr "Se requiere un resumen simplificado para este contenido." + +#: build/sidebar.bundle.js:2 +msgid "Unable to load this preference." +msgstr "No se pudo cargar esta preferencia." + +#: build/sidebar.bundle.js:2 +msgid "Unable to save this preference." +msgstr "No se pudo guardar esta preferencia." + +#: build/sidebar.bundle.js:2 +msgid "Loading preference..." +msgstr "Cargando preferencia..." + +#: build/sidebar.bundle.js:2 +msgid "Screen Reader Text Format" +msgstr "Formato de texto de lector de pantalla" + +#: build/sidebar.bundle.js:2 +msgid "Control whether screen reader text stays visible while you edit." +msgstr "Controle si el texto del lector de pantalla permanece visible mientras edita." + +#: build/sidebar.bundle.js:2 +msgid "Always show screen reader text?" +msgstr "¿Mostrar siempre el texto del lector de pantalla?" + +#: build/sidebar.bundle.js:2 +msgid "Loading accessibility data..." +msgstr "Cargando datos de accesibilidad..." + +#: build/sidebar.bundle.js:2 +msgid "Accessibility Checker actions" +msgstr "Acciones del Accessibility Checker" + +#: build/sidebar.bundle.js:2 +msgid "Scan" +msgstr "Escanear" + +#: build/sidebar.bundle.js:2 +msgid "Refresh" +msgstr "Actualizar" + +#: build/srOnlyFormat.bundle.js:2 +msgid "Screen Reader Only" +msgstr "Solo para lector de pantalla" + +#: build/srOnlyFormat.bundle.js:2 +msgid "Always show screen reader text" +msgstr "Mostrar siempre el texto del lector de pantalla" From af9714dc0f00e6d34e2e6c4df506dcf6e761f4f3 Mon Sep 17 00:00:00 2001 From: PTC Date: Tue, 5 May 2026 19:39:09 +0000 Subject: [PATCH 11/74] PTC accessibility-checker (1985): Edits by Steve Jones (May 05, 2026 19:39:04652135) --- ...r-ar-b93b9e514c44a41f97246123aa57f5c4.json | 2 +- languages/accessibility-checker-ar.mo | Bin 240594 -> 242588 bytes languages/accessibility-checker-ar.po | 216 +++++++++++------- 3 files changed, 138 insertions(+), 80 deletions(-) diff --git a/languages/accessibility-checker-ar-b93b9e514c44a41f97246123aa57f5c4.json b/languages/accessibility-checker-ar-b93b9e514c44a41f97246123aa57f5c4.json index b7d68c03c..f517163e4 100644 --- a/languages/accessibility-checker-ar-b93b9e514c44a41f97246123aa57f5c4.json +++ b/languages/accessibility-checker-ar-b93b9e514c44a41f97246123aa57f5c4.json @@ -1 +1 @@ -{"translation-revision-date":"YEAR-MO-DA HO:MI+ZONE","generator":"WP-CLI\/2.12.0","source":"build\/frontendHighlighterApp.bundle.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ar","plural-forms":"nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5);"},"Accessibility Checker":["Accessibility Checker"],"Critical":["\u062d\u0631\u062c"],"High":["\u0645\u0631\u062a\u0641\u0639"],"Medium":["\u0645\u062a\u0648\u0633\u0637"],"Low":["\u0645\u0646\u062e\u0641\u0636"],"Problem":["\u0645\u0634\u0643\u0644\u0627\u062a","\u0645\u0634\u0643\u0644\u0629","\u0645\u0634\u0643\u0644\u062a\u0627\u0646","\u0645\u0634\u0643\u0644\u0627\u062a","\u0645\u0634\u0643\u0644\u0627\u062a","\u0645\u0634\u0643\u0644\u0627\u062a"],"Needs Review":["\u064a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","\u064a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","\u064a\u062d\u062a\u0627\u062c\u0627\u0646 \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","\u064a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","\u064a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","\u064a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629"],", opens a new window":["\u060c \u064a\u0641\u062a\u062d \u0646\u0627\u0641\u0630\u0629 \u062c\u062f\u064a\u062f\u0629"],"Save":["\u062d\u0641\u0638"],"Clear Issues":["\u0645\u0633\u062d \u0627\u0644\u0645\u0634\u0643\u0644\u0627\u062a"],"Saving...":["\u062c\u0627\u0631\u064d \u0627\u0644\u062d\u0641\u0638..."],"Settings saved successfully. You must %svisit the editor%s and save the post to rescan and remove fixed issues from Accessibility Checker reports.":["\u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0628\u0646\u062c\u0627\u062d. \u064a\u062c\u0628 \u0639\u0644\u064a\u0643 %s\u0632\u064a\u0627\u0631\u0629 \u0627\u0644\u0645\u062d\u0631\u0631%s \u0648\u062d\u0641\u0638 \u0627\u0644\u0645\u0646\u0634\u0648\u0631 \u0644\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0641\u062d\u0635 \u0648\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0645\u0634\u0643\u0644\u0627\u062a \u0627\u0644\u0645\u0635\u062d\u062d\u0629 \u0645\u0646 \u062a\u0642\u0627\u0631\u064a\u0631 Accessibility Checker."],"Settings saved successfully.":["\u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0628\u0646\u062c\u0627\u062d."],"Saving failed.":["\u0641\u0634\u0644 \u0627\u0644\u062d\u0641\u0638."],"Fix Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0625\u0635\u0644\u0627\u062d"],"This will clear all issues for this post. A save will be required to trigger a fresh scan of the post content. Do you want to continue?":["\u0633\u064a\u0624\u062f\u064a \u0647\u0630\u0627 \u0625\u0644\u0649 \u0645\u0633\u062d \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0634\u0643\u0644\u0627\u062a \u0644\u0647\u0630\u0627 \u0627\u0644\u0645\u0646\u0634\u0648\u0631. \u0633\u064a\u0643\u0648\u0646 \u0627\u0644\u062d\u0641\u0638 \u0645\u0637\u0644\u0648\u0628\u064b\u0627 \u0644\u062a\u0634\u063a\u064a\u0644 \u0641\u062d\u0635 \u062c\u062f\u064a\u062f \u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0645\u0646\u0634\u0648\u0631. \u0647\u0644 \u062a\u0631\u064a\u062f \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0629\u061f?"],"Clearing...":["\u062c\u0627\u0631\u064d \u0627\u0644\u0645\u0633\u062d..."],"Issues cleared successfully.":["\u062a\u0645 \u0645\u0633\u062d \u0627\u0644\u0645\u0634\u0643\u0644\u0627\u062a \u0628\u0646\u062c\u0627\u062d."],"Failed to clear issues.":["\u0641\u0634\u0644 \u0645\u0633\u062d \u0627\u0644\u0645\u0634\u0643\u0644\u0627\u062a."],"An error occurred while clearing issues.":["\u062d\u062f\u062b \u062e\u0637\u0623 \u0623\u062b\u0646\u0627\u0621 \u0645\u0633\u062d \u0627\u0644\u0645\u0634\u0643\u0644\u0627\u062a."],"Close fixes modal":["\u0625\u063a\u0644\u0627\u0642 \u0646\u0627\u0641\u0630\u0629 \u0627\u0644\u0625\u0635\u0644\u0627\u062d\u0627\u062a"],"%1$d of %2$d":["%1$d \u0645\u0646 %2$d"],"The element is not visible. Try disabling styles.":["\u0627\u0644\u0639\u0646\u0635\u0631 \u063a\u064a\u0631 \u0645\u0631\u0626\u064a. \u062d\u0627\u0648\u0644 \u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u0623\u0646\u0645\u0627\u0637."],"The element is not focusable. Try disabling styles.":["\u0627\u0644\u0639\u0646\u0635\u0631 \u063a\u064a\u0631 \u0642\u0627\u0628\u0644 \u0644\u0644\u062a\u0631\u0643\u064a\u0632. \u062d\u0627\u0648\u0644 \u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u0623\u0646\u0645\u0627\u0637."],"The element was not found on the page.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0627\u0644\u0639\u0646\u0635\u0631 \u0641\u064a \u0627\u0644\u0635\u0641\u062d\u0629."],"Move to Left":["\u0646\u0642\u0644 \u0625\u0644\u0649 \u0627\u0644\u064a\u0633\u0627\u0631"],"Move to Right":["\u0646\u0642\u0644 \u0625\u0644\u0649 \u0627\u0644\u064a\u0645\u064a\u0646"],"Panel position reset.":["\u062a\u0645\u062a \u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0645\u0648\u0636\u0639 \u0627\u0644\u0644\u0648\u062d\u0629."],"Panel moved to the left.":["\u062a\u0645 \u0646\u0642\u0644 \u0627\u0644\u0644\u0648\u062d\u0629 \u0625\u0644\u0649 \u0627\u0644\u064a\u0633\u0627\u0631."],"Panel moved to the right.":["\u062a\u0645 \u0646\u0642\u0644 \u0627\u0644\u0644\u0648\u062d\u0629 \u0625\u0644\u0649 \u0627\u0644\u064a\u0645\u064a\u0646."],"Open details for %1$s, %2$s of %3$s":["\u0641\u062a\u062d \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644 \u0644\u0640 %1$s\u060c %2$s \u0645\u0646 %3$s"],"Undock Panel":["\u0625\u0644\u063a\u0627\u0621 \u062a\u062b\u0628\u064a\u062a \u0627\u0644\u0644\u0648\u062d\u0629"],"Dock Panel":["\u062a\u062b\u0628\u064a\u062a \u0627\u0644\u0644\u0648\u062d\u0629"],"Rescan This Page":["\u0625\u0639\u0627\u062f\u0629 \u0641\u062d\u0635 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629"],"Accessibility Checker Tools":["\u0623\u062f\u0648\u0627\u062a Accessibility Checker"],"More options":["\u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u062e\u064a\u0627\u0631\u0627\u062a"],"Disable Page Styles":["\u062a\u0639\u0637\u064a\u0644 \u0623\u0646\u0645\u0627\u0637 \u0627\u0644\u0635\u0641\u062d\u0629"],"Disable Styles":["\u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u0623\u0646\u0645\u0627\u0637"],"Close":["\u0625\u063a\u0644\u0627\u0642"],"No issues found on this page.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0634\u0643\u0644\u0627\u062a \u0641\u064a \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629."],"Loading...":["\u062c\u0627\u0631\u064d \u0627\u0644\u062a\u062d\u0645\u064a\u0644..."],"Previous":["\u0627\u0644\u0633\u0627\u0628\u0642"],"Next":["\u0627\u0644\u062a\u0627\u0644\u064a"],"Reset Position":["\u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0627\u0644\u0645\u0648\u0636\u0639"],"An error occurred when loading the issues.":["\u062d\u062f\u062b \u062e\u0637\u0623 \u0623\u062b\u0646\u0627\u0621 \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0645\u0634\u0643\u0644\u0627\u062a."],"Panel docked.":["\u0627\u0644\u0644\u0648\u062d\u0629 \u0645\u062b\u0628\u062a\u0629."],"Panel undocked.":["\u0627\u0644\u0644\u0648\u062d\u0629 \u063a\u064a\u0631 \u0645\u062b\u0628\u062a\u0629."],"Severity:":["\u0627\u0644\u062e\u0637\u0648\u0631\u0629:"],"WCAG:":["WCAG:"],"Issue type:":["\u0646\u0648\u0639 \u0627\u0644\u0645\u0634\u0643\u0644\u0629:"],"Ignored":["\u062a\u0645 \u0627\u0644\u062a\u062c\u0627\u0647\u0644"],"Show explanation":["\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0634\u0631\u062d"],"Why It Matters":["\u0644\u0645\u0627\u0630\u0627 \u064a\u0647\u0645"],"How to Fix":["\u0643\u064a\u0641\u064a\u0629 \u0627\u0644\u0625\u0635\u0644\u0627\u062d"],"More Detailed Documentation":["\u0648\u062b\u0627\u0626\u0642 \u0623\u0643\u062b\u0631 \u062a\u0641\u0635\u064a\u0644\u0627\u064b"],"Show Affected Code":["\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0643\u0648\u062f \u0627\u0644\u0645\u062a\u0623\u062b\u0631"],"Fix issue: %s":["\u0625\u0635\u0644\u0627\u062d \u0627\u0644\u0645\u0634\u0643\u0644\u0629: %s"],"Fix Issue":["\u0625\u0635\u0644\u0627\u062d \u0627\u0644\u0645\u0634\u0643\u0644\u0629"],"Enable Styles":["\u062a\u0641\u0639\u064a\u0644 \u0627\u0644\u0623\u0646\u0645\u0627\u0637"],"There are no settings to display.":["\u0644\u0627 \u062a\u0648\u062c\u062f \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0644\u0639\u0631\u0636\u0647\u0627."],"These settings enable global fixes across your entire site. Pages may need to be resaved or a full site scan run to see fixes reflected in reports.":["\u062a\u0645\u0643\u0651\u0646 \u0647\u0630\u0647 \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0625\u0635\u0644\u0627\u062d\u0627\u062a \u0627\u0644\u0639\u0627\u0645\u0629 \u0639\u0628\u0631 \u0645\u0648\u0642\u0639\u0643 \u0628\u0623\u0643\u0645\u0644\u0647. \u0642\u062f \u062a\u062d\u062a\u0627\u062c \u0627\u0644\u0635\u0641\u062d\u0627\u062a \u0625\u0644\u0649 \u0625\u0639\u0627\u062f\u0629 \u062d\u0641\u0638 \u0623\u0648 \u0625\u062c\u0631\u0627\u0621 \u0641\u062d\u0635 \u0643\u0627\u0645\u0644 \u0644\u0644\u0645\u0648\u0642\u0639 \u0644\u0631\u0624\u064a\u0629 \u0627\u0644\u0625\u0635\u0644\u0627\u062d\u0627\u062a \u0627\u0644\u0645\u0646\u0639\u0643\u0633\u0629 \u0641\u064a \u0627\u0644\u062a\u0642\u0627\u0631\u064a\u0631."],"%d issue found":["\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 %d \u0645\u0634\u0643\u0644\u0629","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 %d \u0645\u0634\u0643\u0644\u0629","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 %d \u0645\u0634\u0643\u0644\u0629","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 %d \u0645\u0634\u0643\u0644\u0629","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 %d \u0645\u0634\u0643\u0644\u0629","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 %d \u0645\u0634\u0643\u0644\u0629"],"%d Problem":["%d \u0645\u0634\u0643\u0644\u0629","%d \u0645\u0634\u0643\u0644\u0629","%d \u0645\u0634\u0643\u0644\u0629","%d \u0645\u0634\u0643\u0644\u0629","%d \u0645\u0634\u0643\u0644\u0629","%d \u0645\u0634\u0643\u0644\u0629"],"%d Needs Review":["%d \u0628\u062d\u0627\u062c\u0629 \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","%d \u0628\u062d\u0627\u062c\u0629 \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","%d \u0628\u062d\u0627\u062c\u0629 \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","%d \u0628\u062d\u0627\u062c\u0629 \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","%d \u0628\u062d\u0627\u062c\u0629 \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","%d \u0628\u062d\u0627\u062c\u0629 \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629"],"%d Ignored":["%d \u062a\u0645 \u062a\u062c\u0627\u0647\u0644\u0647\u0627","%d \u062a\u0645 \u062a\u062c\u0627\u0647\u0644\u0647\u0627","%d \u062a\u0645 \u062a\u062c\u0627\u0647\u0644\u0647\u0627","%d \u062a\u0645 \u062a\u062c\u0627\u0647\u0644\u0647\u0627","%d \u062a\u0645 \u062a\u062c\u0627\u0647\u0644\u0647\u0627","%d \u062a\u0645 \u062a\u062c\u0627\u0647\u0644\u0647\u0627"],"No issues detected.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0643\u062a\u0634\u0627\u0641 \u0623\u064a \u0645\u0634\u0627\u0643\u0644."],"Landmark: %s":["\u0645\u0639\u0644\u0645: %s"],"Scanner function not found.":["\u0648\u0638\u064a\u0641\u0629 \u0627\u0644\u0641\u062d\u0635 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f\u0629."],"Scanning...":["\u062c\u0627\u0631\u064d \u0627\u0644\u0641\u062d\u0635..."],"No violations found, skipping save.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0627\u0646\u062a\u0647\u0627\u0643\u0627\u062a\u060c \u062a\u062e\u0637\u064a \u0627\u0644\u062d\u0641\u0638."],"Missing postId or nonce.":["\u0645\u0639\u0631\u0641 \u0627\u0644\u0645\u0646\u0634\u0648\u0631 \u0623\u0648 \u0631\u0645\u0632 nonce \u0645\u0641\u0642\u0648\u062f."],"Accessibility scan error.":["\u062e\u0637\u0623 \u0641\u064a \u0641\u062d\u0635 \u0625\u0645\u0643\u0627\u0646\u064a\u0629 \u0627\u0644\u0648\u0635\u0648\u0644."],"Error saving scan results.":["\u062e\u0637\u0623 \u0641\u064a \u062d\u0641\u0638 \u0646\u062a\u0627\u0626\u062c \u0627\u0644\u0641\u062d\u0635."],"Error: Missing required parameters.":["\u062e\u0637\u0623: \u0645\u0639\u0644\u0645\u0627\u062a \u0645\u0637\u0644\u0648\u0628\u0629 \u0645\u0641\u0642\u0648\u062f\u0629."]}}} \ No newline at end of file +{"translation-revision-date":"YEAR-MO-DA HO:MI+ZONE","generator":"WP-CLI\/2.12.0","source":"build\/frontendHighlighterApp.bundle.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ar","plural-forms":"nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5);"},"Accessibility Checker":["Accessibility Checker"],"Critical":["\u062d\u0631\u062c"],"High":["\u0645\u0631\u062a\u0641\u0639"],"Medium":["\u0645\u062a\u0648\u0633\u0637"],"Low":["\u0645\u0646\u062e\u0641\u0636"],"Problem":["\u0645\u0634\u0643\u0644\u0627\u062a","\u0645\u0634\u0643\u0644\u0629","\u0645\u0634\u0643\u0644\u062a\u0627\u0646","\u0645\u0634\u0643\u0644\u0627\u062a","\u0645\u0634\u0643\u0644\u0627\u062a","\u0645\u0634\u0643\u0644\u0627\u062a"],"Needs Review":["\u064a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","\u064a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","\u064a\u062d\u062a\u0627\u062c\u0627\u0646 \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","\u064a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","\u064a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","\u064a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629"],", opens a new window":["\u060c \u064a\u0641\u062a\u062d \u0646\u0627\u0641\u0630\u0629 \u062c\u062f\u064a\u062f\u0629"],"Save":["\u062d\u0641\u0638"],"Clear Issues":["\u0645\u0633\u062d \u0627\u0644\u0645\u0634\u0643\u0644\u0627\u062a"],"Saving...":["\u062c\u0627\u0631\u064d \u0627\u0644\u062d\u0641\u0638..."],"Settings saved successfully. You must %svisit the editor%s and save the post to rescan and remove fixed issues from Accessibility Checker reports.":["\u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0628\u0646\u062c\u0627\u062d. \u064a\u062c\u0628 \u0639\u0644\u064a\u0643 %s\u0632\u064a\u0627\u0631\u0629 \u0627\u0644\u0645\u062d\u0631\u0631%s \u0648\u062d\u0641\u0638 \u0627\u0644\u0645\u0646\u0634\u0648\u0631 \u0644\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0641\u062d\u0635 \u0648\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0645\u0634\u0643\u0644\u0627\u062a \u0627\u0644\u0645\u0635\u062d\u062d\u0629 \u0645\u0646 \u062a\u0642\u0627\u0631\u064a\u0631 Accessibility Checker."],"Settings saved successfully.":["\u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0628\u0646\u062c\u0627\u062d."],"Saving failed.":["\u0641\u0634\u0644 \u0627\u0644\u062d\u0641\u0638."],"Fix Settings":["\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0625\u0635\u0644\u0627\u062d"],"This will clear all issues for this post. A save will be required to trigger a fresh scan of the post content. Do you want to continue?":["\u0633\u064a\u0624\u062f\u064a \u0647\u0630\u0627 \u0625\u0644\u0649 \u0645\u0633\u062d \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0634\u0643\u0644\u0627\u062a \u0644\u0647\u0630\u0627 \u0627\u0644\u0645\u0646\u0634\u0648\u0631. \u0633\u064a\u0643\u0648\u0646 \u0627\u0644\u062d\u0641\u0638 \u0645\u0637\u0644\u0648\u0628\u064b\u0627 \u0644\u062a\u0634\u063a\u064a\u0644 \u0641\u062d\u0635 \u062c\u062f\u064a\u062f \u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0645\u0646\u0634\u0648\u0631. \u0647\u0644 \u062a\u0631\u064a\u062f \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0629\u061f?"],"Clearing...":["\u062c\u0627\u0631\u064d \u0627\u0644\u0645\u0633\u062d..."],"Issues cleared successfully.":["\u062a\u0645 \u0645\u0633\u062d \u0627\u0644\u0645\u0634\u0643\u0644\u0627\u062a \u0628\u0646\u062c\u0627\u062d."],"Failed to clear issues.":["\u0641\u0634\u0644 \u0645\u0633\u062d \u0627\u0644\u0645\u0634\u0643\u0644\u0627\u062a."],"An error occurred while clearing issues.":["\u062d\u062f\u062b \u062e\u0637\u0623 \u0623\u062b\u0646\u0627\u0621 \u0645\u0633\u062d \u0627\u0644\u0645\u0634\u0643\u0644\u0627\u062a."],"Close fixes modal":["\u0625\u063a\u0644\u0627\u0642 \u0646\u0627\u0641\u0630\u0629 \u0627\u0644\u0625\u0635\u0644\u0627\u062d\u0627\u062a"],"%1$d of %2$d":["%1$d \u0645\u0646 %2$d"],"Untitled issue":["\u0645\u0634\u0643\u0644\u0629 \u0628\u062f\u0648\u0646 \u0639\u0646\u0648\u0627\u0646"],"Issue %1$d of %2$d: %3$s":["\u0627\u0644\u0645\u0634\u0643\u0644\u0629 %1$d \u0645\u0646 %2$d: %3$s"],"The element is not visible. Try disabling styles.":["\u0627\u0644\u0639\u0646\u0635\u0631 \u063a\u064a\u0631 \u0645\u0631\u0626\u064a. \u062d\u0627\u0648\u0644 \u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u0623\u0646\u0645\u0627\u0637."],"The element is not focusable. Try disabling styles.":["\u0627\u0644\u0639\u0646\u0635\u0631 \u063a\u064a\u0631 \u0642\u0627\u0628\u0644 \u0644\u0644\u062a\u0631\u0643\u064a\u0632. \u062d\u0627\u0648\u0644 \u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u0623\u0646\u0645\u0627\u0637."],"The element was not found on the page.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0627\u0644\u0639\u0646\u0635\u0631 \u0641\u064a \u0627\u0644\u0635\u0641\u062d\u0629."],"Move to Left":["\u0646\u0642\u0644 \u0625\u0644\u0649 \u0627\u0644\u064a\u0633\u0627\u0631"],"Move to Right":["\u0646\u0642\u0644 \u0625\u0644\u0649 \u0627\u0644\u064a\u0645\u064a\u0646"],"Panel position reset.":["\u062a\u0645\u062a \u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0645\u0648\u0636\u0639 \u0627\u0644\u0644\u0648\u062d\u0629."],"Panel moved to the left.":["\u062a\u0645 \u0646\u0642\u0644 \u0627\u0644\u0644\u0648\u062d\u0629 \u0625\u0644\u0649 \u0627\u0644\u064a\u0633\u0627\u0631."],"Panel moved to the right.":["\u062a\u0645 \u0646\u0642\u0644 \u0627\u0644\u0644\u0648\u062d\u0629 \u0625\u0644\u0649 \u0627\u0644\u064a\u0645\u064a\u0646."],"Open details for %1$s, %2$s of %3$s":["\u0641\u062a\u062d \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644 \u0644\u0640 %1$s\u060c %2$s \u0645\u0646 %3$s"],"Undock Panel":["\u0625\u0644\u063a\u0627\u0621 \u062a\u062b\u0628\u064a\u062a \u0627\u0644\u0644\u0648\u062d\u0629"],"Dock Panel":["\u062a\u062b\u0628\u064a\u062a \u0627\u0644\u0644\u0648\u062d\u0629"],"Rescan This Page":["\u0625\u0639\u0627\u062f\u0629 \u0641\u062d\u0635 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629"],"Accessibility Checker Tools":["\u0623\u062f\u0648\u0627\u062a Accessibility Checker"],"More options":["\u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u062e\u064a\u0627\u0631\u0627\u062a"],"Disable Page Styles":["\u062a\u0639\u0637\u064a\u0644 \u0623\u0646\u0645\u0627\u0637 \u0627\u0644\u0635\u0641\u062d\u0629"],"Disable Styles":["\u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u0623\u0646\u0645\u0627\u0637"],"Close":["\u0625\u063a\u0644\u0627\u0642"],"No issues found on this page.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0634\u0643\u0644\u0627\u062a \u0641\u064a \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629."],"Loading...":["\u062c\u0627\u0631\u064d \u0627\u0644\u062a\u062d\u0645\u064a\u0644..."],"Previous":["\u0627\u0644\u0633\u0627\u0628\u0642"],"Next":["\u0627\u0644\u062a\u0627\u0644\u064a"],"Reset Position":["\u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0627\u0644\u0645\u0648\u0636\u0639"],"An error occurred when loading the issues.":["\u062d\u062f\u062b \u062e\u0637\u0623 \u0623\u062b\u0646\u0627\u0621 \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0645\u0634\u0643\u0644\u0627\u062a."],"Panel docked.":["\u0627\u0644\u0644\u0648\u062d\u0629 \u0645\u062b\u0628\u062a\u0629."],"Panel undocked.":["\u0627\u0644\u0644\u0648\u062d\u0629 \u063a\u064a\u0631 \u0645\u062b\u0628\u062a\u0629."],"Severity:":["\u0627\u0644\u062e\u0637\u0648\u0631\u0629:"],"WCAG:":["WCAG:"],"Ignored":["\u062a\u0645 \u0627\u0644\u062a\u062c\u0627\u0647\u0644"],"Show explanation":["\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0634\u0631\u062d"],"Why It Matters":["\u0644\u0645\u0627\u0630\u0627 \u064a\u0647\u0645"],"How to Fix":["\u0643\u064a\u0641\u064a\u0629 \u0627\u0644\u0625\u0635\u0644\u0627\u062d"],"More Detailed Documentation":["\u0648\u062b\u0627\u0626\u0642 \u0623\u0643\u062b\u0631 \u062a\u0641\u0635\u064a\u0644\u0627\u064b"],"Show Affected Code":["\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0643\u0648\u062f \u0627\u0644\u0645\u062a\u0623\u062b\u0631"],"Fix issue: %s":["\u0625\u0635\u0644\u0627\u062d \u0627\u0644\u0645\u0634\u0643\u0644\u0629: %s"],"Fix Issue":["\u0625\u0635\u0644\u0627\u062d \u0627\u0644\u0645\u0634\u0643\u0644\u0629"],"Enable Styles":["\u062a\u0641\u0639\u064a\u0644 \u0627\u0644\u0623\u0646\u0645\u0627\u0637"],"Enable Page Styles":["\u062a\u0645\u0643\u064a\u0646 \u0623\u0646\u0645\u0627\u0637 \u0627\u0644\u0635\u0641\u062d\u0629"],"Page styles disabled.":["\u0623\u0646\u0645\u0627\u0637 \u0627\u0644\u0635\u0641\u062d\u0629 \u0645\u064f\u0639\u0637\u0644\u0629."],"Page styles re-enabled.":["\u062a\u0645\u062a \u0625\u0639\u0627\u062f\u0629 \u062a\u0645\u0643\u064a\u0646 \u0623\u0646\u0645\u0627\u0637 \u0627\u0644\u0635\u0641\u062d\u0629."],"There are no settings to display.":["\u0644\u0627 \u062a\u0648\u062c\u062f \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0644\u0639\u0631\u0636\u0647\u0627."],"These settings enable global fixes across your entire site. Pages may need to be resaved or a full site scan run to see fixes reflected in reports.":["\u062a\u0645\u0643\u0651\u0646 \u0647\u0630\u0647 \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0625\u0635\u0644\u0627\u062d\u0627\u062a \u0627\u0644\u0639\u0627\u0645\u0629 \u0639\u0628\u0631 \u0645\u0648\u0642\u0639\u0643 \u0628\u0623\u0643\u0645\u0644\u0647. \u0642\u062f \u062a\u062d\u062a\u0627\u062c \u0627\u0644\u0635\u0641\u062d\u0627\u062a \u0625\u0644\u0649 \u0625\u0639\u0627\u062f\u0629 \u062d\u0641\u0638 \u0623\u0648 \u0625\u062c\u0631\u0627\u0621 \u0641\u062d\u0635 \u0643\u0627\u0645\u0644 \u0644\u0644\u0645\u0648\u0642\u0639 \u0644\u0631\u0624\u064a\u0629 \u0627\u0644\u0625\u0635\u0644\u0627\u062d\u0627\u062a \u0627\u0644\u0645\u0646\u0639\u0643\u0633\u0629 \u0641\u064a \u0627\u0644\u062a\u0642\u0627\u0631\u064a\u0631."],"%d issue found":["\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 %d \u0645\u0634\u0643\u0644\u0629","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 %d \u0645\u0634\u0643\u0644\u0629","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 %d \u0645\u0634\u0643\u0644\u0629","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 %d \u0645\u0634\u0643\u0644\u0629","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 %d \u0645\u0634\u0643\u0644\u0629","\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 %d \u0645\u0634\u0643\u0644\u0629"],"%d Problem":["%d \u0645\u0634\u0643\u0644\u0629","%d \u0645\u0634\u0643\u0644\u0629","%d \u0645\u0634\u0643\u0644\u0629","%d \u0645\u0634\u0643\u0644\u0629","%d \u0645\u0634\u0643\u0644\u0629","%d \u0645\u0634\u0643\u0644\u0629"],"%d Needs Review":["%d \u0628\u062d\u0627\u062c\u0629 \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","%d \u0628\u062d\u0627\u062c\u0629 \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","%d \u0628\u062d\u0627\u062c\u0629 \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","%d \u0628\u062d\u0627\u062c\u0629 \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","%d \u0628\u062d\u0627\u062c\u0629 \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629","%d \u0628\u062d\u0627\u062c\u0629 \u0625\u0644\u0649 \u0645\u0631\u0627\u062c\u0639\u0629"],"%d Ignored":["%d \u062a\u0645 \u062a\u062c\u0627\u0647\u0644\u0647\u0627","%d \u062a\u0645 \u062a\u062c\u0627\u0647\u0644\u0647\u0627","%d \u062a\u0645 \u062a\u062c\u0627\u0647\u0644\u0647\u0627","%d \u062a\u0645 \u062a\u062c\u0627\u0647\u0644\u0647\u0627","%d \u062a\u0645 \u062a\u062c\u0627\u0647\u0644\u0647\u0627","%d \u062a\u0645 \u062a\u062c\u0627\u0647\u0644\u0647\u0627"],"No issues detected.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0643\u062a\u0634\u0627\u0641 \u0623\u064a \u0645\u0634\u0627\u0643\u0644."],"Landmark: %s":["\u0645\u0639\u0644\u0645: %s"],"Failed to load scanner script.":["\u0641\u0634\u0644 \u062a\u062d\u0645\u064a\u0644 \u0633\u0643\u0631\u0628\u062a \u0627\u0644\u0645\u0627\u0633\u062d \u0627\u0644\u0636\u0648\u0626\u064a."],"Scanner function not found.":["\u0648\u0638\u064a\u0641\u0629 \u0627\u0644\u0641\u062d\u0635 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f\u0629."],"Scanning...":["\u062c\u0627\u0631\u064d \u0627\u0644\u0641\u062d\u0635..."],"Missing postId or nonce.":["\u0645\u0639\u0631\u0641 \u0627\u0644\u0645\u0646\u0634\u0648\u0631 \u0623\u0648 \u0631\u0645\u0632 nonce \u0645\u0641\u0642\u0648\u062f."],"Rescan complete. No violations found.":["\u0627\u0643\u062a\u0645\u0644\u062a \u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0641\u062d\u0635. \u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0627\u0646\u062a\u0647\u0627\u0643\u0627\u062a."],"No violations found, skipping save.":["\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0627\u0646\u062a\u0647\u0627\u0643\u0627\u062a\u060c \u062a\u062e\u0637\u064a \u0627\u0644\u062d\u0641\u0638."],"Accessibility scan error.":["\u062e\u0637\u0623 \u0641\u064a \u0641\u062d\u0635 \u0625\u0645\u0643\u0627\u0646\u064a\u0629 \u0627\u0644\u0648\u0635\u0648\u0644."],"Error saving scan results.":["\u062e\u0637\u0623 \u0641\u064a \u062d\u0641\u0638 \u0646\u062a\u0627\u0626\u062c \u0627\u0644\u0641\u062d\u0635."],"Rescan already in progress.":["\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0641\u062d\u0635 \u0642\u064a\u062f \u0627\u0644\u062a\u0642\u062f\u0645 \u0628\u0627\u0644\u0641\u0639\u0644."],"Rescanning this page.":["\u0625\u0639\u0627\u062f\u0629 \u0641\u062d\u0635 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629."],"Rescan complete.":["\u0627\u0643\u062a\u0645\u0644\u062a \u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0641\u062d\u0635."],"Error: Missing required parameters.":["\u062e\u0637\u0623: \u0645\u0639\u0644\u0645\u0627\u062a \u0645\u0637\u0644\u0648\u0628\u0629 \u0645\u0641\u0642\u0648\u062f\u0629."]}}} \ No newline at end of file diff --git a/languages/accessibility-checker-ar.mo b/languages/accessibility-checker-ar.mo index 4f3eea4d30590f501ae658d78579d712b4d18630..3416a435934194b1bbe8f48bc4a1175e5405ec35 100644 GIT binary patch delta 22776 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 F{{!VJ%xnMv delta 21039 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\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: 2026-04-20T19:54:54+00:00\n" +"POT-Creation-Date: 2026-05-04T17:50:18+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" @@ -49,7 +49,7 @@ msgid "https://equalizedigital.com" msgstr "https://equalizedigital.com" #: admin/AdminPage/AccessibilityReportsPage.php:56 -#: admin/AdminPage/AccessibilityReportsPage.php:137 +#: admin/AdminPage/AccessibilityReportsPage.php:138 msgid "Accessibility Reports" msgstr "تقارير إمكانية الوصول" @@ -57,151 +57,155 @@ msgstr "تقارير إمكانية الوصول" msgid "New" msgstr "جديد" -#: admin/AdminPage/AccessibilityReportsPage.php:143 +#: admin/AdminPage/AccessibilityReportsPage.php:144 msgid "Get recurring email reports with a snapshot of your site’s accessibility, including total issues, trends over time, most problematic pages, and the most severe issues to fix first." msgstr "احصل على تقارير بريد إلكتروني متكررة تتضمن لقطة لإمكانية وصول موقعك، بما في ذلك إجمالي المشكلات، والاتجاهات بمرور الوقت، والصفحات الأكثر إشكالية، والمشكلات الأكثر خطورة التي يجب إصلاحها أولاً." -#: admin/AdminPage/AccessibilityReportsPage.php:145 +#: admin/AdminPage/AccessibilityReportsPage.php:146 msgid "Get recurring email reports with a snapshot of your site’s accessibility, including total issues, trends over time, most problematic pages, and the most severe issues to fix first. Some details, like full-site coverage and issue breakdowns, are available in Pro." msgstr "احصل على تقارير بريد إلكتروني متكررة تتضمن لقطة لإمكانية وصول موقعك، بما في ذلك إجمالي المشكلات، والاتجاهات بمرور الوقت، والصفحات الأكثر إشكالية، والمشكلات الأكثر خطورة التي يجب إصلاحها أولاً. تتوفر بعض التفاصيل، مثل التغطية الكاملة للموقع وتفاصيل المشكلات، في إصدار Pro." -#: admin/AdminPage/AccessibilityReportsPage.php:156 -#: admin/AdminPage/AccessibilityReportsPage.php:170 +#: admin/AdminPage/AccessibilityReportsPage.php:157 +#: admin/AdminPage/AccessibilityReportsPage.php:171 msgid "Enable Email Reports" msgstr "تمكين تقارير البريد الإلكتروني" -#: admin/AdminPage/AccessibilityReportsPage.php:163 -#: admin/AdminPage/AccessibilityReportsPage.php:167 -#: admin/AdminPage/AccessibilityReportsPage.php:262 +#: admin/AdminPage/AccessibilityReportsPage.php:164 +#: admin/AdminPage/AccessibilityReportsPage.php:168 +#: admin/AdminPage/AccessibilityReportsPage.php:260 #: admin/AdminPage/ConnectedServicesPage.php:153 msgid "Free License Key" msgstr "مفتاح ترخيص مجاني" -#: admin/AdminPage/AccessibilityReportsPage.php:176 +#: admin/AdminPage/AccessibilityReportsPage.php:177 msgid "Get a Free License Key" msgstr "احصل على مفتاح ترخيص مجاني" #. translators: %s: dashboard URL. -#: admin/AdminPage/AccessibilityReportsPage.php:181 +#: admin/AdminPage/AccessibilityReportsPage.php:182 #, php-format msgid "Got the plugin from Equalize Digital? Your key is in your dashboard." msgstr "هل حصلت على المكون الإضافي من Equalize Digital؟ مفتاحك موجود في لوحة التحكم الخاصة بك." #. translators: %s: signup URL. -#: admin/AdminPage/AccessibilityReportsPage.php:190 +#: admin/AdminPage/AccessibilityReportsPage.php:191 #, php-format msgid "Installed from WordPress.org? Create a free account to get one." msgstr "هل قمت بالتثبيت من WordPress.org؟ أنشئ حسابًا مجانيًا للحصول على واحد." #. translators: %s: signup URL. -#: admin/AdminPage/AccessibilityReportsPage.php:199 +#: admin/AdminPage/AccessibilityReportsPage.php:200 #, php-format msgid "Not sure? Just create a free account. It only takes a minute." msgstr "لست متأكدًا؟ فقط أنشئ حسابًا مجانيًا. يستغرق الأمر دقيقة واحدة فقط." -#: admin/AdminPage/AccessibilityReportsPage.php:211 +#: admin/AdminPage/AccessibilityReportsPage.php:212 msgid "Reports Enabled" msgstr "التقارير مُفعّلة" -#: admin/AdminPage/AccessibilityReportsPage.php:214 +#: admin/AdminPage/AccessibilityReportsPage.php:215 msgid "You’ll receive weekly accessibility reports for this site." msgstr "ستتلقى تقارير أسبوعية حول إمكانية الوصول لهذا الموقع." #. translators: %s: next report date. -#: admin/AdminPage/AccessibilityReportsPage.php:218 +#: admin/AdminPage/AccessibilityReportsPage.php:219 #, php-format msgid "Next report: %s" msgstr "التقرير التالي: %s" -#: admin/AdminPage/AccessibilityReportsPage.php:222 -msgid "Manage Recipients in Dashboard" -msgstr "إدارة المستلمين في لوحة التحكم" - -#: admin/AdminPage/AccessibilityReportsPage.php:228 +#: admin/AdminPage/AccessibilityReportsPage.php:226 msgid "Full Coverage" msgstr "تغطية كاملة" -#: admin/AdminPage/AccessibilityReportsPage.php:228 +#: admin/AdminPage/AccessibilityReportsPage.php:226 msgid "Limited Coverage" msgstr "تغطية محدودة" -#: admin/AdminPage/AccessibilityReportsPage.php:232 +#: admin/AdminPage/AccessibilityReportsPage.php:230 msgid "Your reports include all post types and taxonomies." msgstr "تتضمن تقاريرك جميع أنواع المنشورات والتصنيفات." -#: admin/AdminPage/AccessibilityReportsPage.php:234 +#: admin/AdminPage/AccessibilityReportsPage.php:232 msgid "Full-site scanning enabled" msgstr "تم تمكين مسح الموقع بالكامل" -#: admin/AdminPage/AccessibilityReportsPage.php:235 +#: admin/AdminPage/AccessibilityReportsPage.php:233 msgid "Complete issue breakdowns" msgstr "تفاصيل كاملة للمشكلات" -#: admin/AdminPage/AccessibilityReportsPage.php:236 +#: admin/AdminPage/AccessibilityReportsPage.php:234 msgid "Detailed reporting" msgstr "تقارير مفصلة" -#: admin/AdminPage/AccessibilityReportsPage.php:239 +#: admin/AdminPage/AccessibilityReportsPage.php:237 msgid "Your reports only include part of your site." msgstr "تتضمن تقاريرك جزءًا فقط من موقعك." -#: admin/AdminPage/AccessibilityReportsPage.php:240 +#: admin/AdminPage/AccessibilityReportsPage.php:238 msgid "Upgrade to Pro to:" msgstr "قم بالترقية إلى Pro من أجل:" -#: admin/AdminPage/AccessibilityReportsPage.php:242 +#: admin/AdminPage/AccessibilityReportsPage.php:240 msgid "Scan all content types" msgstr "فحص جميع أنواع المحتوى" -#: admin/AdminPage/AccessibilityReportsPage.php:243 +#: admin/AdminPage/AccessibilityReportsPage.php:241 msgid "Get full issue breakdowns" msgstr "الحصول على تفاصيل كاملة للمشكلات" -#: admin/AdminPage/AccessibilityReportsPage.php:244 +#: admin/AdminPage/AccessibilityReportsPage.php:242 msgid "Receive more detailed reports" msgstr "تلقي تقارير أكثر تفصيلاً" -#: admin/AdminPage/AccessibilityReportsPage.php:247 +#: admin/AdminPage/AccessibilityReportsPage.php:245 #: admin/class-upgrade-promotion.php:62 msgid "Upgrade to Pro" msgstr "الترقية إلى النسخة الاحترافية" -#: admin/AdminPage/AccessibilityReportsPage.php:253 +#: admin/AdminPage/AccessibilityReportsPage.php:251 msgid "Accessibility Summary" msgstr "ملخص إمكانية الوصول" -#: admin/AdminPage/AccessibilityReportsPage.php:254 +#: admin/AdminPage/AccessibilityReportsPage.php:252 msgid "This summary reflects the latest scan data available for your site." msgstr "يعكس هذا الملخص أحدث بيانات الفحص المتاحة لموقعك." -#: admin/AdminPage/AccessibilityReportsPage.php:256 +#: admin/AdminPage/AccessibilityReportsPage.php:254 msgid "Total Issues Found" msgstr "إجمالي المشكلات التي تم العثور عليها" -#: admin/AdminPage/AccessibilityReportsPage.php:262 +#: admin/AdminPage/AccessibilityReportsPage.php:260 msgid "Account Connection" msgstr "اتصال الحساب" -#: admin/AdminPage/AccessibilityReportsPage.php:270 +#: admin/AdminPage/AccessibilityReportsPage.php:268 msgid "Disable Email Reports" msgstr "تعطيل تقارير البريد الإلكتروني" -#. translators: %1$s: terms link, %2$s: privacy link. -#: admin/AdminPage/AccessibilityReportsPage.php:281 +#. translators: %1$s: privacy link, %2$s: data processing agreement link, %3$s: privacy policy aria label, %4$s: data processing agreement aria label. +#: admin/AdminPage/AccessibilityReportsPage.php:279 #, php-format -msgid "By connecting this site, you agree to the Equalize Digital Terms of Service and Privacy Policy." -msgstr "بربط هذا الموقع، أنت توافق على شروط الخدمة وسياسة الخصوصية الخاصة بـ Equalize Digital." +msgid "By connecting this site, you agree to Equalize Digital's Privacy Policy and Data Processing Agreement ." +msgstr "بربط هذا الموقع، فإنك توافق على سياسة الخصوصية الخاصة بـ Equalize Digital واتفاقية معالجة البيانات ." + +#: admin/AdminPage/AccessibilityReportsPage.php:282 +msgid "Privacy Policy (opens in a new window)" +msgstr "سياسة الخصوصية (تُفتح في نافذة جديدة)" + +#: admin/AdminPage/AccessibilityReportsPage.php:283 +msgid "Data Processing Agreement (opens in a new window)" +msgstr "اتفاقية معالجة البيانات (تُفتح في نافذة جديدة)" #: admin/AdminPage/AccessibilityReportsPage.php:294 -msgid "Preview of the weekly accessibility report email." -msgstr "معاينة لبريد تقرير إمكانية الوصول الأسبوعي." +msgid "Weekly email includes total issues found and changes since the last report, coverage information, counts of problems, needs review, passed test percentage, and information about the most problematic pages and the most severe issues." +msgstr "يتضمن البريد الإلكتروني الأسبوعي إجمالي المشكلات المكتشفة والتغييرات منذ التقرير الأخير، ومعلومات التغطية، وعدد المشكلات، والاحتياجات للمراجعة، والنسبة المئوية للاختبارات الناجحة، ومعلومات حول الصفحات الأكثر إشكالية والمشكلات الأكثر خطورة." -#: admin/AdminPage/AccessibilityReportsPage.php:381 +#: admin/AdminPage/AccessibilityReportsPage.php:387 #: build/sidebar.bundle.js:2 msgid "N/A" msgstr "غير متوفر" -#: admin/AdminPage/AccessibilityReportsPage.php:471 +#: admin/AdminPage/AccessibilityReportsPage.php:477 #: admin/class-ajax.php:330 #: build/frontendHighlighterApp.bundle.js:2 #: build/issueModal.bundle.js:2 @@ -209,7 +213,7 @@ msgstr "غير متوفر" msgid "Critical" msgstr "حرج" -#: admin/AdminPage/AccessibilityReportsPage.php:473 +#: admin/AdminPage/AccessibilityReportsPage.php:479 #: admin/class-ajax.php:334 #: build/frontendHighlighterApp.bundle.js:2 #: build/issueModal.bundle.js:2 @@ -217,7 +221,7 @@ msgstr "حرج" msgid "High" msgstr "مرتفع" -#: admin/AdminPage/AccessibilityReportsPage.php:475 +#: admin/AdminPage/AccessibilityReportsPage.php:481 #: admin/class-ajax.php:338 #: build/frontendHighlighterApp.bundle.js:2 #: build/issueModal.bundle.js:2 @@ -225,7 +229,7 @@ msgstr "مرتفع" msgid "Medium" msgstr "متوسط" -#: admin/AdminPage/AccessibilityReportsPage.php:477 +#: admin/AdminPage/AccessibilityReportsPage.php:483 #: admin/class-ajax.php:342 #: build/frontendHighlighterApp.bundle.js:2 #: build/issueModal.bundle.js:2 @@ -233,7 +237,7 @@ msgstr "متوسط" msgid "Low" msgstr "منخفض" -#: admin/AdminPage/AccessibilityReportsPage.php:479 +#: admin/AdminPage/AccessibilityReportsPage.php:485 #: includes/classes/class-rest-api.php:997 msgid "Unknown" msgstr "غير معروف" @@ -477,18 +481,17 @@ msgid "Upgrade to a paid version of Accessibility Checker from November 24th to msgstr "قم بالترقية إلى إصدار مدفوع من Accessibility Checker في الفترة من 24 نوفمبر إلى 3 ديسمبر واحصل على خصم 30%! مسح كامل للموقع، وتقرير بالمشكلات المفتوحة على مستوى الموقع، وسجلات التجاهل، والمزيد." #: admin/class-admin-notices.php:141 -#: admin/class-admin-notices.php:231 msgid "Ask a Pre-Sale Question" msgstr "اطرح سؤالاً قبل البيع" #: admin/class-admin-notices.php:142 -#: admin/class-admin-notices.php:232 +#: admin/class-admin-notices.php:245 msgid "Upgrade Now" msgstr "قم بالترقية الآن" #: admin/class-admin-notices.php:161 -#: admin/class-admin-notices.php:251 -#: admin/class-admin-notices.php:340 +#: admin/class-admin-notices.php:266 +#: admin/class-admin-notices.php:356 #: admin/class-ajax.php:60 #: admin/class-ajax.php:223 #: admin/class-ajax.php:634 @@ -501,36 +504,54 @@ msgid "Permission Denied" msgstr "تم رفض الإذن" #: admin/class-admin-notices.php:173 -#: admin/class-admin-notices.php:263 -#: admin/class-admin-notices.php:364 +#: admin/class-admin-notices.php:279 +#: admin/class-admin-notices.php:380 msgid "Update option wasn't successful" msgstr "لم تنجح عملية تحديث الخيار" -#: admin/class-admin-notices.php:229 -msgid "🎉 Get 25% off Accessibility Checker Pro in honor of Global Accessibility Awareness Day! 🎉" -msgstr "🎉 احصل على خصم 25٪ على Accessibility Checker Pro احتفالًا باليوم العالمي للتوعية بإمكانية الوصول! 🎉" +#: admin/class-admin-notices.php:226 +msgid "⚡️ Global Accessibility Awareness Day Flash Sale" +msgstr "⚡️ تخفيضات يوم الوعي العالمي بإمكانية الوصول" + +#. translators: 1: opening anchor tag for accessibility courses link, 2: closing anchor tag, 3: opening anchor tag for ArchiveWP link, 4: closing anchor tag +#: admin/class-admin-notices.php:232 +#, php-format +msgid "3 days only: Save 15%% on %1$saccessibility courses%2$s and Equalize Digital's %3$sArchiveWP plugin%4$s. Go further with accessibility." +msgstr "3 أيام فقط: وفر %%15 على %1$sدورات إمكانية الوصول%2$s ومكون %3$sArchiveWP الإضافي%4$s من Equalize Digital. اذهب أبعد في إمكانية الوصول." + +#: admin/class-admin-notices.php:238 +msgid "Limited-time offer • May 20–22 • Use coupon code " +msgstr "عرض لفترة محدودة • من 20 إلى 22 مايو • استخدم رمز القسيمة " + +#: admin/class-admin-notices.php:239 +msgid "Grab the Deal Before It Ends" +msgstr "احصل على الصفقة قبل انتهائها" -#: admin/class-admin-notices.php:230 -msgid "Use coupon code GAAD25 from May 13th-May 21st to get access to full-site scanning and other pro features at a special discount. Not sure if upgrading is right for you?" -msgstr "استخدم رمز القسيمة GAAD25 من 13 مايو إلى 21 مايو للحصول على إمكانية الفحص الكامل للموقع وميزات احترافية أخرى بخصم خاص. لست متأكدًا ما إذا كانت الترقية مناسبة لك؟?" +#: admin/class-admin-notices.php:242 +msgid "3 days only: Save 15% when you upgrade to Accessibility Checker Pro with coupon code" +msgstr "3 أيام فقط: وفر 15% عند الترقية إلى Accessibility Checker Pro باستخدام رمز القسيمة" -#: admin/class-admin-notices.php:315 +#: admin/class-admin-notices.php:244 +msgid "Limited-time offer • May 20–22" +msgstr "عرض لفترة محدودة • من 20 إلى 22 مايو" + +#: admin/class-admin-notices.php:331 msgid "Hello! Thank you for using Accessibility Checker as part of your accessibility toolkit. Since you've been using it for a while, would you please write a 5-star review of Accessibility Checker in the WordPress plugin directory? This will help increase our visibility so more people can learn about the importance of web accessibility. Thanks so much!" msgstr "مرحبًا! شكرًا لاستخدامك Accessibility Checker كجزء من مجموعة أدوات إمكانية الوصول الخاصة بك. بما أنك تستخدمه منذ فترة، هل يمكنك كتابة مراجعة من 5 نجوم لـ Accessibility Checker في دليل إضافات ووردبريس؟ سيساعد هذا في زيادة ظهورنا حتى يتمكن المزيد من الأشخاص من معرفة أهمية إمكانية الوصول إلى الويب. شكرًا جزيلًا!" -#: admin/class-admin-notices.php:318 +#: admin/class-admin-notices.php:334 msgid "Write A Review" msgstr "اكتب مراجعة" -#: admin/class-admin-notices.php:319 +#: admin/class-admin-notices.php:335 msgid "Remind Me In Two Weeks" msgstr "ذكرني بعد أسبوعين" -#: admin/class-admin-notices.php:320 +#: admin/class-admin-notices.php:336 msgid "Never Ask Again" msgstr "لا تسأل مرة أخرى" -#: admin/class-admin-notices.php:347 +#: admin/class-admin-notices.php:363 msgid "The review action value was not set" msgstr "لم يتم تعيين قيمة إجراء المراجعة" @@ -1287,11 +1308,11 @@ msgstr "يتم فحص المحتوى لإمكانية الوصول" #, php-format msgid "Accessibility Checker has scanned %s post for accessibility issues." msgid_plural "Accessibility Checker has scanned %s posts for accessibility issues." -msgstr[0] "قام Accessibility Checker بفحص %s منشورًا بحثًا عن مشكلات إمكانية الوصول." +msgstr[0] "Accessibility Checker has scanned %s posts for accessibility issues." msgstr[1] "قام Accessibility Checker بفحص %s منشور بحثًا عن مشكلات إمكانية الوصول." -msgstr[2] "قام Accessibility Checker بفحص %s منشورًا بحثًا عن مشكلات إمكانية الوصول." -msgstr[3] "قام Accessibility Checker بفحص %s منشورًا بحثًا عن مشكلات إمكانية الوصول." -msgstr[4] "قام Accessibility Checker بفحص %s منشورًا بحثًا عن مشكلات إمكانية الوصول." +msgstr[2] "Accessibility Checker has scanned %s posts for accessibility issues." +msgstr[3] "Accessibility Checker has scanned %s posts for accessibility issues." +msgstr[4] "Accessibility Checker has scanned %s posts for accessibility issues." msgstr[5] "قام Accessibility Checker بفحص %s منشور للتحقق من مشاكل إمكانية الوصول." #: admin/site-health/class-checks.php:200 @@ -5120,6 +5141,15 @@ msgstr "إغلاق نافذة الإصلاحات" msgid "%1$d of %2$d" msgstr "%1$d من %2$d" +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Untitled issue" +msgstr "مشكلة بدون عنوان" + +#: build/frontendHighlighterApp.bundle.js:2 +#, js-format +msgid "Issue %1$d of %2$d: %3$s" +msgstr "المشكلة %1$d من %2$d: %3$s" + #: build/frontendHighlighterApp.bundle.js:2 msgid "The element is not visible. Try disabling styles." msgstr "العنصر غير مرئي. حاول تعطيل الأنماط." @@ -5230,10 +5260,6 @@ msgstr "الخطورة:" msgid "WCAG:" msgstr "WCAG:" -#: build/frontendHighlighterApp.bundle.js:2 -msgid "Issue type:" -msgstr "نوع المشكلة:" - #: build/frontendHighlighterApp.bundle.js:2 msgid "Ignored" msgstr "تم التجاهل" @@ -5276,6 +5302,18 @@ msgstr "إصلاح المشكلة" msgid "Enable Styles" msgstr "تفعيل الأنماط" +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Enable Page Styles" +msgstr "تمكين أنماط الصفحة" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Page styles disabled." +msgstr "أنماط الصفحة مُعطلة." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Page styles re-enabled." +msgstr "تمت إعادة تمكين أنماط الصفحة." + #: build/frontendHighlighterApp.bundle.js:2 msgid "There are no settings to display." msgstr "لا توجد إعدادات لعرضها." @@ -5337,6 +5375,10 @@ msgstr "لم يتم اكتشاف أي مشاكل." msgid "Landmark: %s" msgstr "معلم: %s" +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Failed to load scanner script." +msgstr "فشل تحميل سكربت الماسح الضوئي." + #: build/frontendHighlighterApp.bundle.js:2 msgid "Scanner function not found." msgstr "وظيفة الفحص غير موجودة." @@ -5345,14 +5387,18 @@ msgstr "وظيفة الفحص غير موجودة." msgid "Scanning..." msgstr "جارٍ الفحص..." -#: build/frontendHighlighterApp.bundle.js:2 -msgid "No violations found, skipping save." -msgstr "لم يتم العثور على انتهاكات، تخطي الحفظ." - #: build/frontendHighlighterApp.bundle.js:2 msgid "Missing postId or nonce." msgstr "معرف المنشور أو رمز nonce مفقود." +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescan complete. No violations found." +msgstr "اكتملت إعادة الفحص. لم يتم العثور على انتهاكات." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "No violations found, skipping save." +msgstr "لم يتم العثور على انتهاكات، تخطي الحفظ." + #: build/frontendHighlighterApp.bundle.js:2 msgid "Accessibility scan error." msgstr "خطأ في فحص إمكانية الوصول." @@ -5361,6 +5407,18 @@ msgstr "خطأ في فحص إمكانية الوصول." msgid "Error saving scan results." msgstr "خطأ في حفظ نتائج الفحص." +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescan already in progress." +msgstr "إعادة الفحص قيد التقدم بالفعل." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescanning this page." +msgstr "إعادة فحص هذه الصفحة." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescan complete." +msgstr "اكتملت إعادة الفحص." + #: build/frontendHighlighterApp.bundle.js:2 msgid "Error: Missing required parameters." msgstr "خطأ: معلمات مطلوبة مفقودة." From ecb35ef8d3779603c3b24f37317425ee1a39cebd Mon Sep 17 00:00:00 2001 From: PTC Date: Tue, 5 May 2026 19:39:09 +0000 Subject: [PATCH 12/74] PTC accessibility-checker (1985): Edits by Steve Jones (May 05, 2026 19:39:04652135) --- ...o_RO-b93b9e514c44a41f97246123aa57f5c4.json | 2 +- languages/accessibility-checker-ro_RO.mo | Bin 179783 -> 209923 bytes languages/accessibility-checker-ro_RO.po | 3474 +++++++++++------ 3 files changed, 2359 insertions(+), 1117 deletions(-) diff --git a/languages/accessibility-checker-ro_RO-b93b9e514c44a41f97246123aa57f5c4.json b/languages/accessibility-checker-ro_RO-b93b9e514c44a41f97246123aa57f5c4.json index 9988eef5a..06379184c 100644 --- a/languages/accessibility-checker-ro_RO-b93b9e514c44a41f97246123aa57f5c4.json +++ b/languages/accessibility-checker-ro_RO-b93b9e514c44a41f97246123aa57f5c4.json @@ -1 +1 @@ -{"translation-revision-date":"YEAR-MO-DA HO:MI+ZONE","generator":"WP-CLI\/2.12.0","source":"build\/frontendHighlighterApp.bundle.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ro_RO","plural-forms":"nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);"},"Accessibility Checker":["Verificator de Accesibilitate"],"Critical":["Critic"],"High":["Ridicat"],"Medium":["Mediu"],"Low":["Sc\u0103zut"],"Problem":["Problem\u0103","Probleme","Probleme"],"Needs Review":["Necesit\u0103 revizuire","Necesit\u0103 revizuire","Necesit\u0103 revizuire"],", opens a new window":[", se deschide o fereastr\u0103 nou\u0103"],"Save":["Salveaz\u0103"],"Clear Issues":["\u0218terge problemele"],"Saving...":["Se salveaz\u0103..."],"Settings saved successfully. You must %svisit the editor%s and save the post to rescan and remove fixed issues from Accessibility Checker reports.":["Set\u0103rile au fost salvate cu succes. Trebuie s\u0103 %svizitezi editorul%s \u0219i s\u0103 salvezi postarea pentru a rescana \u0219i a elimina problemele rezolvate din rapoartele Accessibility Checker."],"Settings saved successfully.":["Set\u0103rile au fost salvate cu succes."],"Saving failed.":["Salvarea a e\u0219uat."],"Fix Settings":["Set\u0103ri de remediere"],"This will clear all issues for this post. A save will be required to trigger a fresh scan of the post content. Do you want to continue?":["Aceasta va \u0219terge toate problemele pentru aceast\u0103 postare. Va fi necesar\u0103 o salvare pentru a declan\u0219a o nou\u0103 scanare a con\u021binutului post\u0103rii. Dori\u021bi s\u0103 continua\u021bi?"],"Clearing...":["Se \u0219terge..."],"Issues cleared successfully.":["Problemele au fost \u0219terse cu succes."],"Failed to clear issues.":["\u0218tergerea problemelor a e\u0219uat."],"An error occurred while clearing issues.":["A ap\u0103rut o eroare la \u0219tergerea problemelor."],"Close fixes modal":["\u00cenchide modalul de remedieri"],"%1$d of %2$d":["%1$d din %2$d"],"The element is not visible. Try disabling styles.":["Elementul nu este vizibil. \u00cencerca\u021bi s\u0103 dezactiva\u021bi stilurile."],"The element is not focusable. Try disabling styles.":["Elementul nu este focusabil. \u00cencerca\u021bi s\u0103 dezactiva\u021bi stilurile."],"The element was not found on the page.":["Elementul nu a fost g\u0103sit pe pagin\u0103."],"Move to Left":["Mut\u0103 la st\u00e2nga"],"Move to Right":["Mut\u0103 la dreapta"],"Panel position reset.":["Pozi\u021bia panoului a fost resetat\u0103."],"Panel moved to the left.":["Panoul a fost mutat la st\u00e2nga."],"Panel moved to the right.":["Panoul a fost mutat la dreapta."],"Open details for %1$s, %2$s of %3$s":["Deschide\u021bi detalii pentru %1$s, %2$s din %3$s"],"Undock Panel":["Deta\u0219eaz\u0103 panoul"],"Dock Panel":["Ancoreaz\u0103 panoul"],"Rescan This Page":["Rescaneaz\u0103 aceast\u0103 pagin\u0103"],"Accessibility Checker Tools":["Instrumente Accessibility Checker"],"More options":["Mai multe op\u021biuni"],"Disable Page Styles":["Dezactiveaz\u0103 stilurile paginii"],"Disable Styles":["Dezactiveaz\u0103 stilurile"],"Close":["\u00cenchide"],"No issues found on this page.":["Nu au fost g\u0103site probleme pe aceast\u0103 pagin\u0103."],"Loading...":["Se \u00eencarc\u0103..."],"Previous":["Anterior"],"Next":["Urm\u0103torul"],"Reset Position":["Reseta\u021bi pozi\u021bia"],"An error occurred when loading the issues.":["A ap\u0103rut o eroare la \u00eenc\u0103rcarea problemelor."],"Panel docked.":["Panou ancorat."],"Panel undocked.":["Panou deta\u0219at."],"Severity:":["Severitate:"],"WCAG:":["WCAG:"],"Issue type:":["Tipul problemei:"],"Ignored":["Ignorat"],"Show explanation":["Arat\u0103 explica\u021bia"],"Why It Matters":["De ce este important"],"How to Fix":["Cum se remediaz\u0103"],"More Detailed Documentation":["Documenta\u021bie mai detaliat\u0103"],"Show Affected Code":["Arat\u0103 codul afectat"],"Fix issue: %s":["Remedia\u021bi problema: %s"],"Fix Issue":["Remedia\u021bi problema"],"Enable Styles":["Activeaz\u0103 stilurile"],"There are no settings to display.":["Nu exist\u0103 set\u0103ri de afi\u0219at."],"These settings enable global fixes across your entire site. Pages may need to be resaved or a full site scan run to see fixes reflected in reports.":["Aceste set\u0103ri activeaz\u0103 remedieri globale pe \u00eentregul site. Este posibil ca paginile s\u0103 trebuiasc\u0103 resalvate sau s\u0103 fie rulat\u0103 o scanare complet\u0103 a site-ului pentru a vedea remedierile reflectate \u00een rapoarte."],"%d issue found":["%d problem\u0103 g\u0103sit\u0103","%d probleme g\u0103site","%d probleme g\u0103site"],"%d Problem":["%d problem\u0103","%d probleme","%d probleme"],"%d Needs Review":["%d necesit\u0103 revizuire","%d necesit\u0103 revizuire","%d necesit\u0103 revizuire"],"%d Ignored":["%d ignorat","%d ignorate","%d ignorate"],"No issues detected.":["Nu s-au detectat probleme."],"Landmark: %s":["Reper: %s"],"Scanner function not found.":["Func\u021bia de scanare nu a fost g\u0103sit\u0103."],"Scanning...":["Se scaneaz\u0103..."],"No violations found, skipping save.":["Nu s-au g\u0103sit \u00eenc\u0103lc\u0103ri, se omite salvarea."],"Missing postId or nonce.":["Lipse\u0219te postId sau nonce."],"Accessibility scan error.":["Eroare la scanarea de accesibilitate."],"Error saving scan results.":["Eroare la salvarea rezultatelor scan\u0103rii."],"Error: Missing required parameters.":["Eroare: Lipsesc parametrii necesari."]}}} \ No newline at end of file +{"translation-revision-date":"YEAR-MO-DA HO:MI+ZONE","generator":"WP-CLI\/2.12.0","source":"build\/frontendHighlighterApp.bundle.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ro_RO","plural-forms":"nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);"},"Accessibility Checker":["Verificator de Accesibilitate"],"Critical":["Critic"],"High":["Ridicat"],"Medium":["Mediu"],"Low":["Sc\u0103zut"],"Problem":["Problem\u0103","Probleme","Probleme"],"Needs Review":["Necesit\u0103 revizuire","Necesit\u0103 revizuire","Necesit\u0103 revizuire"],", opens a new window":[", se deschide o fereastr\u0103 nou\u0103"],"Save":["Salveaz\u0103"],"Clear Issues":["\u0218terge problemele"],"Saving...":["Se salveaz\u0103..."],"Settings saved successfully. You must %svisit the editor%s and save the post to rescan and remove fixed issues from Accessibility Checker reports.":["Set\u0103rile au fost salvate cu succes. Trebuie s\u0103 %svizitezi editorul%s \u0219i s\u0103 salvezi postarea pentru a rescana \u0219i a elimina problemele rezolvate din rapoartele Accessibility Checker."],"Settings saved successfully.":["Set\u0103rile au fost salvate cu succes."],"Saving failed.":["Salvarea a e\u0219uat."],"Fix Settings":["Set\u0103ri de remediere"],"This will clear all issues for this post. A save will be required to trigger a fresh scan of the post content. Do you want to continue?":["Aceasta va \u0219terge toate problemele pentru aceast\u0103 postare. Va fi necesar\u0103 o salvare pentru a declan\u0219a o nou\u0103 scanare a con\u021binutului post\u0103rii. Dori\u021bi s\u0103 continua\u021bi?"],"Clearing...":["Se \u0219terge..."],"Issues cleared successfully.":["Problemele au fost \u0219terse cu succes."],"Failed to clear issues.":["\u0218tergerea problemelor a e\u0219uat."],"An error occurred while clearing issues.":["A ap\u0103rut o eroare la \u0219tergerea problemelor."],"Close fixes modal":["\u00cenchide modalul de remedieri"],"%1$d of %2$d":["%1$d din %2$d"],"Untitled issue":["Problem\u0103 f\u0103r\u0103 titlu"],"Issue %1$d of %2$d: %3$s":["Problema %1$d din %2$d: %3$s"],"The element is not visible. Try disabling styles.":["Elementul nu este vizibil. \u00cencerca\u021bi s\u0103 dezactiva\u021bi stilurile."],"The element is not focusable. Try disabling styles.":["Elementul nu este focusabil. \u00cencerca\u021bi s\u0103 dezactiva\u021bi stilurile."],"The element was not found on the page.":["Elementul nu a fost g\u0103sit pe pagin\u0103."],"Move to Left":["Mut\u0103 la st\u00e2nga"],"Move to Right":["Mut\u0103 la dreapta"],"Panel position reset.":["Pozi\u021bia panoului a fost resetat\u0103."],"Panel moved to the left.":["Panoul a fost mutat la st\u00e2nga."],"Panel moved to the right.":["Panoul a fost mutat la dreapta."],"Open details for %1$s, %2$s of %3$s":["Deschide\u021bi detalii pentru %1$s, %2$s din %3$s"],"Undock Panel":["Deta\u0219eaz\u0103 panoul"],"Dock Panel":["Ancoreaz\u0103 panoul"],"Rescan This Page":["Rescaneaz\u0103 aceast\u0103 pagin\u0103"],"Accessibility Checker Tools":["Instrumente Accessibility Checker"],"More options":["Mai multe op\u021biuni"],"Disable Page Styles":["Dezactiveaz\u0103 stilurile paginii"],"Disable Styles":["Dezactiveaz\u0103 stilurile"],"Close":["\u00cenchide"],"No issues found on this page.":["Nu au fost g\u0103site probleme pe aceast\u0103 pagin\u0103."],"Loading...":["Se \u00eencarc\u0103..."],"Previous":["Anterior"],"Next":["Urm\u0103torul"],"Reset Position":["Reseta\u021bi pozi\u021bia"],"An error occurred when loading the issues.":["A ap\u0103rut o eroare la \u00eenc\u0103rcarea problemelor."],"Panel docked.":["Panou ancorat."],"Panel undocked.":["Panou deta\u0219at."],"Severity:":["Severitate:"],"WCAG:":["WCAG:"],"Ignored":["Ignorat"],"Show explanation":["Arat\u0103 explica\u021bia"],"Why It Matters":["De ce este important"],"How to Fix":["Cum se remediaz\u0103"],"More Detailed Documentation":["Documenta\u021bie mai detaliat\u0103"],"Show Affected Code":["Arat\u0103 codul afectat"],"Fix issue: %s":["Remedia\u021bi problema: %s"],"Fix Issue":["Remedia\u021bi problema"],"Enable Styles":["Activeaz\u0103 stilurile"],"Enable Page Styles":["Activeaz\u0103 stilurile paginii"],"Page styles disabled.":["Stilurile paginii sunt dezactivate."],"Page styles re-enabled.":["Stilurile paginii au fost reactivate."],"There are no settings to display.":["Nu exist\u0103 set\u0103ri de afi\u0219at."],"These settings enable global fixes across your entire site. Pages may need to be resaved or a full site scan run to see fixes reflected in reports.":["Aceste set\u0103ri activeaz\u0103 remedieri globale pe \u00eentregul site. Este posibil ca paginile s\u0103 trebuiasc\u0103 resalvate sau s\u0103 fie rulat\u0103 o scanare complet\u0103 a site-ului pentru a vedea remedierile reflectate \u00een rapoarte."],"%d issue found":["%d problem\u0103 g\u0103sit\u0103","%d probleme g\u0103site","%d probleme g\u0103site"],"%d Problem":["%d problem\u0103","%d probleme","%d probleme"],"%d Needs Review":["%d necesit\u0103 revizuire","%d necesit\u0103 revizuire","%d necesit\u0103 revizuire"],"%d Ignored":["%d ignorat","%d ignorate","%d ignorate"],"No issues detected.":["Nu s-au detectat probleme."],"Landmark: %s":["Reper: %s"],"Failed to load scanner script.":["Nu s-a putut \u00eenc\u0103rca scriptul scanerului."],"Scanner function not found.":["Func\u021bia de scanare nu a fost g\u0103sit\u0103."],"Scanning...":["Se scaneaz\u0103..."],"Missing postId or nonce.":["Lipse\u0219te postId sau nonce."],"Rescan complete. No violations found.":["Rescanare finalizat\u0103. Nu au fost g\u0103site \u00eenc\u0103lc\u0103ri."],"No violations found, skipping save.":["Nu s-au g\u0103sit \u00eenc\u0103lc\u0103ri, se omite salvarea."],"Accessibility scan error.":["Eroare la scanarea de accesibilitate."],"Error saving scan results.":["Eroare la salvarea rezultatelor scan\u0103rii."],"Rescan already in progress.":["Rescanarea este deja \u00een curs."],"Rescanning this page.":["Rescanarea acestei pagini."],"Rescan complete.":["Rescanare finalizat\u0103."],"Error: Missing required parameters.":["Eroare: Lipsesc parametrii necesari."]}}} \ No newline at end of file diff --git a/languages/accessibility-checker-ro_RO.mo b/languages/accessibility-checker-ro_RO.mo index 830f414301028d220af5423a5968ec4de1e9332d..dc473c809efe23aa5cc00a068a9a160871056167 100644 GIT binary patch delta 48698 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 at@2DTQbTPH*hk{PLU;a108k delta 20936 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\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-06T16:25:50+00:00\n" +"POT-Creation-Date: 2026-05-04T17:50:18+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" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);\n" #. Plugin Name of the plugin #: accessibility-checker.php -#: admin/class-meta-boxes.php:39 -#: includes/classes/class-accessibility-statement.php:51 -#: includes/classes/class-admin-toolbar.php:53 -#: includes/options-page.php:43 -#: partials/welcome-page.php:24 +#: admin/class-meta-boxes.php:47 +#: includes/classes/class-accessibility-statement.php:55 +#: includes/classes/class-admin-toolbar.php:57 +#: includes/options-page.php:49 +#: partials/welcome-page.php:28 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/sidebar.bundle.js:2 msgid "Accessibility Checker" msgstr "Verificator de Accesibilitate" @@ -44,18 +48,321 @@ msgstr "Equalize Digital" msgid "https://equalizedigital.com" msgstr "https://equalizedigital.com" -#: admin/AdminPage/FixesPage.php:71 +#: admin/AdminPage/AccessibilityReportsPage.php:56 +#: admin/AdminPage/AccessibilityReportsPage.php:138 +msgid "Accessibility Reports" +msgstr "Rapoarte de accesibilitate" + +#: admin/AdminPage/AccessibilityReportsPage.php:57 +msgid "New" +msgstr "Nou" + +#: admin/AdminPage/AccessibilityReportsPage.php:144 +msgid "Get recurring email reports with a snapshot of your site’s accessibility, including total issues, trends over time, most problematic pages, and the most severe issues to fix first." +msgstr "Primiți rapoarte recurente prin email cu o sinteză a accesibilității site-ului dumneavoastră, inclusiv numărul total de probleme, tendințele în timp, paginile cele mai problematice și cele mai grave probleme de rezolvat mai întâi." + +#: admin/AdminPage/AccessibilityReportsPage.php:146 +msgid "Get recurring email reports with a snapshot of your site’s accessibility, including total issues, trends over time, most problematic pages, and the most severe issues to fix first. Some details, like full-site coverage and issue breakdowns, are available in Pro." +msgstr "Primiți rapoarte recurente prin email cu o sinteză a accesibilității site-ului dumneavoastră, inclusiv numărul total de probleme, tendințele în timp, paginile cele mai problematice și cele mai grave probleme de rezolvat mai întâi. Unele detalii, cum ar fi acoperirea completă a site-ului și defalcările problemelor, sunt disponibile în versiunea Pro." + +#: admin/AdminPage/AccessibilityReportsPage.php:157 +#: admin/AdminPage/AccessibilityReportsPage.php:171 +msgid "Enable Email Reports" +msgstr "Activați rapoartele prin email" + +#: admin/AdminPage/AccessibilityReportsPage.php:164 +#: admin/AdminPage/AccessibilityReportsPage.php:168 +#: admin/AdminPage/AccessibilityReportsPage.php:260 +#: admin/AdminPage/ConnectedServicesPage.php:153 +msgid "Free License Key" +msgstr "Cheie de licență gratuită" + +#: admin/AdminPage/AccessibilityReportsPage.php:177 +msgid "Get a Free License Key" +msgstr "Obțineți o cheie de licență gratuită" + +#. translators: %s: dashboard URL. +#: admin/AdminPage/AccessibilityReportsPage.php:182 +#, php-format +msgid "Got the plugin from Equalize Digital? Your key is in your dashboard." +msgstr "Ați obținut pluginul de la Equalize Digital? Cheia dumneavoastră se află în tabloul de bord." + +#. translators: %s: signup URL. +#: admin/AdminPage/AccessibilityReportsPage.php:191 +#, php-format +msgid "Installed from WordPress.org? Create a free account to get one." +msgstr "Instalat de pe WordPress.org? Creați un cont gratuit pentru a obține una." + +#. translators: %s: signup URL. +#: admin/AdminPage/AccessibilityReportsPage.php:200 +#, php-format +msgid "Not sure? Just create a free account. It only takes a minute." +msgstr "Nu sunteți sigur? Doar creați un cont gratuit. Durează doar un minut." + +#: admin/AdminPage/AccessibilityReportsPage.php:212 +msgid "Reports Enabled" +msgstr "Rapoarte activate" + +#: admin/AdminPage/AccessibilityReportsPage.php:215 +msgid "You’ll receive weekly accessibility reports for this site." +msgstr "Veți primi rapoarte săptămânale de accesibilitate pentru acest site." + +#. translators: %s: next report date. +#: admin/AdminPage/AccessibilityReportsPage.php:219 +#, php-format +msgid "Next report: %s" +msgstr "Următorul raport: %s" + +#: admin/AdminPage/AccessibilityReportsPage.php:226 +msgid "Full Coverage" +msgstr "Acoperire completă" + +#: admin/AdminPage/AccessibilityReportsPage.php:226 +msgid "Limited Coverage" +msgstr "Acoperire limitată" + +#: admin/AdminPage/AccessibilityReportsPage.php:230 +msgid "Your reports include all post types and taxonomies." +msgstr "Rapoartele dumneavoastră includ toate tipurile de postări și taxonomiile." + +#: admin/AdminPage/AccessibilityReportsPage.php:232 +msgid "Full-site scanning enabled" +msgstr "Scanare completă a site-ului activată" + +#: admin/AdminPage/AccessibilityReportsPage.php:233 +msgid "Complete issue breakdowns" +msgstr "Defalcări complete ale problemelor" + +#: admin/AdminPage/AccessibilityReportsPage.php:234 +msgid "Detailed reporting" +msgstr "Raportare detaliată" + +#: admin/AdminPage/AccessibilityReportsPage.php:237 +msgid "Your reports only include part of your site." +msgstr "Rapoartele dumneavoastră includ doar o parte a site-ului." + +#: admin/AdminPage/AccessibilityReportsPage.php:238 +msgid "Upgrade to Pro to:" +msgstr "Actualizați la Pro pentru a:" + +#: admin/AdminPage/AccessibilityReportsPage.php:240 +msgid "Scan all content types" +msgstr "Scana toate tipurile de conținut" + +#: admin/AdminPage/AccessibilityReportsPage.php:241 +msgid "Get full issue breakdowns" +msgstr "Obține defalcări complete ale problemelor" + +#: admin/AdminPage/AccessibilityReportsPage.php:242 +msgid "Receive more detailed reports" +msgstr "Primi rapoarte mai detaliate" + +#: admin/AdminPage/AccessibilityReportsPage.php:245 +#: admin/class-upgrade-promotion.php:62 +msgid "Upgrade to Pro" +msgstr "Treci la versiunea pro" + +#: admin/AdminPage/AccessibilityReportsPage.php:251 +msgid "Accessibility Summary" +msgstr "Rezumat accesibilitate" + +#: admin/AdminPage/AccessibilityReportsPage.php:252 +msgid "This summary reflects the latest scan data available for your site." +msgstr "Acest rezumat reflectă cele mai recente date de scanare disponibile pentru site-ul dumneavoastră." + +#: admin/AdminPage/AccessibilityReportsPage.php:254 +msgid "Total Issues Found" +msgstr "Total probleme găsite" + +#: admin/AdminPage/AccessibilityReportsPage.php:260 +msgid "Account Connection" +msgstr "Conexiune cont" + +#: admin/AdminPage/AccessibilityReportsPage.php:268 +msgid "Disable Email Reports" +msgstr "Dezactivați rapoartele prin email" + +#. translators: %1$s: privacy link, %2$s: data processing agreement link, %3$s: privacy policy aria label, %4$s: data processing agreement aria label. +#: admin/AdminPage/AccessibilityReportsPage.php:279 +#, php-format +msgid "By connecting this site, you agree to Equalize Digital's Privacy Policy and Data Processing Agreement ." +msgstr "Prin conectarea la acest site, sunteți de acord cu Politica de confidențialitate și Acordul de prelucrare a datelor ale Equalize Digital." + +#: admin/AdminPage/AccessibilityReportsPage.php:282 +msgid "Privacy Policy (opens in a new window)" +msgstr "Politica de confidențialitate (se deschide într-o fereastră nouă)" + +#: admin/AdminPage/AccessibilityReportsPage.php:283 +msgid "Data Processing Agreement (opens in a new window)" +msgstr "Acordul de prelucrare a datelor (se deschide într-o fereastră nouă)" + +#: admin/AdminPage/AccessibilityReportsPage.php:294 +msgid "Weekly email includes total issues found and changes since the last report, coverage information, counts of problems, needs review, passed test percentage, and information about the most problematic pages and the most severe issues." +msgstr "E-mailul săptămânal include problemele totale găsite și modificările de la ultimul raport, informații despre acoperire, numărul de probleme, elemente care necesită revizuire, procentul de teste trecute și informații despre cele mai problematice pagini și cele mai grave probleme." + +#: admin/AdminPage/AccessibilityReportsPage.php:387 +#: build/sidebar.bundle.js:2 +msgid "N/A" +msgstr "N/A" + +#: admin/AdminPage/AccessibilityReportsPage.php:477 +#: admin/class-ajax.php:330 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "Critical" +msgstr "Critic" + +#: admin/AdminPage/AccessibilityReportsPage.php:479 +#: admin/class-ajax.php:334 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "High" +msgstr "Ridicat" + +#: admin/AdminPage/AccessibilityReportsPage.php:481 +#: admin/class-ajax.php:338 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "Medium" +msgstr "Mediu" + +#: admin/AdminPage/AccessibilityReportsPage.php:483 +#: admin/class-ajax.php:342 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "Low" +msgstr "Scăzut" + +#: admin/AdminPage/AccessibilityReportsPage.php:485 +#: includes/classes/class-rest-api.php:997 +msgid "Unknown" +msgstr "Necunoscut" + +#: admin/AdminPage/ConnectedServicesPage.php:137 +msgid "create a free account" +msgstr "creați un cont gratuit" + +#: admin/AdminPage/ConnectedServicesPage.php:146 +msgid "Connect this site" +msgstr "Conectați acest site" + +#: admin/AdminPage/ConnectedServicesPage.php:165 +msgid "active" +msgstr "activ" + +#: admin/AdminPage/ConnectedServicesPage.php:167 +msgid "expired" +msgstr "expirat" + +#: admin/AdminPage/ConnectedServicesPage.php:169 +msgid "Enter your license key" +msgstr "Introduceți cheia de licență" + +#: admin/AdminPage/ConnectedServicesPage.php:184 +#: admin/AdminPage/ConnectedServicesPage.php:250 +msgid "Disconnect Site" +msgstr "Deconectați site-ul" + +#: admin/AdminPage/ConnectedServicesPage.php:191 +msgid "Connect Site" +msgstr "Conectați site-ul" + +#. translators: %s: link to my.equalizedigital.com dashboard +#: admin/AdminPage/ConnectedServicesPage.php:204 +#, php-format +msgid "If you downloaded the free plugin from Equalize Digital, you already have a free license key in your %s dashboard." +msgstr "Dacă ați descărcat pluginul gratuit de la Equalize Digital, aveți deja o cheie de licență gratuită în tabloul de bord %s." + +#. translators: %s: link to create a free account +#: admin/AdminPage/ConnectedServicesPage.php:213 +#, php-format +msgid "If not, %s to generate a license key and connect this site." +msgstr "Dacă nu, %s pentru a genera o cheie de licență și a conecta acest site." + +#: admin/AdminPage/ConnectedServicesPage.php:232 +msgid "Connected as Free" +msgstr "Conectat ca gratuit" + +#: admin/AdminPage/ConnectedServicesPage.php:233 +msgid "Your Pro license is no longer valid, but this site remains connected for Free email reports." +msgstr "Licența dumneavoastră Pro nu mai este validă, dar acest site rămâne conectat pentru rapoarte gratuite prin email." + +#. translators: %s: link to my.equalizedigital.com dashboard +#: admin/AdminPage/ConnectedServicesPage.php:238 +#, php-format +msgid "You can manage recipients and review connection details in your %s dashboard." +msgstr "Puteți gestiona destinatarii și examina detaliile conexiunii în tabloul de bord %s." + +#: admin/AdminPage/ConnectedServicesPage.php:398 +msgid "Your Pro license is no longer valid. This site is using a valid Free license, and email reports remain connected as Free email reports. Renew your Pro license to restore Pro-only features." +msgstr "Licența dumneavoastră Pro nu mai este validă. Acest site utilizează o licență gratuită validă, iar rapoartele prin email rămân conectate ca rapoarte gratuite prin email. Reînnoiți licența Pro pentru a restaura funcționalitățile Pro-only." + +#: admin/AdminPage/ConnectedServicesPage.php:401 +msgid "Your Pro license is no longer valid. This site is using a valid Free license, but email reports are not currently connected. Connect this site from the Free License section to resume Free email reports." +msgstr "Licența dumneavoastră Pro nu mai este validă. Acest site utilizează o licență gratuită validă, dar rapoartele prin email nu sunt conectate în prezent. Conectați acest site din secțiunea Licență gratuită pentru a relua rapoartele gratuite prin email." + +#: admin/AdminPage/ConnectedServicesPage.php:442 +msgid "Please renew your license" +msgstr "Vă rugăm să reînnoiți licența" + +#. translators: %1$s: item name, %2$s: item name, %3$s: renew license link +#: admin/AdminPage/ConnectedServicesPage.php:445 +#, php-format +msgid "Your %1$s license has expired. %3$s to continue accessing additional features and services for %2$s." +msgstr "Licența dumneavoastră %1$s a expirat. %3$s pentru a continua accesul la funcționalități și servicii suplimentare pentru %2$s." + +#. translators: %s: item name +#: admin/AdminPage/ConnectedServicesPage.php:455 +#, php-format +msgid "Your %s license key has been disabled. Please contact our support team if you believe this is an error or would like to continue accessing additional features." +msgstr "Cheia de licență %s a fost dezactivată. Vă rugăm să contactați echipa noastră de asistență dacă credeți că este o eroare sau doriți să continuați accesul la funcționalități suplimentare." + +#. translators: %1$s: item name, %2$s: license url, %3$s: item name +#: admin/AdminPage/ConnectedServicesPage.php:462 +#, php-format +msgid "The license key for %1$s appears to be invalid. Please check your license key to access additional accessibility features and services for %3$s." +msgstr "Cheia de licență pentru %1$s pare a fi invalidă. Vă rugăm să verificați cheia de licență pentru a accesa funcționalități și servicii suplimentare de accesibilitate pentru %3$s." + +#. translators: %s: item name +#: admin/AdminPage/ConnectedServicesPage.php:472 +#, php-format +msgid "This license key for %s is not active for this site. Please activate it to access additional features on this website." +msgstr "Această cheie de licență pentru %s nu este activă pentru acest site. Vă rugăm să o activați pentru a accesa funcționalități suplimentare pe acest website." + +#. translators: %s: the plugins item name +#: admin/AdminPage/ConnectedServicesPage.php:479 +#, php-format +msgid "This license key does not appear to be valid for %s. Please verify you've entered the correct license key." +msgstr "Această cheie de licență nu pare a fi validă pentru %s. Vă rugăm să verificați dacă ați introdus cheia de licență corectă." + +#. translators: %s: the plugins item name +#: admin/AdminPage/ConnectedServicesPage.php:486 +#, php-format +msgid "Your %s license key has reached its site activation limit. You can upgrade your license or deactivate it on another site to use the additional features here." +msgstr "Cheia dumneavoastră de licență %s a atins limita de activare a site-urilor. Puteți actualiza licența sau o puteți dezactiva pe un alt site pentru a utiliza funcționalitățile suplimentare aici." + +#. translators: %s: the plugins item name +#: admin/AdminPage/ConnectedServicesPage.php:493 +#, php-format +msgid "There was an issue validating your %s license key. Please try again or contact our support team if the problem persists." +msgstr "A apărut o problemă la validarea cheii de licență %s. Vă rugăm să încercați din nou sau să contactați echipa noastră de asistență dacă problema persistă." + +#: admin/AdminPage/FixesPage.php:75 #: admin/site-health/class-free.php:105 #: admin/site-health/class-pro.php:82 -#: includes/classes/class-admin-toolbar.php:102 +#: includes/classes/class-admin-toolbar.php:106 msgid "Fixes" msgstr "Remedieri" -#: admin/AdminPage/FixesPage.php:138 +#: admin/AdminPage/FixesPage.php:142 msgid "General Fixes" msgstr "Remedieri generale" -#: admin/AdminPage/FixesPage.php:212 +#: admin/AdminPage/FixesPage.php:220 msgid "These fixes help improve accessibility by modifying HTML elements and behaviors on your site." msgstr "Aceste remedieri ajută la îmbunătățirea accesibilității prin modificarea elementelor HTML și a comportamentelor de pe site-ul dvs." @@ -67,12 +374,13 @@ msgstr "Obțineți versiunea Pro pentru a debloca această funcție, se deschide #: admin/AdminPage/FixesSettingType/Checkbox.php:47 #: admin/AdminPage/FixesSettingType/Text.php:38 -#: admin/class-plugin-action-links.php:55 +#: admin/class-plugin-action-links.php:59 +#: build/admin.bundle.js:2 msgid "Get Pro" msgstr "Obțineți versiunea Pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:347 +#: admin/class-ajax.php:394 msgid "Opens in a new window." msgstr "Se deschide într-o fereastră nouă." @@ -164,569 +472,849 @@ msgstr "Doriți să faceți mai multe cu Accessibility Checker? %1$sDeblocați f msgid "Unlock Pro Features (opens in new window)" msgstr "Deblocați funcțiile Pro (se deschide într-o fereastră nouă)" -#: admin/class-admin-notices.php:129 +#: admin/class-admin-notices.php:139 msgid "🎉 Black Friday special! 🎉" msgstr "🎉 Ofertă specială de Black Friday! 🎉" -#: admin/class-admin-notices.php:130 -msgid "Upgrade to a paid version of Accessibility Checker from November 25th to December 3rd and get 30% off! Full site scanning, site-wide open issues report, ignore logs, and more." -msgstr "Faceți upgrade la o versiune plătită a Accessibility Checker între 25 noiembrie și 3 decembrie și obțineți 30% reducere! Scanare completă a site-ului, raport de probleme deschise la nivelul întregului site, jurnale de ignorare și multe altele." +#: admin/class-admin-notices.php:140 +msgid "Upgrade to a paid version of Accessibility Checker from November 24th to December 3rd and get 30% off! Full site scanning, site-wide open issues report, ignore logs, and more." +msgstr "Faceți upgrade la o versiune plătită de Accessibility Checker în perioada 24 noiembrie - 3 decembrie și beneficiați de o reducere de 30%! Scanare completă a site-ului, raport de probleme deschise la nivel de site, ignorare jurnale și multe altele." -#: admin/class-admin-notices.php:131 -#: admin/class-admin-notices.php:218 +#: admin/class-admin-notices.php:141 msgid "Ask a Pre-Sale Question" msgstr "Puneți o întrebare pre-vânzare" -#: admin/class-admin-notices.php:132 -#: admin/class-admin-notices.php:219 +#: admin/class-admin-notices.php:142 +#: admin/class-admin-notices.php:245 msgid "Upgrade Now" msgstr "Faceți upgrade acum" -#: admin/class-admin-notices.php:151 -#: admin/class-admin-notices.php:238 -#: admin/class-admin-notices.php:327 -#: admin/class-ajax.php:56 -#: admin/class-ajax.php:205 -#: admin/class-ajax.php:584 -#: admin/class-ajax.php:722 -#: admin/class-ajax.php:802 -#: admin/class-frontend-highlight.php:79 +#: admin/class-admin-notices.php:161 +#: admin/class-admin-notices.php:266 +#: admin/class-admin-notices.php:356 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:223 +#: admin/class-ajax.php:634 +#: admin/class-ajax.php:818 +#: admin/class-frontend-highlight.php:82 +#: admin/class-frontend-highlight.php:100 +#: admin/class-frontend-highlight.php:105 +#: admin/class-frontend-highlight.php:109 msgid "Permission Denied" msgstr "Permisiune refuzată" -#: admin/class-admin-notices.php:160 -#: admin/class-admin-notices.php:250 -#: admin/class-admin-notices.php:347 +#: admin/class-admin-notices.php:173 +#: admin/class-admin-notices.php:279 +#: admin/class-admin-notices.php:380 msgid "Update option wasn't successful" msgstr "Actualizarea opțiunii nu a reușit" -#: admin/class-admin-notices.php:216 -msgid "🎉 Get 25% off Accessibility Checker Pro in honor of Global Accessibility Awareness Day! 🎉" -msgstr "🎉 Obțineți 25% reducere la Accessibility Checker Pro cu ocazia Zilei Globale de Conștientizare a Accesibilității! 🎉" +#: admin/class-admin-notices.php:226 +msgid "⚡️ Global Accessibility Awareness Day Flash Sale" +msgstr "⚡️ Ofertă Flash de Ziua Globală de Conștientizare a Accesibilității" + +#. translators: 1: opening anchor tag for accessibility courses link, 2: closing anchor tag, 3: opening anchor tag for ArchiveWP link, 4: closing anchor tag +#: admin/class-admin-notices.php:232 +#, php-format +msgid "3 days only: Save 15%% on %1$saccessibility courses%2$s and Equalize Digital's %3$sArchiveWP plugin%4$s. Go further with accessibility." +msgstr "Doar 3 zile: Economisiți 15%% la %1$scursurile de accesibilitate%2$s și la %3$spluginul ArchiveWP%4$s de la Equalize Digital. Mergeți mai departe cu accesibilitatea." + +#: admin/class-admin-notices.php:238 +msgid "Limited-time offer • May 20–22 • Use coupon code " +msgstr "Ofertă limitată în timp • 20–22 mai • Folosiți codul cuponului " + +#: admin/class-admin-notices.php:239 +msgid "Grab the Deal Before It Ends" +msgstr "Profitați de ofertă înainte de a se termina" + +#: admin/class-admin-notices.php:242 +msgid "3 days only: Save 15% when you upgrade to Accessibility Checker Pro with coupon code" +msgstr "Doar 3 zile: Economisiți 15% când faceți upgrade la Accessibility Checker Pro cu codul cuponului" -#: admin/class-admin-notices.php:217 -msgid "Use coupon code GAAD25 from May 13th-May 21st to get access to full-site scanning and other pro features at a special discount. Not sure if upgrading is right for you?" -msgstr "Folosiți codul de cupon GAAD25 între 13 mai și 21 mai pentru a obține acces la scanarea completă a site-ului și alte funcții pro la un preț special. Nu sunteți sigur dacă upgrade-ul este potrivit pentru dvs.?" +#: admin/class-admin-notices.php:244 +msgid "Limited-time offer • May 20–22" +msgstr "Ofertă limitată în timp • 20–22 mai" -#: admin/class-admin-notices.php:302 +#: admin/class-admin-notices.php:331 msgid "Hello! Thank you for using Accessibility Checker as part of your accessibility toolkit. Since you've been using it for a while, would you please write a 5-star review of Accessibility Checker in the WordPress plugin directory? This will help increase our visibility so more people can learn about the importance of web accessibility. Thanks so much!" msgstr "Bună! Vă mulțumim că utilizați Accessibility Checker ca parte a setului de instrumente pentru accesibilitate. Deoarece îl folosiți de ceva timp, v-am ruga să scrieți o recenzie de 5 stele pentru Accessibility Checker în directorul de plugin-uri WordPress? Acest lucru ne va ajuta să creștem vizibilitatea, astfel încât mai mulți oameni să poată afla despre importanța accesibilității web. Mulțumim foarte mult!" -#: admin/class-admin-notices.php:305 +#: admin/class-admin-notices.php:334 msgid "Write A Review" msgstr "Scrieți o recenzie" -#: admin/class-admin-notices.php:306 +#: admin/class-admin-notices.php:335 msgid "Remind Me In Two Weeks" msgstr "Amintiți-mi peste două săptămâni" -#: admin/class-admin-notices.php:307 +#: admin/class-admin-notices.php:336 msgid "Never Ask Again" msgstr "Nu mă mai întreba niciodată" -#: admin/class-admin-notices.php:334 +#: admin/class-admin-notices.php:363 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:212 -#: admin/class-ajax.php:591 -#: admin/class-ajax.php:809 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:227 +#: admin/class-ajax.php:638 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:68 +#: admin/class-ajax.php:231 +#: admin/class-ajax.php:642 +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:87 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:90 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:93 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:95 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:126 +#. translators: %d: percentage of passed checks +#: admin/class-ajax.php:106 #, php-format -msgid "%s Error" -msgid_plural "%s Errors" -msgstr[0] "%s Eroare" -msgstr[1] "%s Erori" +msgid "%d%% Passed Checks" +msgstr "%d%% Verificări trecute" -#. translators: %s: Number of contrast errors -#: admin/class-ajax.php:132 -#, php-format -msgid "%s Contrast Error" -msgid_plural "%s Contrast Errors" -msgstr[0] "%s Eroare de contrast" -msgstr[1] "%s Erori de contrast" +#: admin/class-ajax.php:115 +#: admin/class-welcome-page.php:102 +#: admin/class-widgets.php:111 +#: build/sidebar.bundle.js:2 +msgid "Passed Checks" +msgstr "Verificări trecute" + +#: admin/class-ajax.php:125 +msgid "Passed Tests" +msgstr "Teste trecute" -#. translators: %s: Number of warnings #: admin/class-ajax.php:138 -#, php-format -msgid "%s Warning" -msgid_plural "%s Warnings" -msgstr[0] "%s Avertisment" -msgstr[1] "%s Avertismente" +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "Problem" +msgid_plural "Problems" +msgstr[0] "Problemă" +msgstr[1] "Probleme" +msgstr[2] "Probleme" -#. translators: %s: Number of ignored items #: admin/class-ajax.php:144 +msgid "Contrast Problem" +msgid_plural "Contrast Problems" +msgstr[0] "Problemă de contrast" +msgstr[1] "Probleme de contrast" +msgstr[2] "Probleme de contrast" + +#: admin/class-ajax.php:150 +#: admin/class-widgets.php:182 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "Needs Review" +msgid_plural "Needs Review" +msgstr[0] "Necesită revizuire" +msgstr[1] "Necesită revizuire" +msgstr[2] "Necesită revizuire" + +#: admin/class-ajax.php:156 +#: admin/class-ajax.php:385 +#: admin/class-welcome-page.php:197 +msgid "Dismissed Issue" +msgid_plural "Dismissed Issues" +msgstr[0] "Problemă ignorată" +msgstr[1] "Probleme ignorate" +msgstr[2] "Probleme ignorate" + +#: admin/class-ajax.php:176 +#: includes/wcag.php:1763 +#: build/sidebar.bundle.js:2 +msgid "Reading Level" +msgstr "Nivel de citire" + +#. translators: 1: opening anchor tag, 2: closing anchor tag with arrow icon and screen reader text +#: admin/class-ajax.php:187 #, php-format -msgid "%s Ignored Item" -msgid_plural "%s Ignored Items" -msgstr[0] "%s Element ignorat" -msgstr[1] "%s Elemente ignorate" +msgid "* True accessibility requires manual testing in addition to automated scans. %1$sLearn how to manually test for accessibility%2$s" +msgstr "* Accesibilitatea reală necesită testare manuală pe lângă scanările automate. %1$sAflați cum să testați manual accesibilitatea%2$s" -#: admin/class-ajax.php:182 +#: admin/class-ajax.php:198 +#: admin/class-ajax.php:790 +#: admin/class-ignore-ui.php:126 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid ", opens a new window" +msgstr ", se deschide o fereastră nouă" + +#: admin/class-ajax.php:203 msgid "No summary to return" msgstr "Niciun rezumat de returnat" -#: admin/class-ajax.php:226 +#: admin/class-ajax.php:242 +#: includes/classes/class-rest-api.php:905 msgid "Invalid table name" msgstr "Nume de tabel invalid" -#: admin/class-ajax.php:372 +#: admin/class-ajax.php:383 +msgid " total" +msgstr " total" + +#. translators: 1: rule title, 2: "Opens in a new window." +#: admin/class-ajax.php:392 +#, php-format +msgid "Read documentation for %1$s. %2$s" +msgstr "Citiți documentația pentru %1$s. %2$s" + +#. translators: %s: rule title +#: admin/class-ajax.php:400 +#, php-format +msgid "Expand issues for %s" +msgstr "Extindeți problemele pentru %s" + +#: admin/class-ajax.php:426 +#: build/issueModal.bundle.js:2 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:373 +#: admin/class-ajax.php:427 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:401 +#: admin/class-ajax.php:455 #: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 msgid "Save" msgstr "Salvează" -#: admin/class-ajax.php:423 +#: admin/class-ajax.php:477 +#: build/issueModal.bundle.js:2 msgid "Affected Code" msgstr "Cod afectat" +#: admin/class-ajax.php:480 +#: build/issueModal.bundle.js:2 +msgid "Image" +msgstr "Imagine" + +#: admin/class-ajax.php:483 +#: build/issueModal.bundle.js:2 +msgid "Landmark" +msgstr "Reper" + +#: admin/class-ajax.php:486 +msgid "Actions" +msgstr "Acțiuni" + +#: admin/class-ajax.php:495 +msgid "Dismissed" +msgstr "Ignorat" + +#: admin/class-ajax.php:495 +msgid "Dismiss" +msgstr "Ignoră" + +#. translators: %d: issue ID number +#: admin/class-ajax.php:506 +#, php-format +msgid "Issue ID %d" +msgstr "ID problemă %d" + +#. translators: %d: issue ID number +#: admin/class-ajax.php:524 +#, php-format +msgid "image for issue %d" +msgstr "imagine pentru problema %d" + #. Translators: %d is the issue ID. -#: admin/class-ajax.php:500 +#: admin/class-ajax.php:561 #, 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:501 +#: admin/class-ajax.php:562 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 msgid "View on page" msgstr "Vizualizați pe pagină" -#: admin/class-ajax.php:520 +#: admin/class-ajax.php:581 msgid "Fix: " msgstr "Corecție: " -#: admin/class-ajax.php:521 +#: admin/class-ajax.php:582 msgid "Fix" msgstr "Corectează" -#: admin/class-ajax.php:544 -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:562 +#: admin/class-ajax.php:615 msgid "No details to return" msgstr "Nu există detalii de returnat" -#: admin/class-ajax.php:701 +#. translators: %s: reading grade level value e.g. "8th Grade (Flesch-Kincaid)", displayed in a element. Do not translate the %s placeholder. +#: admin/class-ajax.php:687 +#, php-format +msgid "Post Reading Grade Level: %s" +msgstr "Nivel de lectură post: %s" + +#: admin/class-ajax.php:688 +#: admin/class-ajax.php:709 +#: admin/site-health/class-pro.php:75 +msgid "None" +msgstr "Niciuna" + +#: admin/class-ajax.php:691 +msgid "Your post has a reading level higher than 9th grade. Web Content Accessibility Guidelines (WCAG) at the AAA level require a simplified summary of your post that is 9th grade or below." +msgstr "Postarea dvs. are un nivel de lectură mai mare de clasa a 9-a. Ghidurile de accesibilitate a conținutului web (WCAG) la nivelul AAA necesită un rezumat simplificat al postării dvs. care să fie de clasa a 9-a sau mai jos." + +#: admin/class-ajax.php:693 +msgid "Your post does not contain enough content to calculate its reading level." +msgstr "Postarea dvs. nu conține suficient conținut pentru a-i calcula nivelul de lectură." + +#: admin/class-ajax.php:695 +msgid "A simplified summary is not necessary when content reading level is 9th grade or below. Choose when to prompt for a simplified summary on the settings page." +msgstr "Un rezumat simplificat nu este necesar atunci când nivelul de lectură al conținutului este de clasa a 9-a sau mai jos. Alegeți când să solicitați un rezumat simplificat pe pagina de setări." + +#. translators: %s: the simplified summary grade level value (wrapped in a tag) +#: admin/class-ajax.php:708 +#: admin/class-ajax.php:720 +#, php-format +msgid "Simplified Summary Reading Grade Level: %s" +msgstr "Nivel de citire al rezumatului simplificat: %s" + +#: admin/class-ajax.php:712 +#: build/sidebar.bundle.js:2 +msgid "Not enough content to determine an accurate reading level." +msgstr "Conținut insuficient pentru a determina un nivel de citire precis." + +#: admin/class-ajax.php:725 +msgid "Your simplified summary has a reading level above 9th grade." +msgstr "Rezumatul simplificat are un nivel de citire peste clasa a IX-a." + +#: admin/class-ajax.php:726 +msgid "Your simplified summary has a reading level at or below 9th grade." +msgstr "Rezumatul simplificat are un nivel de citire la sau sub clasa a IX-a." + +#: admin/class-ajax.php:737 +#: admin/class-ajax.php:767 +msgid "Simplified summary is not being automatically inserted into the content." +msgstr "Rezumatul simplificat nu este inserat automat în conținut." + +#. translators: %s: link to the settings page +#: admin/class-ajax.php:740 +#, php-format +msgid "Your Prompt for Simplified Summary is set to “never.” If you would like the simplified summary to be displayed automatically, you can change this on the %s." +msgstr "Solicitarea dvs. pentru rezumat simplificat este setată la „niciodată.” Dacă doriți ca rezumatul simplificat să fie afișat automat, puteți schimba acest lucru pe %s." + +#: admin/class-ajax.php:741 +#: admin/class-ajax.php:758 +#: admin/class-ajax.php:771 +msgid "settings page" +msgstr "pagina de setări" + +#. translators: %s: position phrase wrapped in a element (e.g. "before the content"). Do not translate the %s placeholder. +#: admin/class-ajax.php:752 +#, php-format +msgid "Simplified summary is being automatically inserted %s." +msgstr "Rezumatul simplificat este inserat automat %s." + +#: admin/class-ajax.php:753 +msgid "the content" +msgstr "conținutul" + +#. translators: %s: link to the settings page +#: admin/class-ajax.php:757 +#, php-format +msgid "Set where the Simplified Summary is inserted into the content on the %s." +msgstr "Setați unde este inserat rezumatul simplificat în conținut pe %s." + +#. translators: %s: link to the settings page +#: admin/class-ajax.php:770 +#, php-format +msgid "Your Simplified Summary location is set to “manually” which requires a function be added to your page template. If you would like the simplified summary to be displayed automatically, you can change this on the %s." +msgstr "Locația rezumatului simplificat este setată la „manual”, ceea ce necesită adăugarea unei funcții la șablonul paginii dvs. Dacă doriți ca rezumatul simplificat să fie afișat automat, puteți schimba acest lucru pe %s." + +#: admin/class-ajax.php:784 +#: includes/classes/class-simplified-summary.php:77 +#: includes/options-page.php:932 +#: includes/options-page.php:956 +#: build/sidebar.bundle.js:2 +msgid "Simplified Summary" +msgstr "Rezumat simplificat" + +#: admin/class-ajax.php:786 +#: build/sidebar.bundle.js:2 +msgid "Save Summary" +msgstr "Salvați rezumatul" + +#: admin/class-ajax.php:790 +msgid "Learn more about improving readability and simplified summary requirements" +msgstr "Aflați mai multe despre îmbunătățirea lizibilității și cerințele pentru rezumatul simplificat" + +#: admin/class-ajax.php:793 msgid "No readability data to return" msgstr "Nu există date de lizibilitate de returnat" -#: admin/class-ajax.php:758 -#: admin/class-ajax.php:781 +#: admin/class-ajax.php:853 +#: admin/class-ajax.php:874 msgid "No ignore data to return" msgstr "Nu există date de ignorare de returnat" -#: admin/class-ajax.php:816 -msgid "The summary was not set" -msgstr "Rezumatul nu a fost setat" +#: admin/class-enqueue-admin.php:435 +msgid "* Screen Reader Text" +msgstr "* Text pentru cititorul de ecran" -#: admin/class-frontend-highlight.php:84 +#: admin/class-frontend-highlight.php:86 msgid "The id value was not set" msgstr "Valoarea ID-ului nu a fost setată" -#: admin/class-frontend-highlight.php:92 +#: admin/class-frontend-highlight.php:93 +#: includes/classes/class-rest-api.php:1043 +msgid "Post not found" +msgstr "Postare negăsită" + +#: admin/class-frontend-highlight.php:115 msgid "Issue query returned no results" msgstr "Interogarea problemei nu a returnat niciun rezultat" -#: admin/class-frontend-highlight.php:138 +#: admin/class-frontend-highlight.php:168 msgid "Object query returned no results" msgstr "Interogarea obiectului nu a returnat niciun rezultat" -#: admin/class-plugin-action-links.php:48 -#: includes/classes/class-admin-toolbar.php:94 -#: includes/options-page.php:66 +#: admin/class-ignore-ui.php:31 +msgid "False positive" +msgstr "Fals pozitiv" + +#: admin/class-ignore-ui.php:32 +msgid "The scanner flagged this, but it does not apply to this content." +msgstr "Scanerul a semnalat acest lucru, dar nu se aplică acestui conținut." + +#: admin/class-ignore-ui.php:35 +msgid "Remediated" +msgstr "Remediat" + +#: admin/class-ignore-ui.php:36 +msgid "The issue has been fixed, but the page has not been rescanned yet." +msgstr "Problema a fost rezolvată, dar pagina nu a fost scanată din nou." + +#: admin/class-ignore-ui.php:39 +msgid "Confirmed accessible" +msgstr "Accesibil confirmat" + +#: admin/class-ignore-ui.php:40 +msgid "Reviewed and verified to meet accessibility requirements." +msgstr "Revizuit și verificat pentru a îndeplini cerințele de accesibilitate." + +#: admin/class-ignore-ui.php:82 +msgid "Username:" +msgstr "Nume de utilizator:" + +#: admin/class-ignore-ui.php:92 +msgid "Date:" +msgstr "Data:" + +#: admin/class-ignore-ui.php:97 +#: build/issueModal.bundle.js:2 +msgid "Reopen Issue" +msgstr "Redeschideți problema" + +#: admin/class-ignore-ui.php:98 +#: build/issueModal.bundle.js:2 +msgid "Dismiss Issue" +msgstr "Ignorați problema" + +#: admin/class-ignore-ui.php:119 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:142 +msgid "Comment" +msgstr "Comentariu" + +#: admin/class-ignore-ui.php:126 +msgid "Manage Globally Dismissed" +msgstr "Gestionați ignorările globale" + +#: admin/class-ignore-ui.php:134 +msgid "Your user account doesn't have permission to dismiss this issue." +msgstr "Contul dvs. de utilizator nu are permisiunea de a ignora această problemă." + +#: admin/class-ignore-ui.php:156 +#: build/issueModal.bundle.js:2 +msgid "Dismiss issue as:" +msgstr "Ignorați problema ca:" + +#: admin/class-plugin-action-links.php:52 +#: includes/classes/class-admin-toolbar.php:98 +#: includes/options-page.php:72 msgid "Settings" msgstr "Setări" -#: admin/class-plugin-action-links.php:60 +#: admin/class-plugin-action-links.php:64 msgid "Get Accessibility Checker Pro, opens in new window" msgstr "Obține Accessibility Checker Pro, se deschide într-o fereastră nouă" -#: admin/class-plugin-row-meta.php:53 +#: admin/class-plugin-row-meta.php:57 msgid "View Accessibility Checker Documentation (opens in new window)" msgstr "Vizualizează documentația Accessibility Checker (se deschide într-o fereastră nouă)" -#: admin/class-plugin-row-meta.php:54 -#: admin/class-widgets.php:309 +#: admin/class-plugin-row-meta.php:58 +#: admin/class-widgets.php:318 msgid "Documentation" msgstr "Documentație" -#: admin/class-plugin-row-meta.php:59 +#: admin/class-plugin-row-meta.php:63 msgid "Get support for Accessibility Checker (opens in new window)" msgstr "Obține suport pentru Accessibility Checker (se deschide într-o fereastră nouă)" -#: admin/class-plugin-row-meta.php:60 +#: admin/class-plugin-row-meta.php:64 msgid "Support" msgstr "Suport" -#: admin/class-plugin-row-meta.php:65 +#: admin/class-plugin-row-meta.php:69 msgid "Rate Accessibility Checker plugin (opens in new window)" msgstr "Evaluează plugin-ul Accessibility Checker (se deschide într-o fereastră nouă)" -#: admin/class-plugin-row-meta.php:66 +#: admin/class-plugin-row-meta.php:70 msgid "Rate plugin" msgstr "Evaluați plugin-ul" -#: admin/class-upgrade-promotion.php:58 -msgid "Upgrade to Pro" -msgstr "Treci la versiunea pro" - -#: admin/class-upgrade-promotion.php:60 +#: admin/class-upgrade-promotion.php:64 msgid "Upgrade Sale Now" msgstr "Upgrade în ofertă acum" -#: admin/class-upgrade-promotion.php:82 +#: admin/class-upgrade-promotion.php:86 msgid "Unable to redirect to upgrade page." msgstr "Nu s-a putut redirecționa către pagina de upgrade." -#: admin/class-welcome-page.php:38 +#: admin/class-welcome-page.php:68 msgid "Most Recent Test Summary" msgstr "Rezumatul celui mai recent test" -#: admin/class-welcome-page.php:44 +#: admin/class-welcome-page.php:75 msgid "Update Counts" msgstr "Actualizează numărătoarea" -#: admin/class-welcome-page.php:48 +#: admin/class-welcome-page.php:80 msgid "Start New Scan" msgstr "Începe o nouă scanare" -#: admin/class-welcome-page.php:52 +#: admin/class-welcome-page.php:84 msgid "View All Open Issues" msgstr "Vizualizați toate problemele deschise" -#: admin/class-welcome-page.php:57 +#: admin/class-welcome-page.php:89 msgid "See History" msgstr "Vezi istoricul" -#: admin/class-welcome-page.php:70 -#: admin/class-widgets.php:98 -msgid "Passed Tests" -msgstr "Teste trecute" +#: admin/class-welcome-page.php:119 +msgid "Unique Problem" +msgid_plural "Unique Problems" +msgstr[0] "Problemă unică" +msgstr[1] "Probleme unice" +msgstr[2] "Probleme unice" + +#: admin/class-welcome-page.php:145 +msgid "Unique Contrast Problem" +msgid_plural "Unique Contrast Problems" +msgstr[0] "Problemă unică de contrast" +msgstr[1] "Probleme unice de contrast" +msgstr[2] "Probleme unice de contrast" + +#: admin/class-welcome-page.php:171 +msgid "Unique Item Needing Review" +msgid_plural "Unique Items Needing Review" +msgstr[0] "Element unic care necesită revizuire" +msgstr[1] "Elemente unice care necesită revizuire" +msgstr[2] "Elemente unice care necesită revizuire" -#: admin/class-welcome-page.php:86 -msgid "Unique Error" -msgid_plural "Unique Errors" -msgstr[0] "Eroare unică" -msgstr[1] "Erori unice" - -#: admin/class-welcome-page.php:111 -msgid "Unique Color Contrast Error" -msgid_plural "Unique Color Contrast Errors" -msgstr[0] "Eroare unică de contrast al culorilor" -msgstr[1] "Erori unice de contrast al culorilor" - -#: admin/class-welcome-page.php:136 -msgid "Unique Warning" -msgid_plural "Unique Warnings" -msgstr[0] "Avertisment unic" -msgstr[1] "Avertismente unice" - -#: admin/class-welcome-page.php:161 -msgid "Ignored Item" -msgid_plural "Ignored Items" -msgstr[0] "Element ignorat" -msgstr[1] "Elemente ignorate" - -#: admin/class-welcome-page.php:178 +#: admin/class-welcome-page.php:214 msgid "Average Issues Per Page" msgstr "Media problemelor per pagină" -#: admin/class-welcome-page.php:191 +#: admin/class-welcome-page.php:227 msgid "Average Issue Density" msgstr "Densitatea medie a problemelor" -#: admin/class-welcome-page.php:204 -#: admin/class-widgets.php:105 +#: admin/class-welcome-page.php:240 msgid "Report Last Updated:" msgstr "Raport actualizat ultima dată:" -#: admin/class-welcome-page.php:214 -#: includes/options-page.php:408 +#: admin/class-welcome-page.php:250 +#: includes/options-page.php:619 msgid "Never" msgstr "Niciodată" -#: admin/class-welcome-page.php:228 +#: admin/class-welcome-page.php:264 +#: admin/class-widgets.php:97 msgid "URLs Scanned" msgstr "URL-uri scanate" #. translators: %1$s is the number of post types with issues, %2$s is the number of public post types. -#: admin/class-welcome-page.php:239 +#: admin/class-welcome-page.php:275 #, php-format msgid "%1$s of %2$s" msgstr "%1$s din %2$s" -#: admin/class-welcome-page.php:248 +#: admin/class-welcome-page.php:284 msgid "Post Types Checked" msgstr "Tipuri de postări verificate" -#: admin/class-welcome-page.php:261 +#: admin/class-welcome-page.php:297 msgid "URLs with 100% score" msgstr "URL-uri cu scor 100%" -#: admin/class-welcome-page.php:269 +#: admin/class-welcome-page.php:305 msgid "This summary is automatically updated every 24 hours, or any time a full site scan is completed. You can also manually update these results by clicking the Update Counts button." msgstr "Acest rezumat este actualizat automat la fiecare 24 de ore sau ori de câte ori se finalizează o scanare completă a site-ului. De asemenea, puteți actualiza manual aceste rezultate făcând clic pe butonul Actualizează numărătoarea." -#: admin/class-welcome-page.php:275 +#: admin/class-welcome-page.php:311 msgid "Your site has a large number of issues. For performance reasons, not all issues have been included in this summary." msgstr "Site-ul dvs. Are un număr mare de probleme. Din motive de performanță, nu toate problemele au fost incluse în acest rezumat." -#: admin/class-welcome-page.php:285 +#: admin/class-welcome-page.php:321 msgid "Site-Wide Accessibility Reports" msgstr "Rapoarte de accesibilitate pentru întregul site" -#: admin/class-welcome-page.php:290 +#: admin/class-welcome-page.php:326 msgid "Hide banner" msgstr "Ascunde bannerul" -#: admin/class-welcome-page.php:299 +#: admin/class-welcome-page.php:335 msgid "Unlock Detailed Accessibility Reports" msgstr "Deblochează rapoarte detaliate de accesibilitate" -#: admin/class-welcome-page.php:302 -#: admin/class-widgets.php:71 +#: admin/class-welcome-page.php:338 +#: admin/class-widgets.php:75 msgid "Start scanning your entire website for accessibility issues, get full-site reports, and become compliant with accessibility guidelines faster." msgstr "Începeți să scanați întregul dvs. site web pentru probleme de accesibilitate, obțineți rapoarte complete pentru site și deveniți conformi cu ghidurile de accesibilitate mai rapid." -#: admin/class-welcome-page.php:306 -#: admin/class-widgets.php:73 +#: admin/class-welcome-page.php:342 +#: admin/class-widgets.php:77 msgid "Upgrade Accessibility Checker" msgstr "Faceți upgrade la Accessibility Checker" -#: admin/class-widgets.php:69 +#: admin/class-widgets.php:73 msgid "close ad" msgstr "închide reclama" -#: admin/class-widgets.php:70 +#: admin/class-widgets.php:74 msgid "Get Detailed Accessibility Reports" msgstr "Obțineți rapoarte detaliate de accesibilitate" -#: admin/class-widgets.php:88 +#: admin/class-widgets.php:92 msgid "Full Site Accessibility Status" msgstr "Starea de accesibilitate a întregului site" -#: admin/class-widgets.php:113 -msgid "URLs Scanned:" -msgstr "URL-uri scanate:" +#: admin/class-widgets.php:99 +msgid "Updated" +msgstr "Actualizat" #: admin/class-widgets.php:121 -msgid "Errors:" -msgstr "Erori:" +msgid "Problems:" +msgstr "Probleme:" -#: admin/class-widgets.php:125 -msgid "Color Contrast Errors:" -msgstr "Erori de contrast al culorilor:" +#: admin/class-widgets.php:127 +msgid "Contrast Problems:" +msgstr "Probleme de contrast:" -#: admin/class-widgets.php:129 -msgid "Warnings:" -msgstr "Avertismente:" +#: admin/class-widgets.php:133 +msgid "Needs Review:" +msgstr "Necesită revizuire:" -#: admin/class-widgets.php:144 +#: admin/class-widgets.php:148 msgid "Your site has accessibility issues that should be addressed as soon as possible to ensure compliance with accessibility guidelines." msgstr "Site-ul dvs. are probleme de accesibilitate care ar trebui abordate cât mai curând posibil pentru a asigura conformitatea cu ghidurile de accesibilitate." -#: admin/class-widgets.php:147 +#: admin/class-widgets.php:151 msgid "Way to go! Accessibility Checker cannot find any accessibility problems in the content it tested. Some problems cannot be found by automated tools so don't forget to" msgstr "Bravo! Accessibility Checker nu poate găsi nicio problemă de accesibilitate în conținutul pe care l-a testat. Unele probleme nu pot fi detectate de instrumentele automate, așa că nu uitați să" -#: admin/class-widgets.php:147 +#: admin/class-widgets.php:151 msgid "manually test your site" msgstr "testați manual site-ul dvs" -#: admin/class-widgets.php:162 +#: admin/class-widgets.php:166 msgid "Issues By Post Type" msgstr "Probleme pe tip de postare" -#: admin/class-widgets.php:169 +#: admin/class-widgets.php:173 msgid "Post Type" msgstr "Tip de postare" -#: admin/class-widgets.php:172 -msgid "Errors" -msgstr "Erori" +#: admin/class-widgets.php:176 +#: build/sidebar.bundle.js:2 +msgid "Problems" +msgstr "Probleme" -#: admin/class-widgets.php:175 +#: admin/class-widgets.php:179 msgid "Contrast" msgstr "Contrast" -#: admin/class-widgets.php:178 -msgid "Warnings" -msgstr "Avertismente" +#: admin/class-widgets.php:251 +msgid "Upgrade to Scan (opens in a new window)" +msgstr "Actualizați la Scanare (se deschide într-o fereastră nouă)" -#: admin/class-widgets.php:247 +#: admin/class-widgets.php:252 msgid "Upgrade to Scan" msgstr "Actualizați pentru a scana" -#: admin/class-widgets.php:276 +#: admin/class-widgets.php:282 msgid "See More Reports" msgstr "Vezi mai multe rapoarte" -#: admin/class-widgets.php:286 -#: partials/welcome-page.php:235 +#: admin/class-widgets.php:294 +#: partials/welcome-page.php:243 msgid "Learn Accessibility" msgstr "Învață despre accesibilitate" -#: admin/class-widgets.php:307 +#: admin/class-widgets.php:316 msgid "Additional Resources" msgstr "Resurse suplimentare" -#: admin/class-widgets.php:308 +#: admin/class-widgets.php:317 msgid "Blog (opens in a new window)" msgstr "Blog (se deschide într-o fereastră nouă)" -#: admin/class-widgets.php:308 +#: admin/class-widgets.php:317 msgid "Blog" msgstr "Blog" -#: admin/class-widgets.php:309 +#: admin/class-widgets.php:318 msgid "Documentation (opens in a new window)" msgstr "Documentație (se deschide într-o fereastră nouă)" -#: admin/opt-in/class-email-opt-in.php:115 +#: admin/opt-in/class-email-opt-in.php:119 msgid "Accessibility Events & News in Your Inbox" msgstr "Evenimente și știri de accesibilitate în căsuța dvs. de e-mail" -#: admin/opt-in/class-email-opt-in.php:121 +#: admin/opt-in/class-email-opt-in.php:125 msgid "Subscribe to Equalize Digital's email list to get access to free accessibility webinars and training resources." msgstr "Abonează-te la lista de email a Equalize Digital pentru a obține acces la webinarii gratuite despre accesibilitate și resurse de instruire." -#: admin/opt-in/class-email-opt-in.php:127 +#: admin/opt-in/class-email-opt-in.php:131 msgid "Email*" msgstr "E-mail*" -#: admin/opt-in/class-email-opt-in.php:131 +#: admin/opt-in/class-email-opt-in.php:135 msgid "Type your email" msgstr "Introduceți adresa de e-mail" -#: admin/opt-in/class-email-opt-in.php:139 +#: admin/opt-in/class-email-opt-in.php:143 msgid "First Name" msgstr "Prenume" -#: admin/opt-in/class-email-opt-in.php:143 +#: admin/opt-in/class-email-opt-in.php:147 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:157 +#, 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" -#: admin/site-health/class-checks.php:44 +#: admin/site-health/class-checks.php:48 msgid "Accessibility issues" msgstr "Probleme de accesibilitate" -#: admin/site-health/class-checks.php:49 +#: admin/site-health/class-checks.php:53 msgid "Content checked for accessibility" msgstr "Conținut verificat pentru accesibilitate" -#: admin/site-health/class-checks.php:54 +#: admin/site-health/class-checks.php:58 msgid "Post types configured for accessibility checks" msgstr "Tipuri de postări configurate pentru verificări de accesibilitate" -#: admin/site-health/class-checks.php:69 +#: admin/site-health/class-checks.php:73 msgid "Accessibility" msgstr "Accesibilitate" -#: admin/site-health/class-checks.php:96 +#: admin/site-health/class-checks.php:100 msgid "View Issues" msgstr "Vezi problemele" -#: admin/site-health/class-checks.php:103 +#: admin/site-health/class-checks.php:107 msgid "View Accessibility Checker" msgstr "Vezi Accessibility Checker" -#: admin/site-health/class-checks.php:122 +#: admin/site-health/class-checks.php:126 msgid "Accessibility issues detected" msgstr "Probleme de accesibilitate detectate" #. translators: 1: error count, 2: warning count. -#: admin/site-health/class-checks.php:125 +#: admin/site-health/class-checks.php:129 #, php-format msgid "Accessibility Checker has detected %1$s errors and %2$s warnings." msgstr "Accessibility Checker a detectat %1$s erori și %2$s avertismente." -#: admin/site-health/class-checks.php:141 +#: admin/site-health/class-checks.php:145 msgid "No accessibility issues detected" msgstr "Nu s-au detectat probleme de accesibilitate" -#: admin/site-health/class-checks.php:142 +#: admin/site-health/class-checks.php:146 msgid "Accessibility Checker has not found any issues in scanned content." msgstr "Accessibility Checker nu a găsit nicio problemă în conținutul scanat." -#: admin/site-health/class-checks.php:160 +#: admin/site-health/class-checks.php:164 msgid "Content has not been checked" msgstr "Conținutul nu a fost verificat" -#: admin/site-health/class-checks.php:161 +#: admin/site-health/class-checks.php:165 msgid "No posts have been scanned yet. Run a full site scan to begin checking your content for accessibility issues." msgstr "Nicio postare nu a fost scanată încă. Rulează o scanare completă a site-ului pentru a începe verificarea conținutului pentru probleme de accesibilitate." -#: admin/site-health/class-checks.php:165 +#: admin/site-health/class-checks.php:169 msgid "Start full site scan" msgstr "Începe scanarea completă a site-ului" -#: admin/site-health/class-checks.php:174 +#: admin/site-health/class-checks.php:178 msgid "Content is being checked for accessibility" msgstr "Conținutul este verificat pentru accesibilitate" #. translators: %s is the number of posts scanned. -#: admin/site-health/class-checks.php:177 +#: admin/site-health/class-checks.php:181 #, php-format msgid "Accessibility Checker has scanned %s post for accessibility issues." msgid_plural "Accessibility Checker has scanned %s posts for accessibility issues." msgstr[0] "Accessibility Checker a scanat %s postare pentru probleme de accesibilitate." -msgstr[1] "Accessibility Checker a scanat %s postări pentru probleme de accesibilitate." +msgstr[1] "Accessibility Checker has scanned %s posts for accessibility issues." +msgstr[2] "Accessibility Checker a scanat %s postări pentru probleme de accesibilitate." -#: admin/site-health/class-checks.php:196 +#: admin/site-health/class-checks.php:200 msgid "No post types selected for accessibility checking" msgstr "Niciun tip de postare selectat pentru verificarea accesibilității" -#: admin/site-health/class-checks.php:197 +#: admin/site-health/class-checks.php:201 msgid "Accessibility Checker cannot scan any content because no post types have been selected. Without configured post types, no accessibility issues will be detected." msgstr "Accessibility Checker nu poate scana niciun conținut deoarece nu a fost selectat niciun tip de postare. Fără tipuri de postări configurate, nu vor fi detectate probleme de accesibilitate." -#: admin/site-health/class-checks.php:201 +#: admin/site-health/class-checks.php:205 msgid "Configure post types" msgstr "Configurează tipurile de postări" -#: admin/site-health/class-checks.php:213 +#: admin/site-health/class-checks.php:217 msgid "Post types are configured for accessibility checking" msgstr "Tipurile de postări sunt configurate pentru verificarea accesibilității" #. translators: 1: number of post types, 2: comma-separated list of post type names. -#: admin/site-health/class-checks.php:216 +#: admin/site-health/class-checks.php:220 #, php-format msgid "Accessibility Checker is configured to scan %1$s post type: %2$s." msgid_plural "Accessibility Checker is configured to scan %1$s post types: %2$s." msgstr[0] "Accessibility Checker este configurat să scaneze %1$s tip de postare: %2$s." msgstr[1] "Accessibility Checker este configurat să scaneze %1$s tipuri de postări: %2$s." +msgstr[2] "Accessibility Checker este configurat să scaneze %1$s tipuri de postări: %2$s." #: admin/site-health/class-free.php:46 msgid "Accessibility Checker — Free" @@ -774,7 +1362,7 @@ msgid "Disabled" msgstr "Dezactivat" #: admin/site-health/class-free.php:69 -#: includes/options-page.php:137 +#: includes/options-page.php:203 msgid "Delete Data" msgstr "Șterge datele" @@ -831,405 +1419,442 @@ msgid "Simplified Sum Heading" msgstr "Titlu rezumat simplificat" #: admin/site-health/class-pro.php:74 +#: includes/options-page.php:194 msgid "Ignore Permissions" msgstr "Permisiuni de ignorare" -#: admin/site-health/class-pro.php:75 -msgid "None" -msgstr "Niciuna" - #: admin/site-health/class-pro.php:78 msgid "Ignores DB Table Count" msgstr "Număr de tabele de ignorare în BD" #. translators: %1$s is the site name, %2$s is a link with the plugin name. -#: includes/classes/class-accessibility-statement.php:45 +#: includes/classes/class-accessibility-statement.php:49 #, php-format msgid "%1$s uses %2$s to monitor our website's accessibility." msgstr "%1$s folosește %2$s pentru a monitoriza accesibilitatea site-ului nostru web." -#: includes/classes/class-accessibility-statement.php:50 +#: includes/classes/class-accessibility-statement.php:54 msgid "Accessibility Checker (opens in a new window)" msgstr "Accessibility Checker (se deschide într-o fereastră nouă)" #. translators: %1$s is a link to the accessibility policy page, with text "Accessibility Policy". -#: includes/classes/class-accessibility-statement.php:59 +#: includes/classes/class-accessibility-statement.php:63 #, php-format msgid "Read our %s" msgstr "Citește %s" -#: includes/classes/class-accessibility-statement.php:60 +#: includes/classes/class-accessibility-statement.php:64 msgid "Accessibility Policy" msgstr "Politica de accesibilitate" -#: includes/classes/class-admin-toolbar.php:115 -#: partials/pro-callout.php:47 -#: partials/welcome-page.php:215 +#: includes/classes/class-admin-toolbar.php:119 +#: partials/pro-callout.php:51 +#: partials/welcome-page.php:219 msgid "Get Accessibility Checker Pro" msgstr "Obține Accessibility Checker Pro" -#: includes/classes/class-admin-toolbar.php:120 +#: includes/classes/class-admin-toolbar.php:124 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-simplified-summary.php:73 -msgid "Simplified Summary" -msgstr "Rezumat simplificat" +#: includes/classes/class-rest-api.php:1230 +msgid "Issue not found." +msgstr "Problema nu a fost găsită." -#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:34 +#: includes/classes/class-rest-api.php:1273 +msgid "Failed to update the issue." +msgstr "Nu s-a putut actualiza problema." + +#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:45 msgid "Add Size & Type To File Links" msgstr "Adaugă dimensiunea și tipul la link-urile fișierelor" -#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:43 +#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:54 msgid "Add Context to Linked Files" msgstr "Adaugă context la fișierele linkuite" -#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:76 +#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:87 msgid "Add File Size & Type To Links" msgstr "Adaugă dimensiunea și tipul fișierului la link-uri" -#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:78 +#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:89 msgid "Add the file size and type to linked files that may trigger a download." msgstr "Adaugă dimensiunea și tipul fișierului la link-urile către fișiere care pot declanșa o descărcare." -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:34 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:45 msgid "Add Labels to Unlabelled Form Fields" msgstr "Adaugă etichete la câmpurile de formular neetichetate" -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:43 -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:66 -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:89 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:54 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:77 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:100 msgid "Label Form Fields" msgstr "Etichetează câmpurile formularului" -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:92 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:103 msgid "Add labels to unlabelled form fields if field purpose can be determined." msgstr "Adaugă etichete la câmpurile de formular neetichetate dacă scopul câmpului poate fi determinat." #. translators: %1$s: a CSS class name wrapped in a tag. -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:123 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:134 #, php-format msgid "Attempt to add labels to form fields that are missing them. Note: You may need to add custom styles targeting the %1$s class if adding labels affects your form layouts." msgstr "Încearcă să adaugi etichete la câmpurile de formular care nu au. Notă: Este posibil să fie nevoie să adaugi stiluri personalizate care vizează clasa %1$s dacă adăugarea de etichete afectează aspectul formularelor tale." -#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:34 +#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:45 msgid "Add Missing or Empty Page Titles" msgstr "Adaugă titluri de pagină lipsă sau goale" -#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:43 +#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:54 msgid "Set Page HTML Titles" msgstr "Setează titlurile HTML ale paginilor" -#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:77 +#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:88 msgid "Add Missing Page Title" msgstr "Adaugă titlu de pagină lipsă" #. translators: %1$s: a code tag with a title tag. -#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:80 +#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:91 #, php-format msgid "Add a %1$s tag to the page if it's missing or empty." msgstr "Adaugă un tag %1$s la pagină dacă acesta lipsește sau este gol." -#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:34 +#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:38 msgid "Add warning when link opens new tab/window" msgstr "Adaugă avertisment când link-ul deschide o filă/fereastră nouă" -#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:68 +#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:72 msgid "Add Label To Links That Open A New Tab/Window" msgstr "Adaugă etichetă la link-urile care deschid o filă/fereastră nouă" #. translators: %1%s: A tag containing target="_blank". -#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:73 +#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:77 #, php-format msgid "Add a label and icon to links with %1$s informing users they will open a new tab/window. %2$sNote: This setting will have no effect if the \"Block Links Opening New Windows\" fix is enabled.%3$s" msgstr "Adaugă o etichetă și o pictogramă la link-urile cu %1$s informând utilizatorii că vor deschide o filă/fereastră nouă. %2$sNotă: Această setare nu va avea niciun efect dacă remedierea „Blochează link-urile care deschid ferestre noi” este activată.%3$s" -#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:36 -#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:68 +#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:117 +#: build/pageScanner.bundle.js:2 +msgid "opens a new window" +msgstr "deschide o fereastră nouă" + +#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:47 +#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:79 msgid "Block PDF Uploads" msgstr "Blochează încărcările de PDF-uri" #. translators: %1$s: a code tag with the capability name. -#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:72 +#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:83 #, php-format msgid "Restrict PDF uploads for users without the %1$s capability (allowed for admins by default)." msgstr "Restricționează încărcările de PDF-uri pentru utilizatorii fără capacitatea %1$s (permisă implicit pentru administratori)." -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:34 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:38 msgid "Add Labels to Comment and Search Forms" msgstr "Adaugă etichete la formularele de comentarii și căutare" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:43 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:47 msgid "Label Comment/Search Fields" msgstr "Etichetează câmpurile de comentarii/căutare" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:66 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:70 msgid "Comment and Search Form Labels" msgstr "Etichete pentru formularele de comentarii și căutare" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:67 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:71 msgid "Add missing labels to WordPress comment and search forms." msgstr "Adaugă etichete lipsă la formularele WordPress de comentarii și căutare." -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:90 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:94 msgid "Label Comment Form" msgstr "Etichetează formularul de comentarii" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:93 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:97 msgid "Add missing labels to the WordPress comment form." msgstr "Adaugă etichete lipsă la formularul WordPress de comentarii." -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:101 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:105 msgid "Label Search Form" msgstr "Etichetează formularul de căutare" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:104 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:108 msgid "Add a missing label to the WordPress search form." msgstr "Adaugă o etichetă lipsă la formularul WordPress de căutare." -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:138 -msgid "Comment" -msgstr "Comentariu" - -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:143 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:147 msgid "Name" msgstr "Nume" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:148 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:152 msgid "Email" msgstr "E-mail" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:153 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:157 msgid "Website" msgstr "Site web" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:177 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:181 msgid "Search …" msgstr "Căutare …" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:182 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:186 msgid "Search for:" msgstr "Căutare pentru:" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:184 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:188 msgid "Search" msgstr "Caută" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:198 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:202 msgid "Settings to add missing labels to WordPress comment and search forms." msgstr "Setări pentru adăugarea etichetelor lipsă în formularele de comentarii și căutare WordPress." -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:33 +#: includes/classes/Fixes/Fix/EmptySearchFix.php:42 +#: includes/classes/Fixes/Fix/EmptySearchFix.php:88 +msgid "Force Error on Empty Search" +msgstr "Forțează eroare la căutare goală" + +#: includes/classes/Fixes/Fix/EmptySearchFix.php:65 +msgid "Empty Search Handling" +msgstr "Gestionarea căutărilor goale" + +#: includes/classes/Fixes/Fix/EmptySearchFix.php:91 +msgid "When a search is submitted with an empty query, force WordPress to display the search results template so users see a meaningful response. This assumes the active theme has a search.php template." +msgstr "Când o căutare este trimisă cu o interogare goală, forțează WordPress să afișeze șablonul de rezultate ale căutării, astfel încât utilizatorii să vadă un răspuns semnificativ. Aceasta presupune că tema activă are un șablon search.php." + +#: includes/classes/Fixes/Fix/EmptySearchFix.php:107 +msgid "Force WordPress to show a search results page when a search is submitted with an empty query." +msgstr "Forțează WordPress să afișeze o pagină cu rezultatele căutării atunci când o căutare este trimisă cu o interogare goală." + +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:37 msgid "Add Focus Outlines" msgstr "Adaugă contururi de focalizare" -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:56 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:60 msgid "Focus Outline" msgstr "Contur de focalizare" -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:57 -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:83 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:61 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:87 msgid "Add an outline to elements when they receive keyboard focus." msgstr "Adaugă un contur elementelor când primesc focalizare de la tastatură." -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:81 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:85 msgid "Add Focus Outline" msgstr "Adaugă contur de focalizare" -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:112 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:116 msgid "Settings related to enhancing focus outlines for better keyboard accessibility." msgstr "Setări legate de îmbunătățirea contururilor de focalizare pentru o mai bună accesibilitate de la tastatură." -#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:33 +#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:37 msgid "Add lang & dir Attributes" msgstr "Adaugă atribute lang și dir" -#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:42 +#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:46 msgid "Set Page Language" msgstr "Setează limba paginii" -#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:76 +#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:80 msgid "Add \"lang\" & \"dir\" Attributes" msgstr "Adaugă atributele „lang” și „dir”" #. translators: %1$s: a attribute name wrapped in a tag. %2$s: dir attribute %3$s: html element. -#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:79 +#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:83 #, php-format msgid "Add the site language (%1$s) and text direction (%2$s) attributes to the %3$s element." msgstr "Adaugă atributele pentru limba site-ului (%1$s) și direcția textului (%2$s) elementului %3$s." -#: includes/classes/Fixes/Fix/LinkUnderline.php:33 +#: includes/classes/Fixes/Fix/LinkUnderline.php:37 msgid "Add Underlines to all non-nav Links" msgstr "Adaugă sublinieri tuturor linkurilor care nu sunt de navigare" -#: includes/classes/Fixes/Fix/LinkUnderline.php:42 +#: includes/classes/Fixes/Fix/LinkUnderline.php:46 msgid "Underline Links" msgstr "Subliniază linkurile" -#: includes/classes/Fixes/Fix/LinkUnderline.php:76 +#: includes/classes/Fixes/Fix/LinkUnderline.php:80 msgid "Force Link Underline" msgstr "Forțează sublinierea linkurilor" -#: includes/classes/Fixes/Fix/LinkUnderline.php:78 +#: includes/classes/Fixes/Fix/LinkUnderline.php:82 msgid "Ensure that non-navigation links are underlined." msgstr "Asigură-te că linkurile care nu sunt de navigare sunt subliniate." -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:34 +#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:38 msgid "Make Meta Viewport Tag Scalable" msgstr "Fă etichetă meta viewport scalabilă" -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:57 -msgid "Ensure scalable viewport" -msgstr "Asigură viewport scalabil" - -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:58 -msgid "Make sure that the viewport tag on the page allows scaling." -msgstr "Asigură-te că eticheta viewport de pe pagină permite scalarea." - -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:81 +#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:71 msgid "Make Viewport Scalable" msgstr "Fă viewport-ul scalabil" -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:84 +#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:74 msgid "Ensure the viewport tag allows for scaling, enhancing accessibility on mobile devices." msgstr "Asigură-te că eticheta viewport permite scalarea, îmbunătățind accesibilitatea pe dispozitivele mobile." -#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:34 +#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:38 msgid "Prevent Links Opening New Windows" msgstr "Previne deschiderea linkurilor în ferestre noi" -#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:68 +#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:72 msgid "Block Links Opening New Windows" msgstr "Blochează deschiderea linkurilor în ferestre noi" #. translators: %1%s: A tag containing target="_blank". -#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:73 +#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:77 #, php-format msgid "Prevent links from opening in a new window or tab by removing %1$s." msgstr "Previne deschiderea linkurilor într-o fereastră sau filă nouă prin eliminarea %1$s." -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:34 -msgid "Add \"Read\" Link with Post Title" -msgstr "Adaugă link „Citește” cu titlul postării" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:43 -msgid "Add Title to Read More Link" -msgstr "Adaugă titlu la linkul citește mai mult" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:66 -msgid "Read More links" -msgstr "Linkuri Citește Mai Mult" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:67 -msgid "Add the post title and links " -msgstr "Adaugă titlul postării și linkurile " - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:91 -msgid "Add Post Title To \"Read More\"" -msgstr "Adaugă titlul postării la „Citește mai mult”" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:93 -msgid "Add the post title to \"Read More\" links in post lists when your theme outputs those links." -msgstr "Adaugă titlul postării la linkurile „Citește mai mult” în listele de postări atunci când tema ta afișează aceste linkuri." - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:102 -msgid "For Screen Readers Only" -msgstr "Doar pentru cititoarele de ecran" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:104 -msgid "Makes the post title added to \"Read More\" links visible only to screen readers." -msgstr "Face ca titlul postării adăugat la linkurile „Citește mai mult” să fie vizibil doar pentru cititoarele de ecran." - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:235 -msgid "This fix adds the post title to the \"Read More\" links in post lists at the \"More\" block and in excerpts." -msgstr "Această remediere adaugă titlul postării la linkurile „Citește mai mult” în listele de postări la blocul „Mai mult” și în extrase." - -#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:33 +#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:37 msgid "Prefer Accessible Label Attribute" msgstr "Preferă atributul de etichetă accesibilă" -#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:42 +#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:46 msgid "Remove Unnecessary Title Attributes" msgstr "Elimină atributele title inutile" -#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:76 +#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:80 msgid "Remove Title Attributes" msgstr "Elimină atributele title" #. translators: %1$s: a attribute name wrapped in a tag. -#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:79 +#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:83 #, php-format msgid "Remove %1$s attributes from elements that already have a preferred accessible name." msgstr "Elimină atributele %1$s de la elementele care au deja un nume accesibil preferat." -#: includes/classes/Fixes/Fix/SkipLinkFix.php:34 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:38 msgid "Add Skip Links" msgstr "Adaugă linkuri de omitere" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:57 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:61 msgid "Skip Link" msgstr "Link de omitere" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:81 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:85 msgid "Enable Skip Link" msgstr "Activează link de omitere" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:84 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:88 msgid "Add a skip link to all site pages, allowing users to skip directly to the main content." msgstr "Adaugă un link de omitere pe toate paginile site-ului, permițând utilizatorilor să sară direct la conținutul principal." -#: includes/classes/Fixes/Fix/SkipLinkFix.php:92 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:96 msgid "Main Content Target (required)" msgstr "Ținta conținutului principal (obligatoriu)" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:95 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:99 msgid "Define the ID(s) of the main content area(s) to be targeted by skip links. Enter multiple IDs separated by commas; the system will cascade through the list to find the appropriate one for each page." msgstr "Definește ID-ul(urile) zonei(lor) de conținut principal vizate de linkurile de omitere. Introdu mai multe ID-uri separate prin virgule; sistemul va parcurge lista pentru a găsi pe cel potrivit pentru fiecare pagină." -#: includes/classes/Fixes/Fix/SkipLinkFix.php:104 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:108 msgid "Navigation Target" msgstr "Ținta de navigare" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:107 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:111 msgid "Set the ID attribute of the navigation element. This is useful if your main navigation contains actions that most site visitors would want to take such as login or search features." msgstr "Setează atributul ID al elementului de navigare. Acest lucru este util dacă navigarea principală conține acțiuni pe care majoritatea vizitatorilor site-ului ar dori să le efectueze, cum ar fi funcții de autentificare sau căutare." #. translators: %1$s: opening anchor tag, %2$s: closing anchor tag. -#: includes/classes/Fixes/Fix/SkipLinkFix.php:236 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:240 #, php-format msgid "If your theme is not already adding a skip link that allows keyboard users to bypass the navigation and quickly jump to the main content, enable skip links here. %1$sLearn more about skip links.%2$s" msgstr "Dacă tema ta nu adaugă deja un link de omitere care permite utilizatorilor de tastatură să ocolească navigarea și să sară rapid la conținutul principal, activează linkurile de omitere aici. %1$sAflă mai multe despre linkurile de omitere.%2$s" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:263 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:267 msgid "Skip to content" msgstr "Sari la conținut" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:272 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:276 msgid "Skip to navigation" msgstr "Sari la navigare" -#: includes/classes/Fixes/Fix/TabindexFix.php:33 +#: includes/classes/Fixes/Fix/TabindexFix.php:37 msgid "Remove Tabindex from Focusable Elements" msgstr "Elimină tabindex de la elementele focalizabile" -#: includes/classes/Fixes/Fix/TabindexFix.php:67 +#: includes/classes/Fixes/Fix/TabindexFix.php:71 msgid "Remove Tab Index" msgstr "Elimină index de tabelare" #. translators: %1$s: a attribute name wrapped in a tag. -#: includes/classes/Fixes/Fix/TabindexFix.php:70 +#: includes/classes/Fixes/Fix/TabindexFix.php:74 #, php-format msgid "Remove the %1$s attribute from focusable elements." msgstr "Elimină atributul %1$s de la elementele focalizabile." -#: includes/classes/Fixes/FixesManager.php:241 +#: includes/classes/Fixes/FixesManager.php:252 msgid "Note: This setting is not recommended for themes that are already accessibility-ready." msgstr "Notă: Această setare nu este recomandată pentru temele care sunt deja pregătite pentru accesibilitate." -#: includes/classes/Fixes/FixesManager.php:294 +#: includes/classes/Fixes/FixesManager.php:322 msgid "Fix not found" msgstr "Remediere negăsită" +#: includes/classes/Fixes/FixesManager.php:358 +msgid "Fix not found." +msgstr "Remedierea nu a fost găsită." + +#: includes/classes/MyDot/Connector.php:202 +msgid "You do not have permission to manage this license." +msgstr "Nu aveți permisiunea de a gestiona această licență." + +#: includes/classes/MyDot/Connector.php:238 +msgid "Pro license is active. Please deactivate the Pro license first if you want to use a free license." +msgstr "Licența Pro este activă. Vă rugăm să dezactivați mai întâi licența Pro dacă doriți să utilizați o licență gratuită." + +#: includes/classes/MyDot/Connector.php:268 +msgid "An error occurred, please try again." +msgstr "A apărut o eroare, vă rugăm să încercați din nou." + +#: includes/classes/MyDot/Connector.php:557 +msgid "You do not have permission to register this site." +msgstr "Nu aveți permisiunea de a înregistra acest site." + +#: includes/classes/MyDot/Connector.php:578 +msgid "You do not have permission to unregister this site." +msgstr "Nu aveți permisiunea de a anula înregistrarea acestui site." + +#: includes/classes/MyDot/Connector.php:604 +msgid "No license key found. Please activate a license before registering your site." +msgstr "Nicio cheie de licență găsită. Vă rugăm să activați o licență înainte de a vă înregistra site-ul." + +#: includes/classes/MyDot/Connector.php:615 +#: includes/classes/MyDot/Connector.php:822 +msgid "Unknown error occurred while registering the site." +msgstr "A apărut o eroare necunoscută la înregistrarea site-ului." + +#: includes/classes/MyDot/Connector.php:644 +msgid "Site registered successfully. Your site is now configured to use additional accessibility services." +msgstr "Site înregistrat cu succes. Site-ul dumneavoastră este acum configurat pentru a utiliza servicii suplimentare de accesibilitate." + +#: includes/classes/MyDot/Connector.php:654 +msgid "Site registration completed, but the response data was not in the expected format. Some features may not work correctly." +msgstr "Înregistrarea site-ului a fost finalizată, dar datele de răspuns nu au fost în formatul așteptat. Unele funcționalități ar putea să nu funcționeze corect." + +#: includes/classes/MyDot/Connector.php:730 +msgid "Unable to unregister site. Required registration data is missing." +msgstr "Imposibil de anulat înregistrarea site-ului. Lipsesc datele de înregistrare necesare." + +#: includes/classes/MyDot/Connector.php:747 +#: includes/classes/MyDot/Connector.php:880 +msgid "Unknown error occurred while unregistering the site." +msgstr "A apărut o eroare necunoscută la anularea înregistrării site-ului." + +#: includes/classes/MyDot/Connector.php:762 +msgid "Site unregistered successfully. Your site will no longer receive email reports." +msgstr "Înregistrarea site-ului a fost anulată cu succes. Site-ul dumneavoastră nu va mai primi rapoarte prin email." + +#: includes/classes/MyDot/Connector.php:785 +msgid "No license key provided." +msgstr "Nicio cheie de licență furnizată." + +#: includes/classes/MyDot/Connector.php:843 +msgid "Missing required parameters for unregistration." +msgstr "Lipsesc parametrii necesari pentru anularea înregistrării." + #: includes/classes/Rules/AffectedDisabilities.php:50 msgid "Blind" msgstr "Nevăzători" @@ -1271,18 +1896,18 @@ msgid "Hard of hearing" msgstr "Cu deficiențe de auz" #: includes/classes/Rules/AffectedDisabilities.php:70 -#: includes/wcag.php:52 -#: includes/wcag.php:85 -#: includes/wcag.php:118 -#: includes/wcag.php:151 -#: includes/wcag.php:251 -#: includes/wcag.php:269 -#: includes/wcag.php:1661 -#: includes/wcag.php:1695 -#: includes/wcag.php:1728 -#: includes/wcag.php:1748 -#: includes/wcag.php:1767 -#: includes/wcag.php:1786 +#: includes/wcag.php:56 +#: includes/wcag.php:89 +#: includes/wcag.php:122 +#: includes/wcag.php:155 +#: includes/wcag.php:255 +#: includes/wcag.php:273 +#: includes/wcag.php:1665 +#: includes/wcag.php:1699 +#: includes/wcag.php:1732 +#: includes/wcag.php:1752 +#: includes/wcag.php:1771 +#: includes/wcag.php:1790 msgid "Language learners" msgstr "Persoane care învață limba" @@ -2625,1706 +3250,1786 @@ msgid "W3C: Understanding Guideline 1.2" msgstr "W3C: Înțelegerea Ghidului 1.2" #. translators: 1: a php classname, 2: an error message that was thrown about why this failed to register. -#: includes/classes/WPCLI/BootstrapCLI.php:101 +#: includes/classes/WPCLI/BootstrapCLI.php:113 #, php-format msgid "Failed to register command %1$s because %2$s" msgstr "Nu s-a putut înregistra comanda %1$s deoarece %2$s" -#: includes/classes/WPCLI/Command/DeleteStats.php:61 +#: includes/classes/WPCLI/Command/CleanupOrphanedIssues.php:73 +msgid "Number of orphaned posts to process in one batch." +msgstr "Numărul de postări orfane de procesat într-un singur lot." + +#: includes/classes/WPCLI/Command/CleanupOrphanedIssues.php:80 +msgid "Seconds to sleep between deletions (default: 0)." +msgstr "Secunde de așteptat între ștergeri (implicit: 0)." + +#: includes/classes/WPCLI/Command/DeleteStats.php:72 msgid "The ID of the post to delete stats for." msgstr "ID-ul postării pentru care să se șteargă statisticile." -#: includes/classes/WPCLI/Command/DeleteStats.php:83 +#: includes/classes/WPCLI/Command/DeleteStats.php:94 msgid "No Post ID provided." msgstr "Nu s-a furnizat niciun ID de postare." #. translators: 1: a post ID. -#: includes/classes/WPCLI/Command/DeleteStats.php:92 +#: includes/classes/WPCLI/Command/DeleteStats.php:103 #, php-format msgid "Post ID %1$s does not exist." msgstr "ID-ul postării %1$s nu există." #. translators: 1: a post ID. -#: includes/classes/WPCLI/Command/DeleteStats.php:103 +#: includes/classes/WPCLI/Command/DeleteStats.php:114 #, php-format msgid "Stats of %1$s deleted." msgstr "Statisticile pentru %1$s au fost șterse." -#: includes/classes/WPCLI/Command/GetSiteStats.php:67 +#: includes/classes/WPCLI/Command/GetSiteStats.php:78 msgid "Keys to show in the results. Defaults to all keys." msgstr "Cheile de afișat în rezultate. Implicit, toate cheile." -#: includes/classes/WPCLI/Command/GetSiteStats.php:75 +#: includes/classes/WPCLI/Command/GetSiteStats.php:86 msgid "Clear the cache before retrieving the stats (can be intensive)." msgstr "Șterge cache-ul înainte de a prelua statisticile (poate fi intensiv)." #. translators: 1: a stat key that was requested but not found. -#: includes/classes/WPCLI/Command/GetSiteStats.php:111 +#: includes/classes/WPCLI/Command/GetSiteStats.php:122 #, php-format msgid "Stat key: %1$s not found in stats." msgstr "Cheia statistică: %1$s nu a fost găsită în statistici." -#: includes/classes/WPCLI/Command/GetStats.php:85 +#: includes/classes/WPCLI/Command/GetStats.php:96 msgid "The ID of the post to get stats for." msgstr "ID-ul postării pentru care să se obțină statisticile." #. translators: 1: a post ID. -#: includes/classes/WPCLI/Command/GetStats.php:126 +#: includes/classes/WPCLI/Command/GetStats.php:137 #, php-format msgid "Post ID %1$d does not exist." msgstr "ID-ul postării %1$d nu există." #. translators: 1: a post ID. -#: includes/classes/WPCLI/Command/GetStats.php:142 +#: includes/classes/WPCLI/Command/GetStats.php:153 #, php-format msgid "Either the post is not yet scanned or all tests passed for post ID %1$d." msgstr "Fie postarea nu a fost încă scanată, fie toate testele au trecut pentru ID-ul postării %1$d." -#: includes/helper-functions.php:25 +#: includes/helper-functions.php:31 msgid "permalink of " msgstr "permalink pentru " -#: includes/helper-functions.php:26 +#: includes/helper-functions.php:32 msgid "permalink to " msgstr "permalink către " -#: includes/helper-functions.php:27 +#: includes/helper-functions.php:33 msgid " " msgstr " " -#: includes/helper-functions.php:339 +#: includes/helper-functions.php:409 msgid "Attend Free" msgstr "Participă gratuit" +#: includes/helper-functions.php:415 +#: partials/welcome-page.php:88 +#: partials/welcome-page.php:93 +#: partials/welcome-page.php:98 +#: partials/welcome-page.php:103 +#: partials/welcome-page.php:108 +#: partials/welcome-page.php:113 +#: partials/welcome-page.php:118 +#: partials/welcome-page.php:124 +#: partials/welcome-page.php:220 +msgid "(opens in a new window)" +msgstr "(se deschide într-o fereastră nouă)" + #. translators: %s is the landmark type (e.g., "Header", "Navigation", "Main"). -#: includes/helper-functions.php:782 -#, php-format +#: includes/helper-functions.php:861 +#: build/issueModal.bundle.js:2 +#, php-format,js-format msgid "View %s landmark on website, opens a new window" msgstr "Vizualizați %s reper pe site-ul web, se deschide o fereastră nouă" -#: includes/options-page.php:42 +#: includes/options-page.php:48 msgid "Welcome to Accessibility Checker" msgstr "Bine ați venit la Accessibility Checker" -#: includes/options-page.php:65 +#: includes/options-page.php:71 msgid "Accessibility Checker Settings" msgstr "Setări Accessibility Checker" -#: includes/options-page.php:99 -msgid "General Settings" -msgstr "Setări generale" +#: includes/options-page.php:115 +msgid "Scan Settings" +msgstr "Setări de scanare" -#: includes/options-page.php:106 +#: includes/options-page.php:122 +msgid "Permissions" +msgstr "Permisiuni" + +#: includes/options-page.php:129 msgid "Simplified Summary Settings" msgstr "Setări rezumat simplificat" -#: includes/options-page.php:113 +#: includes/options-page.php:136 msgid "Footer Accessibility Statement" msgstr "Declarație de accesibilitate în subsol" -#: includes/options-page.php:120 +#: includes/options-page.php:143 msgid "Frontend Accessibility Checker" msgstr "Verificator de Accesibilitate Frontend" -#: includes/options-page.php:128 +#: includes/options-page.php:150 +msgid "System Settings" +msgstr "Setări de sistem" + +#: includes/options-page.php:158 msgid "Post Types To Be Checked" msgstr "Tipuri de postări de verificat" -#: includes/options-page.php:146 +#: includes/options-page.php:167 +msgid "Scan Speed" +msgstr "Viteza de scanare" + +#: includes/options-page.php:176 +msgid "Archive Scanning" +msgstr "Scanarea arhivelor" + +#: includes/options-page.php:185 +msgid "Taxonomy Scanning" +msgstr "Scanarea taxonomiei" + +#: includes/options-page.php:212 +msgid "Block Editor Metabox" +msgstr "Metabox editor de blocuri" + +#: includes/options-page.php:221 msgid "Prompt for Simplified Summary" msgstr "Solicită rezumat simplificat" -#: includes/options-page.php:155 +#: includes/options-page.php:230 msgid "Simplified Summary Position" msgstr "Poziția rezumatului simplificat" -#: includes/options-page.php:164 -#: includes/options-page.php:533 +#: includes/options-page.php:239 +msgid "Simplified Summary Heading" +msgstr "Titlu rezumat simplificat" + +#: includes/options-page.php:248 +#: includes/options-page.php:752 msgid "Add Footer Accessibility Statement" msgstr "Adaugă declarație de accesibilitate în subsol" -#: includes/options-page.php:173 -#: includes/options-page.php:556 +#: includes/options-page.php:257 +#: includes/options-page.php:775 msgid "Include Link to Accessibility Policy" msgstr "Include link către politica de accesibilitate" -#: includes/options-page.php:182 +#: includes/options-page.php:266 msgid "Accessibility Policy page" msgstr "Pagina politicii de accesibilitate" -#: includes/options-page.php:191 +#: includes/options-page.php:275 msgid "Accessibility Statement Preview" msgstr "Previzualizare declarație de accesibilitate" -#: includes/options-page.php:200 +#: includes/options-page.php:283 msgid "Frontend Accessibility Checker Position" msgstr "Poziția Verificatorului de Accesibilitate Frontend" -#. translators: %1$s: link to the plugin documentation website. -#: includes/options-page.php:244 -#, php-format -msgid "Use the settings below to configure Accessibility Checker. Additional information about each setting can be found in the %1$s." -msgstr "Utilizați setările de mai jos pentru a configura Accessibility Checker. Informații suplimentare despre fiecare setare pot fi găsite în %1$s." - -#: includes/options-page.php:245 -msgid "plugin documentation (opens in a new window)" -msgstr "documentația plugin-ului (se deschide într-o fereastră nouă)" - -#: includes/options-page.php:245 -msgid "plugin documentation" -msgstr "documentația plugin-ului" +#: includes/options-page.php:333 +msgid "Configure the types of content that should be checked for accessibility issues." +msgstr "Configurează tipurile de conținut care ar trebui verificate pentru probleme de accesibilitate." #. translators: %1$s: link to the "Accessibility Checker Pro" website. -#: includes/options-page.php:251 +#: includes/options-page.php:338 #, php-format msgid "More features and email support is available with %1$s." msgstr "Mai multe funcționalități și asistență prin e-mail sunt disponibile cu %1$s." -#: includes/options-page.php:259 +#: includes/options-page.php:346 msgid "Accessibility Checker Pro (opens in a new window)" msgstr "Accessibility Checker Pro (se deschide într-o fereastră nouă)" -#: includes/options-page.php:259 -#: partials/welcome-page.php:21 +#: includes/options-page.php:346 +#: partials/welcome-page.php:25 msgid "Accessibility Checker Pro" msgstr "Accessibility Checker Pro" -#: includes/options-page.php:273 +#: includes/options-page.php:360 msgid "Use the settings below to configure the frontend accessibility checker." msgstr "Folosiți setările de mai jos pentru a configura verificatorul de accesibilitate pentru interfața frontend." -#: includes/options-page.php:283 +#: includes/options-page.php:370 msgid "Web Content Accessibility Guidelines (WCAG) at the AAA level require any content with a reading level above 9th grade to have an alternative that is easier to read. Simplified summary text is added on the readability tab in the Accessibility Checker meta box on each post's or page's edit screen." msgstr "Ghidurile de Accesibilitate a Conținutului Web (WCAG) la nivelul AAA necesită ca orice conținut cu un nivel de lectură peste clasa a 9-a să aibă o alternativă mai ușor de citit. Textul simplificat de rezumat este adăugat în fila de lizibilitate din caseta meta Accessibility Checker de pe ecranul de editare al fiecărui post sau pagină." -#: includes/options-page.php:293 +#: includes/options-page.php:380 msgid "Learn more about simplified summaries and readability requirements (opens in a new window)" msgstr "Aflați mai multe despre rezumatele simplificate și cerințele de lizibilitate (se deschide într-o fereastră nouă)" -#: includes/options-page.php:293 +#: includes/options-page.php:380 msgid "Learn more about simplified summaries and readability requirements." msgstr "Aflați mai multe despre rezumatele simplificate și cerințele de lizibilitate." -#: includes/options-page.php:302 +#: includes/options-page.php:389 msgid "Are you thinking \"Wow, this plugin is amazing\" and is it helping you make your website more accessible? Share your efforts to make your website more accessible with your customers and let them know you're using Accessibility Checker to ensure all people can use your website. Add a small text-only link and statement in the footer of your website." msgstr "Vă gândiți „Wow, acest plugin este uimitor” și vă ajută să faceți site-ul dvs. Web mai accesibil? Împărtășiți eforturile dvs. de a face site-ul web mai accesibil cu clienții dvs. și informați-i că utilizați Accessibility Checker pentru a vă asigura că toate persoanele pot folosi site-ul dvs. web. Adăugați un mic link text și o declarație în subsolul site-ului dvs. web." -#: includes/options-page.php:315 +#: includes/options-page.php:398 +msgid "Configure system-level settings for the Accessibility Checker plugin." +msgstr "Configurează setările la nivel de sistem pentru plugin-ul Accessibility Checker." + +#: includes/options-page.php:412 +msgid "Fast" +msgstr "Rapid" + +#: includes/options-page.php:413 +msgid "Normal" +msgstr "Normal" + +#: includes/options-page.php:414 +msgid "Slow" +msgstr "Lent" + +#: includes/options-page.php:415 +msgid "Slowest" +msgstr "Cel mai lent" + +#: includes/options-page.php:437 +msgid "Faster scans are more resource intensive and may place a high load on your website." +msgstr "Scanările mai rapide consumă mai multe resurse și pot pune o încărcare mare pe site-ul tău web." + +#: includes/options-page.php:463 +msgid "Enable scanning of archive pages" +msgstr "Activează scanarea paginilor de arhivă" + +#: includes/options-page.php:467 +msgid "Choose whether archive pages should be included in full site scans. By default, a sampling method is used to select taxonomy terms for archive data." +msgstr "Alege dacă paginile de arhivă ar trebui incluse în scanările complete ale site-ului. În mod implicit, se folosește o metodă de eșantionare pentru a selecta termenii de taxonomie pentru datele de arhivă." + +#: includes/options-page.php:493 +msgid "Scan all taxonomy terms instead of just a sample" +msgstr "Scanează toți termenii taxonomiei în loc de doar un eșantion" + +#: includes/options-page.php:497 +msgid "Check all taxonomy term archive pages instead of a representative sample. This requires archive page scanning to be enabled and may add a large number of URLs to the scan list." +msgstr "Verifică toate paginile de arhivă ale termenilor de taxonomie în loc de un eșantion reprezentativ. Acest lucru necesită ca scanarea paginilor de arhivă să fie activată și poate adăuga un număr mare de URL-uri la lista de scanare." + +#: includes/options-page.php:526 msgid "Before the content" msgstr "Înaintea conținutului" -#: includes/options-page.php:320 +#: includes/options-page.php:531 msgid "After the content" msgstr "După conținut" -#: includes/options-page.php:325 +#: includes/options-page.php:536 msgid "Insert manually" msgstr "Introduceți manual" -#: includes/options-page.php:329 +#: includes/options-page.php:540 msgid "Use this function to manually add the simplified summary to your theme within the loop." msgstr "Folosiți această funcție pentru a adăuga manual rezumatul simplificat în tema dumneavoastră în interiorul buclei." -#: includes/options-page.php:331 +#: includes/options-page.php:542 msgid "The function optionally accepts the post ID as a parameter." msgstr "Funcția acceptă opțional ID-ul postării ca parametru." -#: includes/options-page.php:334 +#: includes/options-page.php:545 msgid "Set where you would like simplified summaries to appear in relation to your content if filled in." msgstr "Stabiliți unde doriți să apară rezumatele simplificate în raport cu conținutul dumneavoastră, dacă sunt completate." -#: includes/options-page.php:349 +#: includes/options-page.php:560 msgid "Bottom Right Corner (default)" msgstr "Colțul din dreapta jos (implicit)" -#: includes/options-page.php:354 +#: includes/options-page.php:565 msgid "Bottom Left Corner" msgstr "Colțul din stânga jos" -#: includes/options-page.php:358 +#: includes/options-page.php:569 msgid "Set where you would like the frontend accessibility checker to appear on the page." msgstr "Stabiliți unde doriți să apară verificatorul de accesibilitate pentru interfața frontend pe pagină." -#: includes/options-page.php:398 +#: includes/options-page.php:609 msgid "When Required" msgstr "Când este necesar" -#: includes/options-page.php:403 +#: includes/options-page.php:614 msgid "Always" msgstr "Întotdeauna" -#: includes/options-page.php:411 +#: includes/options-page.php:622 msgid "Should Accessibility Checker only ask for a simplified summary when the reading level of your post or page is above 9th grade, always ask for it regardless of reading level, or never ask for it regardless of reading level?" msgstr "Ar trebui ca Accessibility Checker să ceară un rezumat simplificat doar atunci când nivelul de citire al postării sau paginii dvs. este peste clasa a 9-a, să-l ceară întotdeauna indiferent de nivelul de citire, sau să nu-l ceară niciodată indiferent de nivelul de citire?" -#: includes/options-page.php:462 +#: includes/options-page.php:677 msgid "To check content other than posts and pages, please " msgstr "Pentru a verifica alt conținut în afară de postări și pagini, vă rugăm să " -#: includes/options-page.php:464 +#: includes/options-page.php:679 msgid "upgrade to pro" msgstr "treceți la versiunea pro" -#: includes/options-page.php:465 +#: includes/options-page.php:680 msgid " (opens in a new window)" msgstr " (se deschide într-o fereastră nouă)" -#: includes/options-page.php:470 +#: includes/options-page.php:685 msgid "Choose which post types should be checked during a scan. Please note, removing a previously selected post type will remove its scanned information and any custom ignored warnings that have been setup." msgstr "Alegeți ce tipuri de postări ar trebui verificate în timpul unei scanări. Vă rugăm să rețineți, eliminarea unui tip de postare selectat anterior va șterge informațiile scanate ale acestuia și orice avertismente personalizate ignorate care au fost configurate." -#: includes/options-page.php:608 +#: includes/options-page.php:827 msgid "Delete all Accessibility Checker data when the plugin is uninstalled." msgstr "Ștergeți toate datele Accessibility Checker când plugin-ul este dezinstalat." -#: includes/wcag.php:11 +#: includes/options-page.php:845 +msgid "Show Accessibility Checker metabox in the Block Editor" +msgstr "Afișați metaboxul Accessibility Checker în editorul de blocuri" + +#: includes/options-page.php:1004 +msgid "Choose which user roles have permission to ignore issues." +msgstr "Alege ce roluri de utilizator au permisiunea de a ignora problemele." + +#: includes/options-page.php:1037 +msgid "Configure which user roles have access to specific Accessibility Checker features." +msgstr "Configurează ce roluri de utilizator au acces la funcțiile specifice ale Accessibility Checker." + +#: includes/wcag.php:15 msgid "Non-text Content" msgstr "Conținut non-text" -#: includes/wcag.php:12 +#: includes/wcag.php:16 msgid "All non-text content must have a text alternative that serves the same purpose, unless it falls into specific exceptions like controls, media, tests, sensory content, CAPTCHA, or decorative elements. Each type must follow specific guidance to ensure accessibility without interfering with the user experience." msgstr "Tot conținutul non-text trebuie să aibă o alternativă text care servește aceluiași scop, cu excepția cazului în care se încadrează în excepții specifice precum controale, media, teste, conținut senzorial, CAPTCHA sau elemente decorative. Fiecare tip trebuie să urmeze îndrumări specifice pentru a asigura accesibilitatea fără a interfera cu experiența utilizatorului." -#: includes/wcag.php:15 +#: includes/wcag.php:19 msgid "1.1 Text Alternatives" msgstr "1.1 alternative text" -#: includes/wcag.php:16 -#: includes/wcag.php:49 -#: includes/wcag.php:82 -#: includes/wcag.php:115 -#: includes/wcag.php:148 -#: includes/wcag.php:181 -#: includes/wcag.php:213 -#: includes/wcag.php:230 -#: includes/wcag.php:247 -#: includes/wcag.php:266 -#: includes/wcag.php:284 -#: includes/wcag.php:319 -#: includes/wcag.php:353 -#: includes/wcag.php:386 -#: includes/wcag.php:413 -#: includes/wcag.php:441 -#: includes/wcag.php:459 -#: includes/wcag.php:492 -#: includes/wcag.php:520 -#: includes/wcag.php:547 -#: includes/wcag.php:575 -#: includes/wcag.php:604 -#: includes/wcag.php:638 -#: includes/wcag.php:671 -#: includes/wcag.php:703 -#: includes/wcag.php:735 -#: includes/wcag.php:753 -#: includes/wcag.php:770 -#: includes/wcag.php:788 +#: includes/wcag.php:20 +#: includes/wcag.php:53 +#: includes/wcag.php:86 +#: includes/wcag.php:119 +#: includes/wcag.php:152 +#: includes/wcag.php:185 +#: includes/wcag.php:217 +#: includes/wcag.php:234 +#: includes/wcag.php:251 +#: includes/wcag.php:270 +#: includes/wcag.php:288 +#: includes/wcag.php:323 +#: includes/wcag.php:357 +#: includes/wcag.php:390 +#: includes/wcag.php:417 +#: includes/wcag.php:445 +#: includes/wcag.php:463 +#: includes/wcag.php:496 +#: includes/wcag.php:524 +#: includes/wcag.php:551 +#: includes/wcag.php:579 +#: includes/wcag.php:608 +#: includes/wcag.php:642 +#: includes/wcag.php:675 +#: includes/wcag.php:707 +#: includes/wcag.php:739 +#: includes/wcag.php:757 +#: includes/wcag.php:774 +#: includes/wcag.php:792 msgid "Perceivable" msgstr "Perceptibil" -#: includes/wcag.php:18 -#: includes/wcag.php:288 -#: includes/wcag.php:1533 -#: includes/wcag.php:2200 -#: includes/wcag.php:2234 +#: includes/wcag.php:22 +#: includes/wcag.php:292 +#: includes/wcag.php:1537 +#: includes/wcag.php:2204 +#: includes/wcag.php:2238 msgid "People with dexterity impairments using voice control" msgstr "Persoane cu deficiențe de dexteritate care folosesc controlul vocal" -#: includes/wcag.php:19 -#: includes/wcag.php:289 -#: includes/wcag.php:323 -#: includes/wcag.php:444 -#: includes/wcag.php:894 -#: includes/wcag.php:923 -#: includes/wcag.php:957 -#: includes/wcag.php:991 -#: includes/wcag.php:1011 -#: includes/wcag.php:1030 -#: includes/wcag.php:1049 -#: includes/wcag.php:1133 -#: includes/wcag.php:1167 -#: includes/wcag.php:1237 -#: includes/wcag.php:1304 -#: includes/wcag.php:1338 -#: includes/wcag.php:1372 -#: includes/wcag.php:1457 -#: includes/wcag.php:1476 -#: includes/wcag.php:1506 -#: includes/wcag.php:1662 -#: includes/wcag.php:1696 -#: includes/wcag.php:1806 -#: includes/wcag.php:1842 -#: includes/wcag.php:1877 -#: includes/wcag.php:1908 -#: includes/wcag.php:1940 -#: includes/wcag.php:1976 -#: includes/wcag.php:2010 -#: includes/wcag.php:2044 -#: includes/wcag.php:2078 -#: includes/wcag.php:2112 -#: includes/wcag.php:2131 -#: includes/wcag.php:2202 -#: includes/wcag.php:2236 -#: includes/wcag.php:2267 +#: includes/wcag.php:23 +#: includes/wcag.php:293 +#: includes/wcag.php:327 +#: includes/wcag.php:448 +#: includes/wcag.php:898 +#: includes/wcag.php:927 +#: includes/wcag.php:961 +#: includes/wcag.php:995 +#: includes/wcag.php:1015 +#: includes/wcag.php:1034 +#: includes/wcag.php:1053 +#: includes/wcag.php:1137 +#: includes/wcag.php:1171 +#: includes/wcag.php:1241 +#: includes/wcag.php:1308 +#: includes/wcag.php:1342 +#: includes/wcag.php:1376 +#: includes/wcag.php:1461 +#: includes/wcag.php:1480 +#: includes/wcag.php:1510 +#: includes/wcag.php:1666 +#: includes/wcag.php:1700 +#: includes/wcag.php:1810 +#: includes/wcag.php:1846 +#: includes/wcag.php:1881 +#: includes/wcag.php:1912 +#: includes/wcag.php:1944 +#: includes/wcag.php:1980 +#: includes/wcag.php:2014 +#: includes/wcag.php:2048 +#: includes/wcag.php:2082 +#: includes/wcag.php:2116 +#: includes/wcag.php:2135 +#: includes/wcag.php:2206 +#: includes/wcag.php:2240 +#: includes/wcag.php:2271 msgid "Screen reader users (blind/low vision and neurodivergent people)" msgstr "Utilizatori de cititoare de ecran (nevăzători/cu vedere slabă și persoane neurodivergente)" -#: includes/wcag.php:44 +#: includes/wcag.php:48 msgid "Prerecorded Audio-only and Video-only" msgstr "Audio și video preînregistrate doar audio și doar video" -#: includes/wcag.php:45 +#: includes/wcag.php:49 msgid "For prerecorded audio-only and video-only content, a text alternative must be provided that presents equivalent information. This ensures users who cannot hear or see the media can still access its content through text." msgstr "Pentru conținutul preînregistrat doar audio și doar video, trebuie furnizată o alternativă text care prezintă informații echivalente. Acest lucru asigură că utilizatorii care nu pot auzi sau vedea media pot accesa totuși conținutul acesteia prin text." -#: includes/wcag.php:48 -#: includes/wcag.php:81 -#: includes/wcag.php:114 -#: includes/wcag.php:147 -#: includes/wcag.php:180 -#: includes/wcag.php:212 -#: includes/wcag.php:229 -#: includes/wcag.php:246 -#: includes/wcag.php:265 +#: includes/wcag.php:52 +#: includes/wcag.php:85 +#: includes/wcag.php:118 +#: includes/wcag.php:151 +#: includes/wcag.php:184 +#: includes/wcag.php:216 +#: includes/wcag.php:233 +#: includes/wcag.php:250 +#: includes/wcag.php:269 msgid "1.2 Time-based Media" msgstr "1.2 media bazată pe timp" -#: includes/wcag.php:51 -#: includes/wcag.php:84 -#: includes/wcag.php:117 -#: includes/wcag.php:150 -#: includes/wcag.php:215 -#: includes/wcag.php:249 -#: includes/wcag.php:268 -#: includes/wcag.php:356 -#: includes/wcag.php:607 -#: includes/wcag.php:755 +#: includes/wcag.php:55 +#: includes/wcag.php:88 +#: includes/wcag.php:121 +#: includes/wcag.php:154 +#: includes/wcag.php:219 +#: includes/wcag.php:253 +#: includes/wcag.php:272 +#: includes/wcag.php:360 +#: includes/wcag.php:611 +#: includes/wcag.php:759 msgid "Deaf and hard of hearing people" msgstr "Persoane surde și cu deficiențe de auz" -#: includes/wcag.php:77 +#: includes/wcag.php:81 msgid "Captions (Prerecorded)" msgstr "Subtitrări (preînregistrate)" -#: includes/wcag.php:78 +#: includes/wcag.php:82 msgid "Captions must be provided for all prerecorded audio content in synchronized media—such as videos where audio and visuals play together—so that users who are deaf or hard of hearing can access the spoken information and important sounds." msgstr "Trebuie furnizate subtitrări pentru tot conținutul audio preînregistrat în media sincronizată—cum ar fi videoclipurile în care audio și vizualul rulează împreună—astfel încât utilizatorii care sunt surzi sau cu deficiențe de auz să poată accesa informațiile vorbite și sunetele importante." -#: includes/wcag.php:110 +#: includes/wcag.php:114 msgid "Audio Description or Media Alternative (Prerecorded)" msgstr "Descriere audio sau alternativă media (preînregistrată)" -#: includes/wcag.php:111 +#: includes/wcag.php:115 msgid "For prerecorded video content with audio (synchronized media), an audio description—or a written transcript that includes visual details—must be provided to ensure users who are blind or have low vision can understand important visual information that isn't spoken." msgstr "Pentru conținutul video preînregistrat cu audio (media sincronizată), trebuie furnizată o descriere audio—sau o transcriere scrisă care include detalii vizuale—pentru a se asigura că utilizatorii care sunt nevăzători sau au vedere slabă pot înțelege informațiile vizuale importante care nu sunt rostite." -#: includes/wcag.php:143 +#: includes/wcag.php:147 msgid "Captions (Live)" msgstr "Subtitrări (live)" -#: includes/wcag.php:144 +#: includes/wcag.php:148 msgid "For all live video content that includes audio, captions must be provided in real time so that users who are deaf or hard of hearing can access the spoken information as it happens." msgstr "Pentru tot conținutul video live care include audio, trebuie furnizate subtitrări în timp real astfel încât utilizatorii care sunt surzi sau cu deficiențe de auz să poată accesa informațiile vorbite pe măsură ce acestea se întâmplă." -#: includes/wcag.php:176 +#: includes/wcag.php:180 msgid "Audio Description (Prerecorded)" msgstr "Descriere audio (preînregistrată)" -#: includes/wcag.php:177 +#: includes/wcag.php:181 msgid "For prerecorded video with audio, an audio description of important visual content must be provided, allowing users who are blind or have low vision to understand visual information that is not described in the main audio." msgstr "Pentru conținutul video preînregistrat cu audio, trebuie furnizată o descriere audio a conținutului vizual important, permițând utilizatorilor nevăzători sau cu vedere slabă să înțeleagă informațiile vizuale care nu sunt descrise în audio-ul principal." -#: includes/wcag.php:183 -#: includes/wcag.php:232 -#: includes/wcag.php:355 -#: includes/wcag.php:461 -#: includes/wcag.php:577 -#: includes/wcag.php:606 -#: includes/wcag.php:705 -#: includes/wcag.php:790 -#: includes/wcag.php:807 -#: includes/wcag.php:841 -#: includes/wcag.php:875 +#: includes/wcag.php:187 +#: includes/wcag.php:236 +#: includes/wcag.php:359 +#: includes/wcag.php:465 +#: includes/wcag.php:581 +#: includes/wcag.php:610 +#: includes/wcag.php:709 +#: includes/wcag.php:794 +#: includes/wcag.php:811 +#: includes/wcag.php:845 +#: includes/wcag.php:879 msgid "Blind and low vision people" msgstr "Persoane nevăzătoare și cu vedere slabă" -#: includes/wcag.php:208 +#: includes/wcag.php:212 msgid "Sign Language (Prerecorded)" msgstr "Limbaj mimico-gestual (preînregistrat)" -#: includes/wcag.php:209 +#: includes/wcag.php:213 msgid "A sign language interpretation must be provided for all prerecorded audio content in synchronized media, ensuring that users who are deaf and use sign language can fully understand the spoken content." msgstr "Trebuie furnizată o interpretare în limbaj mimico-gestual pentru tot conținutul audio preînregistrat în media sincronizată, asigurând că utilizatorii surzi care folosesc limbajul semnelor pot înțelege pe deplin conținutul vorbit." -#: includes/wcag.php:225 +#: includes/wcag.php:229 msgid "Extended Audio Description (Prerecorded)" msgstr "Descriere audio extinsă (preînregistrată)" -#: includes/wcag.php:226 +#: includes/wcag.php:230 msgid "For all prerecorded multimedia content, extended audio descriptions must be provided when necessary—meaning the video is paused to insert additional descriptions—so that users who are blind or have low vision can understand important visual details that can't be described during the natural pauses in the audio." msgstr "Pentru tot conținutul multimedia preînregistrat, trebuie furnizate descrieri audio extinse atunci când este necesar—adică videoclipul este pus pe pauză pentru a insera descrieri suplimentare—astfel încât utilizatorii nevăzători sau cu vedere slabă să poată înțelege detaliile vizuale importante care nu pot fi descrise în timpul pauzelor naturale din audio." -#: includes/wcag.php:242 +#: includes/wcag.php:246 msgid "Media Alternative (Prerecorded)" msgstr "Alternativă media (preînregistrată)" -#: includes/wcag.php:243 +#: includes/wcag.php:247 msgid "For prerecorded synchronized media, a full text alternative (such as a transcript) is provided that gives all the information in both the video and audio tracks, so users who cannot see or hear the content can still access it." msgstr "Pentru media sincronizată preînregistrată, se furnizează o alternativă completă de text (cum ar fi o transcriere) care oferă toate informațiile atât din pista video, cât și din cea audio, astfel încât utilizatorii care nu pot vedea sau auzi conținutul să îl poată accesa în continuare." -#: includes/wcag.php:250 +#: includes/wcag.php:254 msgid "Deaf-blind people" msgstr "Persoane surdo-oarbe" -#: includes/wcag.php:261 +#: includes/wcag.php:265 msgid "Audio-only (Live)" msgstr "Doar audio (live)" -#: includes/wcag.php:262 +#: includes/wcag.php:266 msgid "For live audio-only content, a text alternative is provided in real time so people who cannot hear the audio can still access the information." msgstr "Pentru conținutul doar audio transmis în direct, se furnizează o alternativă text în timp real, astfel încât persoanele care nu pot auzi audio-ul să poată accesa informațiile." -#: includes/wcag.php:279 +#: includes/wcag.php:283 msgid "Info and Relationships" msgstr "Informații și relații" -#: includes/wcag.php:280 +#: includes/wcag.php:284 msgid "Information, structure, and relationships in content are programmatically determined or available in text, so assistive technologies can present them to users." msgstr "Informațiile, structura și relațiile din conținut sunt determinate programatic sau disponibile în text, astfel încât tehnologiile de asistare să le poată prezenta utilizatorilor." -#: includes/wcag.php:283 -#: includes/wcag.php:318 -#: includes/wcag.php:352 -#: includes/wcag.php:385 -#: includes/wcag.php:412 -#: includes/wcag.php:440 +#: includes/wcag.php:287 +#: includes/wcag.php:322 +#: includes/wcag.php:356 +#: includes/wcag.php:389 +#: includes/wcag.php:416 +#: includes/wcag.php:444 msgid "1.3 Adaptable" msgstr "1.3 adaptabil" -#: includes/wcag.php:286 -#: includes/wcag.php:321 -#: includes/wcag.php:808 -#: includes/wcag.php:842 -#: includes/wcag.php:876 -#: includes/wcag.php:1184 -#: includes/wcag.php:1201 -#: includes/wcag.php:1218 -#: includes/wcag.php:1269 -#: includes/wcag.php:1404 -#: includes/wcag.php:1474 -#: includes/wcag.php:1504 -#: includes/wcag.php:1624 -#: includes/wcag.php:1804 -#: includes/wcag.php:1839 -#: includes/wcag.php:1937 +#: includes/wcag.php:290 +#: includes/wcag.php:325 +#: includes/wcag.php:812 +#: includes/wcag.php:846 +#: includes/wcag.php:880 +#: includes/wcag.php:1188 +#: includes/wcag.php:1205 +#: includes/wcag.php:1222 +#: includes/wcag.php:1273 +#: includes/wcag.php:1408 +#: includes/wcag.php:1478 +#: includes/wcag.php:1508 +#: includes/wcag.php:1628 +#: includes/wcag.php:1808 +#: includes/wcag.php:1843 +#: includes/wcag.php:1941 msgid "People who rely on keyboard control" msgstr "Persoane care se bazează pe controlul de la tastatură" -#: includes/wcag.php:287 -#: includes/wcag.php:322 +#: includes/wcag.php:291 +#: includes/wcag.php:326 msgid "People with cognitive differences who view interfaces using an adapted layout" msgstr "Persoane cu diferențe cognitive care vizualizează interfețele folosind un aspect adaptat" -#: includes/wcag.php:314 +#: includes/wcag.php:318 msgid "Meaningful Sequence" msgstr "Secvență semnificativă" -#: includes/wcag.php:315 +#: includes/wcag.php:319 msgid "Content is presented in a meaningful order so that reading or navigation order does not confuse users when using assistive technology." msgstr "Conținutul este prezentat într-o ordine semnificativă, astfel încât ordinea de citire sau de navigare să nu confuzeze utilizatorii atunci când folosesc tehnologii de asistare." -#: includes/wcag.php:348 +#: includes/wcag.php:352 msgid "Sensory Characteristics" msgstr "Caracteristici senzoriale" -#: includes/wcag.php:349 +#: includes/wcag.php:353 msgid "Instructions do not rely only on sensory characteristics such as shape, color, size, or sound, so everyone can understand them." msgstr "Instrucțiunile nu se bazează doar pe caracteristici senzoriale precum formă, culoare, dimensiune sau sunet, astfel încât toată lumea să le poată înțelege." -#: includes/wcag.php:381 +#: includes/wcag.php:385 msgid "Orientation" msgstr "Orientare" -#: includes/wcag.php:382 +#: includes/wcag.php:386 msgid "Content does not restrict its view and operation to a single display orientation, such as portrait or landscape, unless a specific orientation is essential." msgstr "Conținutul nu restricționează vizualizarea și operarea sa la o singură orientare a afișajului, cum ar fi portret sau peisaj, cu excepția cazului în care o anumită orientare este esențială." -#: includes/wcag.php:388 -#: includes/wcag.php:1165 -#: includes/wcag.php:1303 -#: includes/wcag.php:1336 -#: includes/wcag.php:1370 -#: includes/wcag.php:1438 -#: includes/wcag.php:1456 -#: includes/wcag.php:1503 -#: includes/wcag.php:1607 -#: includes/wcag.php:1727 -#: includes/wcag.php:1747 -#: includes/wcag.php:1766 -#: includes/wcag.php:1785 -#: includes/wcag.php:1875 -#: includes/wcag.php:1906 -#: includes/wcag.php:1957 -#: includes/wcag.php:1974 -#: includes/wcag.php:2008 -#: includes/wcag.php:2042 -#: includes/wcag.php:2076 -#: includes/wcag.php:2110 -#: includes/wcag.php:2129 -#: includes/wcag.php:2148 +#: includes/wcag.php:392 +#: includes/wcag.php:1169 +#: includes/wcag.php:1307 +#: includes/wcag.php:1340 +#: includes/wcag.php:1374 +#: includes/wcag.php:1442 +#: includes/wcag.php:1460 +#: includes/wcag.php:1507 +#: includes/wcag.php:1611 +#: includes/wcag.php:1731 +#: includes/wcag.php:1751 +#: includes/wcag.php:1770 +#: includes/wcag.php:1789 +#: includes/wcag.php:1879 +#: includes/wcag.php:1910 +#: includes/wcag.php:1961 +#: includes/wcag.php:1978 +#: includes/wcag.php:2012 +#: includes/wcag.php:2046 +#: includes/wcag.php:2080 +#: includes/wcag.php:2114 +#: includes/wcag.php:2133 +#: includes/wcag.php:2152 msgid "All people including those who do not identify as disabled" msgstr "Toate persoanele, inclusiv cele care nu se identifică ca având dizabilități" -#: includes/wcag.php:408 +#: includes/wcag.php:412 msgid "Identify Input Purpose" msgstr "Identificarea scopului introducerii datelor" -#: includes/wcag.php:409 +#: includes/wcag.php:413 msgid "The purpose of input fields that collect information about the user can be programmatically determined, so browsers and assistive technologies can help users fill them in." msgstr "Scopul câmpurilor de introducere care colectează informații despre utilizator poate fi determinat programatic, astfel încât browserele și tehnologiile de asistare să poată ajuta utilizatorii să le completeze." -#: includes/wcag.php:415 -#: includes/wcag.php:443 -#: includes/wcag.php:1166 -#: includes/wcag.php:1235 -#: includes/wcag.php:1371 -#: includes/wcag.php:1439 -#: includes/wcag.php:2166 -#: includes/wcag.php:2183 +#: includes/wcag.php:419 +#: includes/wcag.php:447 +#: includes/wcag.php:1170 +#: includes/wcag.php:1239 +#: includes/wcag.php:1375 +#: includes/wcag.php:1443 +#: includes/wcag.php:2170 +#: includes/wcag.php:2187 msgid "People with cognitive disabilities or limited short-term memory or reading disabilities" msgstr "Persoane cu dizabilități cognitive sau memorie pe termen scurt limitată sau dizabilități de citire" -#: includes/wcag.php:416 -#: includes/wcag.php:809 -#: includes/wcag.php:843 -#: includes/wcag.php:877 -#: includes/wcag.php:922 -#: includes/wcag.php:990 -#: includes/wcag.php:1010 -#: includes/wcag.php:1029 -#: includes/wcag.php:1048 -#: includes/wcag.php:1132 -#: includes/wcag.php:1270 -#: includes/wcag.php:1405 -#: includes/wcag.php:1475 -#: includes/wcag.php:1505 -#: includes/wcag.php:1560 -#: includes/wcag.php:1805 -#: includes/wcag.php:1841 -#: includes/wcag.php:1939 +#: includes/wcag.php:420 +#: includes/wcag.php:813 +#: includes/wcag.php:847 +#: includes/wcag.php:881 +#: includes/wcag.php:926 +#: includes/wcag.php:994 +#: includes/wcag.php:1014 +#: includes/wcag.php:1033 +#: includes/wcag.php:1052 +#: includes/wcag.php:1136 +#: includes/wcag.php:1274 +#: includes/wcag.php:1409 +#: includes/wcag.php:1479 +#: includes/wcag.php:1509 +#: includes/wcag.php:1564 +#: includes/wcag.php:1809 +#: includes/wcag.php:1845 +#: includes/wcag.php:1943 msgid "People with dexterity and mobility impairments" msgstr "Persoane cu deficiențe de dexteritate și mobilitate" -#: includes/wcag.php:436 +#: includes/wcag.php:440 msgid "Identify Purpose" msgstr "Identificarea scopului" -#: includes/wcag.php:437 +#: includes/wcag.php:441 msgid "The purpose of user interface components, icons, and regions can be programmatically determined, so assistive technologies can adapt the experience for users." msgstr "Scopul componentelor interfeței utilizator, al pictogramelor și al regiunilor poate fi determinat programatic, astfel încât tehnologiile de asistare să poată adapta experiența pentru utilizatori." -#: includes/wcag.php:454 +#: includes/wcag.php:458 msgid "Use of Color" msgstr "Utilizarea culorii" -#: includes/wcag.php:455 +#: includes/wcag.php:459 msgid "Color is not used as the only way to convey information, indicate an action, prompt a response, or distinguish a visual element." msgstr "Culoarea nu este folosită ca singura modalitate de a transmite informații, de a indica o acțiune, de a solicita un răspuns sau de a distinge un element vizual." -#: includes/wcag.php:458 -#: includes/wcag.php:491 -#: includes/wcag.php:519 -#: includes/wcag.php:546 -#: includes/wcag.php:574 -#: includes/wcag.php:603 -#: includes/wcag.php:637 -#: includes/wcag.php:670 -#: includes/wcag.php:702 -#: includes/wcag.php:734 -#: includes/wcag.php:752 -#: includes/wcag.php:769 -#: includes/wcag.php:787 +#: includes/wcag.php:462 +#: includes/wcag.php:495 +#: includes/wcag.php:523 +#: includes/wcag.php:550 +#: includes/wcag.php:578 +#: includes/wcag.php:607 +#: includes/wcag.php:641 +#: includes/wcag.php:674 +#: includes/wcag.php:706 +#: includes/wcag.php:738 +#: includes/wcag.php:756 +#: includes/wcag.php:773 +#: includes/wcag.php:791 msgid "1.4 Distinguishable" msgstr "1.4 distinctiv" -#: includes/wcag.php:462 +#: includes/wcag.php:466 msgid "Color blind people" msgstr "Persoane daltoniste" -#: includes/wcag.php:487 +#: includes/wcag.php:491 msgid "Reflow" msgstr "Reflow" -#: includes/wcag.php:488 +#: includes/wcag.php:492 msgid "Content can be viewed without scrolling in more than one direction, so users can easily read and interact with it on small screens or when zoomed in." msgstr "Conținutul poate fi vizualizat fără a derula în mai mult de o direcție, astfel încât utilizatorii să poată citi și interacționa cu ușurință pe ecrane mici sau când se face zoom." -#: includes/wcag.php:494 -#: includes/wcag.php:1641 +#: includes/wcag.php:498 +#: includes/wcag.php:1645 msgid "People on mobile devices" msgstr "Persoane pe dispozitive mobile" -#: includes/wcag.php:495 -#: includes/wcag.php:522 -#: includes/wcag.php:550 -#: includes/wcag.php:641 -#: includes/wcag.php:673 -#: includes/wcag.php:738 -#: includes/wcag.php:773 -#: includes/wcag.php:1271 -#: includes/wcag.php:1406 -#: includes/wcag.php:1589 -#: includes/wcag.php:1643 +#: includes/wcag.php:499 +#: includes/wcag.php:526 +#: includes/wcag.php:554 +#: includes/wcag.php:645 +#: includes/wcag.php:677 +#: includes/wcag.php:742 +#: includes/wcag.php:777 +#: includes/wcag.php:1275 +#: includes/wcag.php:1410 +#: includes/wcag.php:1593 +#: includes/wcag.php:1647 msgid "People with low vision" msgstr "Persoane cu vedere slabă" -#: includes/wcag.php:515 +#: includes/wcag.php:519 msgid "Non-text Contrast" msgstr "Contrast non-text" -#: includes/wcag.php:516 +#: includes/wcag.php:520 msgid "Visual information needed to identify user interface components and graphical objects has a contrast ratio of at least 3:1 against adjacent colors." msgstr "Informațiile vizuale necesare pentru identificarea componentelor interfeței utilizator și a obiectelor grafice au un raport de contrast de cel puțin 3:1 față de culorile adiacente." -#: includes/wcag.php:542 +#: includes/wcag.php:546 msgid "Text Spacing" msgstr "Spațierea textului" -#: includes/wcag.php:543 +#: includes/wcag.php:547 msgid "Users can override text spacing to improve readability without losing content or functionality." msgstr "Utilizatorii pot suprascrie spațierea textului pentru a îmbunătăți lizibilitatea fără a pierde conținut sau funcționalitate." -#: includes/wcag.php:549 -#: includes/wcag.php:772 -#: includes/wcag.php:1729 -#: includes/wcag.php:1749 -#: includes/wcag.php:1768 -#: includes/wcag.php:1787 -#: includes/wcag.php:1840 -#: includes/wcag.php:1876 -#: includes/wcag.php:1907 -#: includes/wcag.php:1938 -#: includes/wcag.php:1975 -#: includes/wcag.php:2009 -#: includes/wcag.php:2043 -#: includes/wcag.php:2077 -#: includes/wcag.php:2111 -#: includes/wcag.php:2130 +#: includes/wcag.php:553 +#: includes/wcag.php:776 +#: includes/wcag.php:1733 +#: includes/wcag.php:1753 +#: includes/wcag.php:1772 +#: includes/wcag.php:1791 +#: includes/wcag.php:1844 +#: includes/wcag.php:1880 +#: includes/wcag.php:1911 +#: includes/wcag.php:1942 +#: includes/wcag.php:1979 +#: includes/wcag.php:2013 +#: includes/wcag.php:2047 +#: includes/wcag.php:2081 +#: includes/wcag.php:2115 +#: includes/wcag.php:2134 msgid "People with cognitive disabilities and reading disabilities" msgstr "Persoane cu dizabilități cognitive și dizabilități de citire" -#: includes/wcag.php:570 +#: includes/wcag.php:574 msgid "Content on Hover or Focus" msgstr "Conținut la trecerea cursorului sau focalizare" -#: includes/wcag.php:571 +#: includes/wcag.php:575 msgid "If extra content appears on hover or focus, users can dismiss it, move their pointer over it, and it remains visible until dismissed or focus is moved." msgstr "Dacă apare conținut suplimentar la trecerea cursorului sau focalizare, utilizatorii îl pot respinge, își pot muta cursorul peste el, iar acesta rămâne vizibil până când este respins sau focalizarea este mutată." -#: includes/wcag.php:578 -#: includes/wcag.php:956 -#: includes/wcag.php:1337 +#: includes/wcag.php:582 +#: includes/wcag.php:960 +#: includes/wcag.php:1341 msgid "People with cognitive disabilities" msgstr "Persoane cu dizabilități cognitive" -#: includes/wcag.php:579 -#: includes/wcag.php:1642 +#: includes/wcag.php:583 +#: includes/wcag.php:1646 msgid "People with dexterity impairments" msgstr "Persoane cu deficiențe de dexteritate" -#: includes/wcag.php:599 +#: includes/wcag.php:603 msgid "Audio Control" msgstr "Control audio" -#: includes/wcag.php:600 +#: includes/wcag.php:604 msgid "If audio plays automatically for more than 3 seconds, users must be able to pause, stop, or control the volume independently from the system volume." msgstr "Dacă audio-ul se redă automat mai mult de 3 secunde, utilizatorii trebuie să poată întrerupe, opri sau controla volumul independent de volumul sistemului." -#: includes/wcag.php:608 -#: includes/wcag.php:955 -#: includes/wcag.php:1009 +#: includes/wcag.php:612 +#: includes/wcag.php:959 +#: includes/wcag.php:1013 msgid "People with ADD or difficulty focusing on content without distraction" msgstr "Persoane cu ADHD sau dificultăți de concentrare asupra conținutului fără distragere" -#: includes/wcag.php:633 +#: includes/wcag.php:637 msgid "Contrast (Minimum)" msgstr "Contrast (minim)" -#: includes/wcag.php:634 +#: includes/wcag.php:638 msgid "Text and images of text must have a contrast ratio of at least 4.5:1, except for large text, incidental text, or logotypes." msgstr "Textul și imaginile de text trebuie să aibă un raport de contrast de cel puțin 4,5:1, cu excepția textului mare, textului incidental sau logotipurilor." -#: includes/wcag.php:640 -#: includes/wcag.php:737 +#: includes/wcag.php:644 +#: includes/wcag.php:741 msgid "People on mobile devices in a sunny environment" msgstr "Oameni pe dispozitive mobile într-un mediu însorit" -#: includes/wcag.php:666 +#: includes/wcag.php:670 msgid "Resize text" msgstr "Redimensionează textul" -#: includes/wcag.php:667 +#: includes/wcag.php:671 msgid "Text can be resized up to 200% without loss of content or functionality, so people with low vision can read it more easily." msgstr "Textul poate fi redimensionat până la 200% fără pierderea conținutului sau a funcționalității, astfel încât persoanele cu vedere slabă să îl poată citi mai ușor." -#: includes/wcag.php:698 +#: includes/wcag.php:702 msgid "Images of Text" msgstr "Imagini cu text" -#: includes/wcag.php:699 +#: includes/wcag.php:703 msgid "If the same visual presentation can be made using text alone, do not use images of text except for decorative or essential purposes." msgstr "Dacă aceeași prezentare vizuală poate fi realizată folosind doar text, nu folosiți imagini cu text, cu excepția scopurilor decorative sau esențiale." -#: includes/wcag.php:730 +#: includes/wcag.php:734 msgid "Contrast (Enhanced)" msgstr "Contrast (îmbunătățit)" -#: includes/wcag.php:731 +#: includes/wcag.php:735 msgid "Text and images of text must have a contrast ratio of at least 7:1, except for large text, incidental text, or logotypes." msgstr "Textul și imaginile cu text trebuie să aibă un raport de contrast de cel puțin 7:1, cu excepția textului mare, textului incidental sau a logotipurilor." -#: includes/wcag.php:748 +#: includes/wcag.php:752 msgid "Low or No Background Audio" msgstr "Sunet de fundal redus sau absent" -#: includes/wcag.php:749 +#: includes/wcag.php:753 msgid "For prerecorded audio-only content, background sounds are either low, can be turned off, or are not present, so speech is easier to understand." msgstr "Pentru conținutul audio preînregistrat, sunetele de fundal sunt fie reduse, pot fi dezactivate sau nu sunt prezente, astfel încât vorbirea să fie mai ușor de înțeles." -#: includes/wcag.php:765 +#: includes/wcag.php:769 msgid "Visual Presentation" msgstr "Prezentare vizuală" -#: includes/wcag.php:766 +#: includes/wcag.php:770 msgid "Users can choose how blocks of text are presented, such as foreground and background colors, width, and line spacing, to make reading easier." msgstr "Utilizatorii pot alege modul în care sunt prezentate blocurile de text, cum ar fi culorile de prim-plan și de fundal, lățimea și spațierea rândurilor, pentru a face citirea mai ușoară." -#: includes/wcag.php:783 +#: includes/wcag.php:787 msgid "Images of Text (No Exception)" msgstr "Imagini cu text (fără excepție)" -#: includes/wcag.php:784 +#: includes/wcag.php:788 msgid "Images of text are only used for pure decoration or where a particular presentation of text is essential, with no exceptions." msgstr "Imaginile cu text sunt folosite doar pentru decorare pură sau acolo unde o anumită prezentare a textului este esențială, fără excepții." -#: includes/wcag.php:800 +#: includes/wcag.php:804 msgid "Keyboard" msgstr "Tastatură" -#: includes/wcag.php:801 +#: includes/wcag.php:805 msgid "All functionality is available using a keyboard, so users who cannot use a mouse can still operate the content." msgstr "Toate funcționalitățile sunt disponibile folosind o tastatură, astfel încât utilizatorii care nu pot folosi un mouse pot totuși să opereze conținutul." -#: includes/wcag.php:804 -#: includes/wcag.php:838 -#: includes/wcag.php:872 -#: includes/wcag.php:891 +#: includes/wcag.php:808 +#: includes/wcag.php:842 +#: includes/wcag.php:876 +#: includes/wcag.php:895 msgid "2.1 Keyboard Accessible" msgstr "2.1 accesibil prin tastatură" -#: includes/wcag.php:805 -#: includes/wcag.php:839 -#: includes/wcag.php:873 -#: includes/wcag.php:892 -#: includes/wcag.php:919 -#: includes/wcag.php:953 -#: includes/wcag.php:987 -#: includes/wcag.php:1006 -#: includes/wcag.php:1026 -#: includes/wcag.php:1045 -#: includes/wcag.php:1064 -#: includes/wcag.php:1096 -#: includes/wcag.php:1113 -#: includes/wcag.php:1130 -#: includes/wcag.php:1163 -#: includes/wcag.php:1182 -#: includes/wcag.php:1199 -#: includes/wcag.php:1216 -#: includes/wcag.php:1233 -#: includes/wcag.php:1267 -#: includes/wcag.php:1301 -#: includes/wcag.php:1334 -#: includes/wcag.php:1368 -#: includes/wcag.php:1402 -#: includes/wcag.php:1436 -#: includes/wcag.php:1454 -#: includes/wcag.php:1472 -#: includes/wcag.php:1501 -#: includes/wcag.php:1531 -#: includes/wcag.php:1558 -#: includes/wcag.php:1585 -#: includes/wcag.php:1605 -#: includes/wcag.php:1622 -#: includes/wcag.php:1639 +#: includes/wcag.php:809 +#: includes/wcag.php:843 +#: includes/wcag.php:877 +#: includes/wcag.php:896 +#: includes/wcag.php:923 +#: includes/wcag.php:957 +#: includes/wcag.php:991 +#: includes/wcag.php:1010 +#: includes/wcag.php:1030 +#: includes/wcag.php:1049 +#: includes/wcag.php:1068 +#: includes/wcag.php:1100 +#: includes/wcag.php:1117 +#: includes/wcag.php:1134 +#: includes/wcag.php:1167 +#: includes/wcag.php:1186 +#: includes/wcag.php:1203 +#: includes/wcag.php:1220 +#: includes/wcag.php:1237 +#: includes/wcag.php:1271 +#: includes/wcag.php:1305 +#: includes/wcag.php:1338 +#: includes/wcag.php:1372 +#: includes/wcag.php:1406 +#: includes/wcag.php:1440 +#: includes/wcag.php:1458 +#: includes/wcag.php:1476 +#: includes/wcag.php:1505 +#: includes/wcag.php:1535 +#: includes/wcag.php:1562 +#: includes/wcag.php:1589 +#: includes/wcag.php:1609 +#: includes/wcag.php:1626 +#: includes/wcag.php:1643 msgid "Operable" msgstr "Operabil" -#: includes/wcag.php:834 +#: includes/wcag.php:838 msgid "No Keyboard Trap" msgstr "Fără capcană de tastatură" -#: includes/wcag.php:835 +#: includes/wcag.php:839 msgid "Keyboard users can move to and away from all parts of the content without getting stuck." msgstr "Utilizatorii de tastatură se pot deplasa către și de la toate părțile conținutului fără a rămâne blocați." -#: includes/wcag.php:868 +#: includes/wcag.php:872 msgid "Keyboard (No Exception)" msgstr "Tastatură (fără excepție)" -#: includes/wcag.php:869 +#: includes/wcag.php:873 msgid "All functionality is available from a keyboard interface, with no exceptions." msgstr "Toate funcționalitățile sunt disponibile de la o interfață de tastatură, fără excepții." -#: includes/wcag.php:887 +#: includes/wcag.php:891 msgid "Character Key Shortcuts" msgstr "Scurtături de taste cu caractere" -#: includes/wcag.php:888 +#: includes/wcag.php:892 msgid "If a keyboard shortcut uses only letters, numbers, or punctuation, users can turn it off, change it, or it only works when the element has focus." msgstr "Dacă o scurtătură de tastatură folosește doar litere, numere sau semne de punctuație, utilizatorii o pot dezactiva, schimba sau funcționează doar când elementul are focus." -#: includes/wcag.php:914 +#: includes/wcag.php:918 msgid "Timing Adjustable" msgstr "Timp ajustabil" -#: includes/wcag.php:915 +#: includes/wcag.php:919 msgid "If a time limit is set, users can turn it off, adjust it, or extend it unless the time limit is essential." msgstr "Dacă este setat un timp limită, utilizatorii îl pot dezactiva, ajusta sau extinde, cu excepția cazului în care limita de timp este esențială." -#: includes/wcag.php:918 -#: includes/wcag.php:952 -#: includes/wcag.php:986 -#: includes/wcag.php:1005 -#: includes/wcag.php:1025 -#: includes/wcag.php:1044 +#: includes/wcag.php:922 +#: includes/wcag.php:956 +#: includes/wcag.php:990 +#: includes/wcag.php:1009 +#: includes/wcag.php:1029 +#: includes/wcag.php:1048 msgid "2.2 Enough Time" msgstr "2.2 timp suficient" -#: includes/wcag.php:921 -#: includes/wcag.php:989 -#: includes/wcag.php:1008 -#: includes/wcag.php:1028 -#: includes/wcag.php:1047 +#: includes/wcag.php:925 +#: includes/wcag.php:993 +#: includes/wcag.php:1012 +#: includes/wcag.php:1032 +#: includes/wcag.php:1051 msgid "People who need more time to react" msgstr "Persoane care au nevoie de mai mult timp pentru a reacționa" -#: includes/wcag.php:948 +#: includes/wcag.php:952 msgid "Pause, Stop, Hide" msgstr "Pauză, oprire, ascundere" -#: includes/wcag.php:949 +#: includes/wcag.php:953 msgid "Users can pause, stop, or hide moving, blinking, scrolling, or auto-updating information that starts automatically and lasts more than five seconds." msgstr "Utilizatorii pot pune pauză, opri sau ascunde informațiile în mișcare, care clipesc, se derulează sau se actualizează automat și care încep automat și durează mai mult de cinci secunde." -#: includes/wcag.php:982 +#: includes/wcag.php:986 msgid "No Timing" msgstr "Fără temporizare" -#: includes/wcag.php:983 +#: includes/wcag.php:987 msgid "If an element requires a response in a specific time, users can turn off the timer, adjust the time limit, or the timing is not essential." msgstr "Dacă un element necesită un răspuns într-un timp specific, utilizatorii pot dezactiva temporizatorul, ajusta limita de timp sau temporizarea nu este esențială." -#: includes/wcag.php:1001 +#: includes/wcag.php:1005 msgid "Interruptions" msgstr "Întreruperi" -#: includes/wcag.php:1002 +#: includes/wcag.php:1006 msgid "Users are not interrupted by unexpected changes in content, and can control interruptions such as auto-updating content." msgstr "Utilizatorii nu sunt întrerupți de schimbări neașteptate în conținut și pot controla întreruperile, cum ar fi conținutul care se actualizează automat." -#: includes/wcag.php:1021 +#: includes/wcag.php:1025 msgid "Re-authenticating" msgstr "Re-autentificare" -#: includes/wcag.php:1022 +#: includes/wcag.php:1026 msgid "If users are logged out due to inactivity, they are notified before the session expires and can continue the session without losing data." msgstr "Dacă utilizatorii sunt deconectați din cauza inactivității, sunt notificați înainte ca sesiunea să expire și pot continua sesiunea fără a pierde date." -#: includes/wcag.php:1040 +#: includes/wcag.php:1044 msgid "Timeouts" msgstr "Expirări de sesiune" -#: includes/wcag.php:1041 +#: includes/wcag.php:1045 msgid "Users are warned of impending timeouts and can request more time or save their work before timing out." msgstr "Utilizatorii sunt avertizați cu privire la expirările de sesiune iminente și pot solicita mai mult timp sau își pot salva munca înainte de expirarea sesiunii." -#: includes/wcag.php:1059 +#: includes/wcag.php:1063 msgid "Three Flashes or Below Threshold" msgstr "Trei flash-uri sau sub prag" -#: includes/wcag.php:1060 +#: includes/wcag.php:1064 msgid "Content does not flash more than three times in any one second period, reducing the risk of seizures for people with photosensitive epilepsy." msgstr "Conținutul nu clipește mai mult de trei ori în orice perioadă de o secundă, reducând riscul de convulsii pentru persoanele cu epilepsie fotosensibilă." -#: includes/wcag.php:1063 -#: includes/wcag.php:1095 -#: includes/wcag.php:1112 +#: includes/wcag.php:1067 +#: includes/wcag.php:1099 +#: includes/wcag.php:1116 msgid "2.3 Seizures and Physical Reactions" msgstr "2.3 convulsii și reacții fizice" -#: includes/wcag.php:1066 -#: includes/wcag.php:1098 +#: includes/wcag.php:1070 +#: includes/wcag.php:1102 msgid "People with photosensitive epilepsy and other photosensitive seizure disorders" msgstr "Persoane cu epilepsie fotosensibilă și alte tulburări de convulsii fotosensibile" -#: includes/wcag.php:1091 +#: includes/wcag.php:1095 msgid "Three Flashes" msgstr "Trei flash-uri" -#: includes/wcag.php:1092 +#: includes/wcag.php:1096 msgid "No part of the content flashes more than three times per second, with no exceptions." msgstr "Nicio parte a conținutului nu clipește mai mult de trei ori pe secundă, fără excepții." -#: includes/wcag.php:1108 +#: includes/wcag.php:1112 msgid "Animation from Interactions" msgstr "Animație din interacțiuni" -#: includes/wcag.php:1109 +#: includes/wcag.php:1113 msgid "Users can turn off non-essential animations triggered by interactions, helping those who are sensitive to motion." msgstr "Utilizatorii pot dezactiva animațiile non-esențiale declanșate de interacțiuni, ajutând persoanele sensibile la mișcare." -#: includes/wcag.php:1115 +#: includes/wcag.php:1119 msgid "People with vestibular (inner ear) disorders where movement can cause dizziness/headaches and nausea" msgstr "Persoane cu tulburări vestibulare (urechea internă) unde mișcarea poate provoca amețeli/dureri de cap și greață" -#: includes/wcag.php:1125 +#: includes/wcag.php:1129 msgid "Bypass Blocks" msgstr "Ocolire blocuri" -#: includes/wcag.php:1126 +#: includes/wcag.php:1130 msgid "A way is available to skip repeated blocks of content, such as navigation menus, so users can quickly reach the main content." msgstr "Este disponibilă o modalitate de a sări peste blocurile repetate de conținut, cum ar fi meniurile de navigare, astfel încât utilizatorii să poată ajunge rapid la conținutul principal." -#: includes/wcag.php:1129 -#: includes/wcag.php:1162 -#: includes/wcag.php:1181 -#: includes/wcag.php:1198 -#: includes/wcag.php:1215 -#: includes/wcag.php:1232 -#: includes/wcag.php:1266 -#: includes/wcag.php:1300 -#: includes/wcag.php:1333 -#: includes/wcag.php:1367 -#: includes/wcag.php:1401 -#: includes/wcag.php:1435 -#: includes/wcag.php:1453 +#: includes/wcag.php:1133 +#: includes/wcag.php:1166 +#: includes/wcag.php:1185 +#: includes/wcag.php:1202 +#: includes/wcag.php:1219 +#: includes/wcag.php:1236 +#: includes/wcag.php:1270 +#: includes/wcag.php:1304 +#: includes/wcag.php:1337 +#: includes/wcag.php:1371 +#: includes/wcag.php:1405 +#: includes/wcag.php:1439 +#: includes/wcag.php:1457 msgid "2.4 Navigable" msgstr "2.4 navigabil" -#: includes/wcag.php:1158 +#: includes/wcag.php:1162 msgid "Section Headings" msgstr "Titluri de secțiune" -#: includes/wcag.php:1159 +#: includes/wcag.php:1163 msgid "Section headings are used to organize content, making it easier to understand and navigate." msgstr "Titlurile de secțiune sunt folosite pentru a organiza conținutul, făcându-l mai ușor de înțeles și de navigat." -#: includes/wcag.php:1177 +#: includes/wcag.php:1181 msgid "Focus Not Obscured (Minimum)" msgstr "Focus neobscurizat (minim)" -#: includes/wcag.php:1178 +#: includes/wcag.php:1182 msgid "When an element receives keyboard focus, it is at least partially visible and not hidden by other content." msgstr "Când un element primește focus de la tastatură, acesta este cel puțin parțial vizibil și nu este ascuns de alt conținut." -#: includes/wcag.php:1194 +#: includes/wcag.php:1198 msgid "Focus Not Obscured (Enhanced)" msgstr "Focus neobscurizat (îmbunătățit)" -#: includes/wcag.php:1195 +#: includes/wcag.php:1199 msgid "When an element receives keyboard focus, it is fully visible and not hidden by other content." msgstr "Când un element primește focus de la tastatură, acesta este complet vizibil și nu este ascuns de alt conținut." -#: includes/wcag.php:1211 +#: includes/wcag.php:1215 msgid "Focus Appearance" msgstr "Aspect focus" -#: includes/wcag.php:1212 +#: includes/wcag.php:1216 msgid "The visible focus indicator for interactive elements is clearly visible and meets minimum size and contrast requirements." msgstr "Indicatorul vizibil de focus pentru elementele interactive este clar vizibil și îndeplinește cerințele minime de dimensiune și contrast." -#: includes/wcag.php:1228 +#: includes/wcag.php:1232 msgid "Page Titled" msgstr "Pagină intitulată" -#: includes/wcag.php:1229 +#: includes/wcag.php:1233 msgid "Web pages have descriptive titles that help users understand the topic or purpose of the page." msgstr "Paginile web au titluri descriptive care ajută utilizatorii să înțeleagă subiectul sau scopul paginii." -#: includes/wcag.php:1236 -#: includes/wcag.php:2149 +#: includes/wcag.php:1240 +#: includes/wcag.php:2153 msgid "People with severe mobility impairments relying on audio to navigate the web" msgstr "Persoanele cu deficiențe severe de mobilitate care se bazează pe audio pentru a naviga pe web" -#: includes/wcag.php:1262 +#: includes/wcag.php:1266 msgid "Focus Order" msgstr "Ordinea focalizării" -#: includes/wcag.php:1263 +#: includes/wcag.php:1267 msgid "When navigating with a keyboard, focus moves in a logical order that preserves meaning and operability." msgstr "Când se navighează cu o tastatură, focalizarea se mută într-o ordine logică care păstrează sensul și funcționalitatea." -#: includes/wcag.php:1296 +#: includes/wcag.php:1300 msgid "Link Purpose (In Context)" msgstr "Scopul linkului (în context)" -#: includes/wcag.php:1297 +#: includes/wcag.php:1301 msgid "The purpose of each link is clear from the link text and the context in which it appears, so users know where the link will take them." msgstr "Scopul fiecărui link este clar din textul linkului și din contextul în care apare, astfel încât utilizatorii să știe unde îi va duce linkul." -#: includes/wcag.php:1329 +#: includes/wcag.php:1333 msgid "Multiple Ways" msgstr "Mai multe modalități" -#: includes/wcag.php:1330 +#: includes/wcag.php:1334 msgid "More than one way is available to locate a web page within a set of web pages, except where the web page is the result of a query." msgstr "Există mai mult de o modalitate de a localiza o pagină web într-un set de pagini web, cu excepția cazului în care pagina web este rezultatul unei interogări." -#: includes/wcag.php:1363 +#: includes/wcag.php:1367 msgid "Headings and Labels" msgstr "Titluri și etichete" -#: includes/wcag.php:1364 +#: includes/wcag.php:1368 msgid "Headings and labels describe the topic or purpose of content, and are not ambiguous or misleading." msgstr "Titlurile și etichetele descriu subiectul sau scopul conținutului și nu sunt ambigue sau înșelătoare." -#: includes/wcag.php:1397 +#: includes/wcag.php:1401 msgid "Focus Visible" msgstr "Focalizare vizibilă" -#: includes/wcag.php:1398 +#: includes/wcag.php:1402 msgid "It is visible when an element has keyboard focus, so users navigating with a keyboard can see which element is active." msgstr "Este vizibil când un element are focalizarea tastaturii, astfel încât utilizatorii care navighează cu o tastatură pot vedea care element este activ." -#: includes/wcag.php:1431 +#: includes/wcag.php:1435 msgid "Location" msgstr "Locație" -#: includes/wcag.php:1432 +#: includes/wcag.php:1436 msgid "Users are informed about their location within a set of web pages, such as through breadcrumb navigation or a clear page title." msgstr "Utilizatorii sunt informați despre locația lor într-un set de pagini web, cum ar fi prin navigarea cu breadcrumb sau un titlu clar al paginii." -#: includes/wcag.php:1449 +#: includes/wcag.php:1453 msgid "Link Purpose (Link Only)" msgstr "Scopul linkului (doar link)" -#: includes/wcag.php:1450 +#: includes/wcag.php:1454 msgid "The purpose of each link can be determined by the link text alone, without needing additional context." msgstr "Scopul fiecărui link poate fi determinat doar din textul linkului, fără a fi nevoie de context suplimentar." -#: includes/wcag.php:1467 +#: includes/wcag.php:1471 msgid "Pointer Gestures" msgstr "Gesturi cu pointer" -#: includes/wcag.php:1468 +#: includes/wcag.php:1472 msgid "For functionality that can be operated by a pointer gesture, at least one of the following is true: the gesture can be performed by a simple tap, the gesture can be performed with a single finger, or the gesture can be performed with a voice command." msgstr "Pentru funcționalitățile care pot fi operate printr-un gest cu pointer, cel puțin una dintre următoarele este adevărată: gestul poate fi efectuat printr-o simplă atingere, gestul poate fi efectuat cu un singur deget sau gestul poate fi efectuat cu o comandă vocală." -#: includes/wcag.php:1471 -#: includes/wcag.php:1500 -#: includes/wcag.php:1530 -#: includes/wcag.php:1557 -#: includes/wcag.php:1584 -#: includes/wcag.php:1604 -#: includes/wcag.php:1621 -#: includes/wcag.php:1638 +#: includes/wcag.php:1475 +#: includes/wcag.php:1504 +#: includes/wcag.php:1534 +#: includes/wcag.php:1561 +#: includes/wcag.php:1588 +#: includes/wcag.php:1608 +#: includes/wcag.php:1625 +#: includes/wcag.php:1642 msgid "2.5 Input Modalities" msgstr "2.5 modalități de intrare" -#: includes/wcag.php:1496 +#: includes/wcag.php:1500 msgid "Pointer Cancellation" msgstr "Anularea pointerului" -#: includes/wcag.php:1497 +#: includes/wcag.php:1501 msgid "For actions that require a pointer gesture, the user can cancel the action by moving the pointer away before the action is completed." msgstr "Pentru acțiunile care necesită un gest cu pointer, utilizatorul poate anula acțiunea deplasând pointerul înainte ca acțiunea să fie finalizată." -#: includes/wcag.php:1526 +#: includes/wcag.php:1530 msgid "Label in Name" msgstr "Etichetă în nume" -#: includes/wcag.php:1527 +#: includes/wcag.php:1531 msgid "The name of user interface components includes text labels that describe their purpose, so assistive technologies can convey this information to users." msgstr "Numele componentelor interfeței utilizator include etichete text care descriu scopul lor, astfel încât tehnologiile de asistență pot transmite aceste informații utilizatorilor." -#: includes/wcag.php:1553 +#: includes/wcag.php:1557 msgid "Motion Actuation" msgstr "Acționare prin mișcare" -#: includes/wcag.php:1554 +#: includes/wcag.php:1558 msgid "Functionality that can be operated by a motion gesture can also be operated by a simple touch or click, so users who cannot perform motion gestures can still use the functionality." msgstr "Funcționalitatea care poate fi operată printr-un gest de mișcare poate fi, de asemenea, operată printr-o atingere simplă sau un clic, astfel încât utilizatorii care nu pot efectua gesturi de mișcare pot utiliza în continuare funcționalitatea." -#: includes/wcag.php:1580 +#: includes/wcag.php:1584 msgid "Target Size" msgstr "Dimensiunea țintei" -#: includes/wcag.php:1581 +#: includes/wcag.php:1585 msgid "The size of the target for pointer gestures is large enough to be easily activated, even by users with limited dexterity." msgstr "Dimensiunea țintei pentru gesturile cu pointer este suficient de mare pentru a fi activată cu ușurință, chiar și de utilizatorii cu dexteritate limitată." -#: includes/wcag.php:1587 +#: includes/wcag.php:1591 msgid "People using a mobile device in environments where they are exposed to shaking (such as public transportation)" msgstr "Persoanele care folosesc un dispozitiv mobil în medii în care sunt expuse la vibrații (cum ar fi transportul public)" -#: includes/wcag.php:1588 +#: includes/wcag.php:1592 msgid "People with dexterity and mobility impairments including hand tremors" msgstr "Persoanele cu deficiențe de dexteritate și mobilitate, inclusiv tremurături ale mâinilor" -#: includes/wcag.php:1590 -#: includes/wcag.php:1644 +#: includes/wcag.php:1594 +#: includes/wcag.php:1648 msgid "People with with large fingers or who are operating the device with only a part of their finger or knuckle" msgstr "Persoanele cu degete mari sau care operează dispozitivul doar cu o parte a degetului sau cu articulația" -#: includes/wcag.php:1600 +#: includes/wcag.php:1604 msgid "Concurrent Input Mechanisms" msgstr "Mecanisme de intrare concurente" -#: includes/wcag.php:1601 +#: includes/wcag.php:1605 msgid "If an input mechanism requires a specific posture or movement, an alternative input mechanism is available that does not have the same requirement." msgstr "Dacă un mecanism de intrare necesită o postură sau o mișcare specifică, este disponibil un mecanism de intrare alternativ care nu are aceeași cerință." -#: includes/wcag.php:1617 +#: includes/wcag.php:1621 msgid "Dragging Movements" msgstr "Mișcări de tragere" -#: includes/wcag.php:1618 +#: includes/wcag.php:1622 msgid "For functionality that requires dragging movements, the action can also be completed by simpler actions, so users with limited dexterity can still use the functionality." msgstr "Pentru funcționalitățile care necesită mișcări de tragere, acțiunea poate fi completată și prin acțiuni mai simple, astfel încât utilizatorii cu dexteritate limitată pot utiliza în continuare funcționalitatea." -#: includes/wcag.php:1634 +#: includes/wcag.php:1638 msgid "Target Size (Minimum)" msgstr "Dimensiunea țintei (minimă)" -#: includes/wcag.php:1635 +#: includes/wcag.php:1639 msgid "The target size for any interactive element is at least 44x44 pixels, so it can be easily activated by users with various abilities." msgstr "Dimensiunea țintei pentru orice element interactiv este de cel puțin 44x44 pixeli, astfel încât să poată fi activat cu ușurință de utilizatori cu diverse abilități." -#: includes/wcag.php:1654 +#: includes/wcag.php:1658 msgid "Language of Page" msgstr "Limba paginii" -#: includes/wcag.php:1655 +#: includes/wcag.php:1659 msgid "The default language of each web page is programmatically determined, so assistive technologies can use the correct language settings." msgstr "Limba implicită a fiecărei pagini web este determinată programatic, astfel încât tehnologiile de asistență pot utiliza setările corecte de limbă." -#: includes/wcag.php:1658 -#: includes/wcag.php:1692 -#: includes/wcag.php:1724 -#: includes/wcag.php:1744 -#: includes/wcag.php:1763 -#: includes/wcag.php:1782 +#: includes/wcag.php:1662 +#: includes/wcag.php:1696 +#: includes/wcag.php:1728 +#: includes/wcag.php:1748 +#: includes/wcag.php:1767 +#: includes/wcag.php:1786 msgid "3.1 Readable" msgstr "3.1 lizibil" -#: includes/wcag.php:1659 -#: includes/wcag.php:1693 -#: includes/wcag.php:1725 -#: includes/wcag.php:1745 -#: includes/wcag.php:1764 -#: includes/wcag.php:1783 -#: includes/wcag.php:1802 -#: includes/wcag.php:1837 -#: includes/wcag.php:1873 -#: includes/wcag.php:1904 -#: includes/wcag.php:1935 -#: includes/wcag.php:1955 -#: includes/wcag.php:1972 -#: includes/wcag.php:2006 -#: includes/wcag.php:2040 -#: includes/wcag.php:2074 -#: includes/wcag.php:2108 -#: includes/wcag.php:2127 -#: includes/wcag.php:2146 -#: includes/wcag.php:2164 -#: includes/wcag.php:2181 +#: includes/wcag.php:1663 +#: includes/wcag.php:1697 +#: includes/wcag.php:1729 +#: includes/wcag.php:1749 +#: includes/wcag.php:1768 +#: includes/wcag.php:1787 +#: includes/wcag.php:1806 +#: includes/wcag.php:1841 +#: includes/wcag.php:1877 +#: includes/wcag.php:1908 +#: includes/wcag.php:1939 +#: includes/wcag.php:1959 +#: includes/wcag.php:1976 +#: includes/wcag.php:2010 +#: includes/wcag.php:2044 +#: includes/wcag.php:2078 +#: includes/wcag.php:2112 +#: includes/wcag.php:2131 +#: includes/wcag.php:2150 +#: includes/wcag.php:2168 +#: includes/wcag.php:2185 msgid "Understandable" msgstr "Ușor de înțeles" -#: includes/wcag.php:1688 +#: includes/wcag.php:1692 msgid "Language of Parts" msgstr "Limba părților" -#: includes/wcag.php:1689 +#: includes/wcag.php:1693 msgid "The language of each part of the content can be programmatically determined, so assistive technologies can provide appropriate language support." msgstr "Limba fiecărei părți a conținutului poate fi determinată programatic, astfel încât tehnologiile de asistență pot oferi suport lingvistic adecvat." -#: includes/wcag.php:1720 +#: includes/wcag.php:1724 msgid "Unusual Words" msgstr "Cuvinte neobișnuite" -#: includes/wcag.php:1721 +#: includes/wcag.php:1725 msgid "Unusual or rare words are defined or explained, so users with cognitive disabilities or who are not familiar with the language can understand them." msgstr "Cuvintele neobișnuite sau rare sunt definite sau explicate, astfel încât utilizatorii cu dizabilități cognitive sau care nu sunt familiarizați cu limba să le poată înțelege." -#: includes/wcag.php:1740 +#: includes/wcag.php:1744 msgid "Abbreviations" msgstr "Abrevieri" -#: includes/wcag.php:1741 +#: includes/wcag.php:1745 msgid "Abbreviations and acronyms are defined the first time they are used, so users can understand their meaning." msgstr "Abrevierile și acronimele sunt definite prima dată când sunt folosite, astfel încât utilizatorii să poată înțelege semnificația lor." -#: includes/wcag.php:1759 -msgid "Reading Level" -msgstr "Nivel de citire" - -#: includes/wcag.php:1760 +#: includes/wcag.php:1764 msgid "Content is written in a clear and simple language, and does not require specialized knowledge to understand." msgstr "Conținutul este scris într-un limbaj clar și simplu și nu necesită cunoștințe specializate pentru a fi înțeles." -#: includes/wcag.php:1778 +#: includes/wcag.php:1782 msgid "Pronunciation" msgstr "Pronunție" -#: includes/wcag.php:1779 +#: includes/wcag.php:1783 msgid "A pronunciation guide is available for unusual or difficult words, so users can understand how to say them." msgstr "Este disponibil un ghid de pronunție pentru cuvintele neobișnuite sau dificile, astfel încât utilizatorii să poată înțelege cum să le pronunțe." -#: includes/wcag.php:1797 +#: includes/wcag.php:1801 msgid "On Focus" msgstr "La focalizare" -#: includes/wcag.php:1798 +#: includes/wcag.php:1802 msgid "When an element receives focus, it does not cause unexpected changes that could confuse the user, and it is clear how to interact with the element." msgstr "Când un element primește focalizarea, nu provoacă schimbări neașteptate care ar putea confuza utilizatorul și este clar cum să interacționeze cu elementul." -#: includes/wcag.php:1801 -#: includes/wcag.php:1836 -#: includes/wcag.php:1872 -#: includes/wcag.php:1903 -#: includes/wcag.php:1934 -#: includes/wcag.php:1954 +#: includes/wcag.php:1805 +#: includes/wcag.php:1840 +#: includes/wcag.php:1876 +#: includes/wcag.php:1907 +#: includes/wcag.php:1938 +#: includes/wcag.php:1958 msgid "3.2 Predictable" msgstr "3.2 previzibil" -#: includes/wcag.php:1832 +#: includes/wcag.php:1836 msgid "On Input" msgstr "La introducere" -#: includes/wcag.php:1833 +#: includes/wcag.php:1837 msgid "When an input field receives data, it does not cause unexpected changes that could confuse the user, and it is clear how the data will be used." msgstr "Când un câmp de introducere primește date, nu provoacă modificări neașteptate care ar putea deruta utilizatorul și este clar cum vor fi folosite datele." -#: includes/wcag.php:1868 +#: includes/wcag.php:1872 msgid "Consistent Navigation" msgstr "Navigare consecventă" -#: includes/wcag.php:1869 +#: includes/wcag.php:1873 msgid "Navigation mechanisms are consistent across the website, so users can predictably move through the site." msgstr "Mecanismele de navigare sunt consecvente pe tot site-ul web, astfel încât utilizatorii să se poată deplasa previzibil prin site." -#: includes/wcag.php:1899 +#: includes/wcag.php:1903 msgid "Consistent Identification" msgstr "Identificare consecventă" -#: includes/wcag.php:1900 +#: includes/wcag.php:1904 msgid "Components that have the same functionality within a set of web pages are identified consistently, so users can recognize them easily." msgstr "Componentele care au aceeași funcționalitate într-un set de pagini web sunt identificate în mod consecvent, astfel încât utilizatorii să le poată recunoaște cu ușurință." -#: includes/wcag.php:1930 +#: includes/wcag.php:1934 msgid "Change on Request" msgstr "Schimbare la cerere" -#: includes/wcag.php:1931 +#: includes/wcag.php:1935 msgid "Changes in content or context that occur as a result of user input do not occur unexpectedly, and users are notified of any changes." msgstr "Schimbările în conținut sau context care apar ca rezultat al introducerii de date de către utilizator nu se produc în mod neașteptat, iar utilizatorii sunt notificați despre orice schimbări." -#: includes/wcag.php:1950 +#: includes/wcag.php:1954 msgid "Consistent Help" msgstr "Ajutor consecvent" -#: includes/wcag.php:1951 -#: includes/wcag.php:2104 +#: includes/wcag.php:1955 +#: includes/wcag.php:2108 msgid "Help and documentation are available and are easy to find, so users can get assistance when needed." msgstr "Ajutorul și documentația sunt disponibile și ușor de găsit, astfel încât utilizatorii să poată obține asistență atunci când au nevoie." -#: includes/wcag.php:1967 +#: includes/wcag.php:1971 msgid "Error Identification" msgstr "Identificarea erorilor" -#: includes/wcag.php:1968 -#: includes/wcag.php:2036 +#: includes/wcag.php:1972 +#: includes/wcag.php:2040 msgid "If an input error is detected and suggestions for correction are known, then the suggestions are provided to the user." msgstr "Dacă se detectează o eroare de introducere și se cunosc sugestii pentru corectare, atunci sugestiile sunt furnizate utilizatorului." -#: includes/wcag.php:1971 -#: includes/wcag.php:2005 -#: includes/wcag.php:2039 -#: includes/wcag.php:2073 -#: includes/wcag.php:2107 -#: includes/wcag.php:2126 -#: includes/wcag.php:2145 -#: includes/wcag.php:2163 -#: includes/wcag.php:2180 +#: includes/wcag.php:1975 +#: includes/wcag.php:2009 +#: includes/wcag.php:2043 +#: includes/wcag.php:2077 +#: includes/wcag.php:2111 +#: includes/wcag.php:2130 +#: includes/wcag.php:2149 +#: includes/wcag.php:2167 +#: includes/wcag.php:2184 msgid "3.3 Input Assistance" msgstr "3.3 asistență la introducere" -#: includes/wcag.php:2001 +#: includes/wcag.php:2005 msgid "Labels or Instructions" msgstr "Etichete sau instrucțiuni" -#: includes/wcag.php:2002 +#: includes/wcag.php:2006 msgid "Labels or instructions are provided when an input field requires user input, so users know what information is needed." msgstr "Se furnizează etichete sau instrucțiuni atunci când un câmp de introducere necesită date de la utilizator, astfel încât utilizatorii să știe ce informații sunt necesare." -#: includes/wcag.php:2035 +#: includes/wcag.php:2039 msgid "Error Suggestion" msgstr "Sugestie de eroare" -#: includes/wcag.php:2069 +#: includes/wcag.php:2073 msgid "Error Prevention (Legal, Financial, Data)" msgstr "Prevenirea erorilor (juridice, financiare, date)" -#: includes/wcag.php:2070 -#: includes/wcag.php:2123 +#: includes/wcag.php:2074 +#: includes/wcag.php:2127 msgid "For web pages that require user input, users are warned of errors and can correct them before finalizing the submission." msgstr "Pentru paginile web care necesită introducerea de date de către utilizator, utilizatorii sunt avertizați despre erori și le pot corecta înainte de a finaliza trimiterea." -#: includes/wcag.php:2103 +#: includes/wcag.php:2107 msgid "Help" msgstr "Ajutor" -#: includes/wcag.php:2122 +#: includes/wcag.php:2126 msgid "Error Prevention (All)" msgstr "Prevenirea erorilor (toate)" -#: includes/wcag.php:2141 +#: includes/wcag.php:2145 msgid "Redundant Entry" msgstr "Introducere redundantă" -#: includes/wcag.php:2142 +#: includes/wcag.php:2146 msgid "Users are not required to enter the same information multiple times, reducing the risk of errors and saving time." msgstr "Utilizatorii nu sunt obligați să introducă aceleași informații de mai multe ori, reducând riscul de erori și economisind timp." -#: includes/wcag.php:2159 +#: includes/wcag.php:2163 msgid "Accessible Authentication (Minimum)" msgstr "Autentificare accesibilă (minimă)" -#: includes/wcag.php:2160 +#: includes/wcag.php:2164 msgid "Authentication processes do not rely on cognitive function tests like remembering a password or solving a puzzle, unless an alternative is provided." msgstr "Procesele de autentificare nu se bazează pe teste de funcție cognitivă, cum ar fi memorarea unei parole sau rezolvarea unui puzzle, cu excepția cazului în care este oferită o alternativă." -#: includes/wcag.php:2176 +#: includes/wcag.php:2180 msgid "Accessible Authentication (Enhanced)" msgstr "Autentificare accesibilă (îmbunătățită)" -#: includes/wcag.php:2177 +#: includes/wcag.php:2181 msgid "Enhanced authentication methods are provided that do not rely on cognitive function tests, such as remembering passwords, and do not require a test of cognitive function." msgstr "Sunt furnizate metode de autentificare îmbunătățite care nu se bazează pe teste de funcție cognitivă, cum ar fi memorarea parolelor, și nu necesită un test de funcție cognitivă." -#: includes/wcag.php:2193 +#: includes/wcag.php:2197 msgid "Parsing" msgstr "Analiză" -#: includes/wcag.php:2194 +#: includes/wcag.php:2198 msgid "Content is coded so that assistive technologies can accurately interpret and present it to users." msgstr "Conținutul este codat astfel încât tehnologiile de asistare să îl poată interpreta și prezenta cu acuratețe utilizatorilor." - -#: includes/wcag.php:2197 -#: includes/wcag.php:2231 -#: includes/wcag.php:2264 + +#: includes/wcag.php:2201 +#: includes/wcag.php:2235 +#: includes/wcag.php:2268 msgid "4.1 Compatible" msgstr "4.1 compatibil" -#: includes/wcag.php:2198 -#: includes/wcag.php:2232 -#: includes/wcag.php:2265 +#: includes/wcag.php:2202 +#: includes/wcag.php:2236 +#: includes/wcag.php:2269 msgid "Robust" msgstr "Robust" -#: includes/wcag.php:2201 -#: includes/wcag.php:2235 +#: includes/wcag.php:2205 +#: includes/wcag.php:2239 msgid "People with low vision using screen magnifiers" msgstr "Persoane cu vedere slabă care folosesc lupe de ecran" -#: includes/wcag.php:2227 +#: includes/wcag.php:2231 msgid "Name, Role, Value" msgstr "Nume, rol, valoare" -#: includes/wcag.php:2228 +#: includes/wcag.php:2232 msgid "User interface components have names, roles, and values that can be programmatically determined, so assistive technologies can communicate them to users." msgstr "Componentele interfeței utilizator au nume, roluri și valori care pot fi determinate programatic, astfel încât tehnologiile de asistare să le poată comunica utilizatorilor." -#: includes/wcag.php:2260 +#: includes/wcag.php:2264 msgid "Status Messages" msgstr "Mesaje de stare" -#: includes/wcag.php:2261 +#: includes/wcag.php:2265 msgid "Status messages are programmatically determined so that assistive technologies can notify users of important changes, such as form errors or updates." msgstr "Mesajele de stare sunt determinate programatic, astfel încât tehnologiile de asistare să poată notifica utilizatorii despre schimbări importante, cum ar fi erorile de formular sau actualizările." -#: includes/wcag.php:2286 +#: includes/wcag.php:2290 msgid "Best Practice" msgstr "Cea mai bună practică" -#: includes/wcag.php:2287 +#: includes/wcag.php:2291 msgid "A usability improvement or convention that enhances accessibility but is not required for WCAG compliance." msgstr "O îmbunătățire a utilizabilității sau o convenție care sporește accesibilitatea, dar nu este necesară pentru conformitatea WCAG." -#: includes/wcag.php:2301 +#: includes/wcag.php:2305 msgid "Non-WCAG Accessibility Issue" msgstr "Problemă de accesibilitate non-WCAG" -#: includes/wcag.php:2302 +#: includes/wcag.php:2306 msgid "A problem that affects users with disabilities but doesn't map directly to a current WCAG success criterion." msgstr "O problemă care afectează utilizatorii cu dizabilități, dar nu se potrivește direct cu un criteriu de succes WCAG actual." -#: includes/wcag.php:2316 +#: includes/wcag.php:2320 msgid "Manual Testing Needed (Multiple Success Criteria)" msgstr "Testare manuală necesară (criterii multiple de succes)" -#: includes/wcag.php:2317 +#: includes/wcag.php:2321 msgid "Used for documents, media, and other non-scannable content that require manual testing and are likely to fail multiple WCAG success criteria." msgstr "Folosit pentru documente, media și alt conținut care nu poate fi scanat și care necesită testare manuală și este probabil să nu îndeplinească mai multe criterii de succes WCAG." -#: partials/admin-page/fixes-page.php:14 +#: partials/admin-page/fixes-page.php:18 msgid "Settings Saved. To confirm and reflect these updates in your site's statistics, please rescan your site. If you are using a caching plugin, make sure to clear the cache to ensure the updated fixes are applied correctly." msgstr "Setări salvate. Pentru a confirma și reflecta aceste actualizări în statisticile site-ului dvs., vă rugăm să rescanați site-ul. Dacă utilizați un plugin de caching, asigurați-vă că ștergeți cache-ul pentru a vă asigura că modificările actualizate sunt aplicate corect." -#: partials/admin-page/fixes-page.php:22 +#: partials/admin-page/fixes-page.php:26 msgid "The Accessibility New Window Warnings plugin is installed. The fix for links opening in a new window included here will override its functionality. You can safely remove the plugin and use these fixes instead." msgstr "Pluginul Accessibility New Window Warnings este instalat. Corecția pentru linkurile care se deschid într-o fereastră nouă, inclusă aici, va suprascrie funcționalitatea acestuia. Puteți elimina în siguranță pluginul și utiliza în schimb aceste corecții." -#: partials/custom-meta-box.php:10 +#: partials/custom-meta-box.php:17 msgid "Accessibility Checker issues panels" msgstr "Panouri de probleme Accessibility Checker" -#: partials/custom-meta-box.php:21 -msgid "Summary" -msgstr "Rezumat" +#: partials/custom-meta-box.php:28 +#: build/sidebar.bundle.js:2 +msgid "Accessibility Status" +msgstr "Stare accesibilitate" -#: partials/custom-meta-box.php:31 -msgid "Details" -msgstr "Detalii" +#: partials/custom-meta-box.php:38 +#: build/sidebar.bundle.js:2 +msgid "Accessibility Analysis" +msgstr "Analiza accesibilității" -#: partials/custom-meta-box.php:41 -msgid "Readability" -msgstr "Lizibilitate" +#: partials/custom-meta-box.php:48 +#: build/sidebar.bundle.js:2 +msgid "Readability Analysis" +msgstr "Analiza lizibilității" -#: partials/custom-meta-box.php:50 +#: partials/custom-meta-box.php:57 msgid "Delete all currently found issues" msgstr "Șterge toate problemele găsite în prezent" -#: partials/custom-meta-box.php:52 +#: partials/custom-meta-box.php:59 #: build/editorApp.bundle.js:2 #: build/frontendHighlighterApp.bundle.js:2 +#: build/sidebar.bundle.js:2 msgid "Clear Issues" msgstr "Șterge problemele" -#: partials/pro-callout.php:13 -#: partials/welcome-page.php:199 +#: partials/pro-callout.php:17 +#: partials/welcome-page.php:203 msgid "Equalize Digital Logo" msgstr "Logo-ul Equalize Digital" -#: partials/pro-callout.php:16 -#: partials/welcome-page.php:200 +#: partials/pro-callout.php:20 +#: partials/welcome-page.php:204 msgid "Upgrade to Accessibility Checker Pro" msgstr "Actualizează la Accessibility Checker Pro" -#: partials/pro-callout.php:20 -#: partials/welcome-page.php:203 +#: partials/pro-callout.php:24 +#: partials/welcome-page.php:207 msgid "Scan all post types" msgstr "Scanează toate tipurile de postări" -#: partials/pro-callout.php:21 -#: partials/welcome-page.php:204 +#: partials/pro-callout.php:25 +#: partials/welcome-page.php:208 msgid "Admin columns to see accessibility status at a glance" msgstr "Coloane de administrare pentru a vedea starea de accesibilitate dintr-o privire" -#: partials/pro-callout.php:22 -#: partials/welcome-page.php:205 +#: partials/pro-callout.php:26 +#: partials/welcome-page.php:209 msgid "Centralized list of all open issues" msgstr "Lista centralizată a tuturor problemelor deschise" -#: partials/pro-callout.php:23 -#: partials/welcome-page.php:206 +#: partials/pro-callout.php:27 +#: partials/welcome-page.php:210 msgid "Ignore log" msgstr "Jurnal de ignorare" -#: partials/pro-callout.php:24 -#: partials/welcome-page.php:207 +#: partials/pro-callout.php:28 +#: partials/welcome-page.php:211 msgid "Rename simplified summary" msgstr "Redenumește rezumatul simplificat" -#: partials/pro-callout.php:25 -#: partials/welcome-page.php:208 +#: partials/pro-callout.php:29 +#: partials/welcome-page.php:212 msgid "User restrictions on ignoring issues" msgstr "Restricții pentru utilizatori la ignorarea problemelor" -#: partials/pro-callout.php:26 -#: partials/welcome-page.php:209 +#: partials/pro-callout.php:30 +#: partials/welcome-page.php:213 msgid "Email support" msgstr "Asistență prin e-mail" -#: partials/pro-callout.php:27 -#: partials/welcome-page.php:210 +#: partials/pro-callout.php:31 +#: partials/welcome-page.php:214 msgid "...and more" msgstr "...și multe altele" -#: partials/pro-callout.php:57 -#: partials/welcome-page.php:223 +#: partials/pro-callout.php:61 +#: partials/welcome-page.php:227 msgid "Or activate your license key here." msgstr "Sau activați cheia dvs. de licență aici." -#: partials/settings-page.php:20 +#: partials/settings-page.php:24 msgid "General" msgstr "General" -#: partials/welcome-page.php:31 +#: partials/welcome-page.php:35 msgid "version" msgstr "versiune" -#: partials/welcome-page.php:40 +#: partials/welcome-page.php:44 msgid "Link to Equalize Digital Website" msgstr "Link către site-ul web Equalize Digital" -#: partials/welcome-page.php:49 +#: partials/welcome-page.php:53 msgid "Quick Start Guide" msgstr "Ghid de pornire rapidă" -#: partials/welcome-page.php:50 +#: partials/welcome-page.php:54 msgid "Follow these steps to get started checking your content:" msgstr "Urmați acești pași pentru a începe verificarea conținutului dvs.:" #. translators: %s: path to settings page. -#: partials/welcome-page.php:57 +#: partials/welcome-page.php:61 #, php-format msgid "On the Settings Page, choose which post types you want to scan." msgstr "Pe Pagina de Setări, alegeți ce tipuri de postări doriți să scanați." -#: partials/welcome-page.php:64 +#: partials/welcome-page.php:68 msgid "Go to the edit screen for the post you want to check." msgstr "Mergeți la ecranul de editare pentru postarea pe care doriți să o verificați." -#: partials/welcome-page.php:65 +#: partials/welcome-page.php:69 msgid "Find the Accessibility Checker meta box below your content. If using a front-end page builder, you must visit the backend edit screen to view Accessibility Checker results." msgstr "Găsiți caseta meta Accessibility Checker sub conținutul dvs. Dacă utilizați un constructor de pagini frontend, trebuie să vizitați ecranul de editare backend pentru a vizualiza rezultatele Accessibility Checker." -#: partials/welcome-page.php:66 +#: partials/welcome-page.php:70 msgid "If errors or warnings are present on your post, open the details tab in Accessibility Checker for more information." msgstr "Dacă există erori sau avertismente în postarea ta, deschide fila de detalii în Accessibility Checker pentru mai multe informații." -#: partials/welcome-page.php:67 +#: partials/welcome-page.php:71 msgid "Expand each issue to see the code, or click \"view on page\" if you need help finding the element that needs fixing." msgstr "Extindeți fiecare problemă pentru a vedea codul sau faceți clic pe „vizualizare pe pagină” dacă aveți nevoie de ajutor pentru a găsi elementul care necesită corectare." -#: partials/welcome-page.php:68 +#: partials/welcome-page.php:72 msgid "If you don't know what an error or warning means, click the \"i\" icon to read the documentation and how to fix it." msgstr "Dacă nu știți ce înseamnă o eroare sau un avertisment, faceți clic pe pictograma „i” pentru a citi documentația și cum să o remediați." -#: partials/welcome-page.php:69 +#: partials/welcome-page.php:73 msgid "If an issue is a false positive and the element is accessible, you can remove issues from reports with the \"Ignore\" feature." msgstr "Dacă o problemă este un fals pozitiv și elementul este accesibil, puteți elimina problemele din rapoarte folosind funcția „Ignoră”." -#: partials/welcome-page.php:70 +#: partials/welcome-page.php:74 msgid "After fixing each issue, update the post to see the accessibility report change. Your goal is to get every page to say 100% Passed Tests." msgstr "După corectarea fiecărei probleme, actualizați postarea pentru a vedea schimbarea raportului de accesibilitate. Obiectivul dvs. este ca fiecare pagină să indice 100% Teste Trecute." -#: partials/welcome-page.php:74 +#: partials/welcome-page.php:78 msgid "Watch a video of Accessibility Checker in use." msgstr "Urmărește un video cu Accessibility Checker în acțiune." -#: partials/welcome-page.php:80 +#: partials/welcome-page.php:84 msgid "Documentation and FAQs" msgstr "Documentație și Întrebări Frecvente" -#: partials/welcome-page.php:84 +#: partials/welcome-page.php:88 msgid "Why do we say 100% Passed Tests, Not 100% Accessible?" msgstr "De ce spunem 100% Teste Trecute, Nu 100% Accesibil?" -#: partials/welcome-page.php:84 -#: partials/welcome-page.php:89 -#: partials/welcome-page.php:94 -#: partials/welcome-page.php:99 -#: partials/welcome-page.php:104 -#: partials/welcome-page.php:109 -#: partials/welcome-page.php:114 -#: partials/welcome-page.php:120 -#: partials/welcome-page.php:216 -msgid "(opens in a new window)" -msgstr "(se deschide într-o fereastră nouă)" - -#: partials/welcome-page.php:89 +#: partials/welcome-page.php:93 msgid "How to Manually Check Your Website for Accessibility" msgstr "Cum să verificați manual site-ul dvs. web pentru accesibilitate" -#: partials/welcome-page.php:94 +#: partials/welcome-page.php:98 msgid "When to Ignore Accessibility Errors" msgstr "Când să ignorați erorile de accesibilitate" -#: partials/welcome-page.php:99 +#: partials/welcome-page.php:103 msgid "What to do if a Plugin You’re Using has Accessibility Errors" msgstr "Ce să faceți dacă un plugin pe care îl utilizați are erori de accesibilitate" -#: partials/welcome-page.php:104 +#: partials/welcome-page.php:108 msgid "What to do if there are Accessibility Errors in Your Theme" msgstr "Ce să faceți dacă există erori de accesibilitate în tema dvs" -#: partials/welcome-page.php:109 +#: partials/welcome-page.php:113 msgid "Can I Hire Equalize Digital to Fix Accessibility Issues on My Website?" msgstr "Pot angaja Equalize Digital pentru a remedia problemele de accesibilitate de pe site-ul meu web?" -#: partials/welcome-page.php:114 +#: partials/welcome-page.php:118 msgid "Additional Resources for Learning About Accessibility" msgstr "Resurse suplimentare pentru învățarea despre accesibilitate" -#: partials/welcome-page.php:120 +#: partials/welcome-page.php:124 msgid "Read Full Documentation" msgstr "Citiți documentația completă" -#: partials/welcome-page.php:127 +#: partials/welcome-page.php:131 msgid "Support Information" msgstr "Informații de asistență" -#: partials/welcome-page.php:133 +#: partials/welcome-page.php:137 msgid "Plugin Support" msgstr "Asistență pentru plugin" -#: partials/welcome-page.php:135 +#: partials/welcome-page.php:139 msgid "Active license holders of paid Accessibility Checker plans get unlimited email support on plugin usage and troubleshooting." msgstr "Deținătorii de licențe active ale planurilor plătite Accessibility Checker primesc asistență nelimitată prin e-mail privind utilizarea și depanarea plugin-ului." -#: partials/welcome-page.php:138 +#: partials/welcome-page.php:142 msgid "Open Support Ticket" msgstr "Deschide tichet de asistență" -#: partials/welcome-page.php:145 +#: partials/welcome-page.php:149 msgid "Free Plugin Support" msgstr "Asistență gratuită pentru plugin" -#: partials/welcome-page.php:147 +#: partials/welcome-page.php:151 msgid "Free plugin support is available via the WordPress.org forums. You'll need to create an account then you can open a new support thread." msgstr "Asistența gratuită pentru plugin este disponibilă prin intermediul forumurilor WordPress.org. Va trebui să vă creați un cont, apoi puteți deschide un nou fir de asistență." -#: partials/welcome-page.php:150 +#: partials/welcome-page.php:154 msgid "Go to Support Forum" msgstr "Mergi la forumul de asistență" -#: partials/welcome-page.php:157 +#: partials/welcome-page.php:161 msgid "Office Hours" msgstr "Program de consultații" -#: partials/welcome-page.php:159 +#: partials/welcome-page.php:163 msgid "Open Q&A on Zoom every other week to help you remediate your website." msgstr "Sesiuni deschise de întrebări și răspunsuri pe Zoom la fiecare două săptămâni pentru a vă ajuta să remediați site-ul dvs. web." -#: partials/welcome-page.php:161 +#: partials/welcome-page.php:165 msgid "Included in Small Business and Agency plans" msgstr "Inclus în planurile pentru Întreprinderi Mici și Agenții" -#: partials/welcome-page.php:166 +#: partials/welcome-page.php:170 msgid "Register for Office Hours" msgstr "Înregistrați-vă pentru programul de consultații" -#: partials/welcome-page.php:172 +#: partials/welcome-page.php:176 msgid "Auditing and Remediation" msgstr "Auditare și remediere" -#: partials/welcome-page.php:174 +#: partials/welcome-page.php:178 msgid "Get help making your website accessible. Expert auditing, user testing, and dev support. Conformance letters available." msgstr "Obțineți ajutor pentru a face site-ul dvs. Web accesibil. Auditare de experți, testare cu utilizatori și asistență pentru dezvoltare. Scrisori de conformitate disponibile." -#: partials/welcome-page.php:178 +#: partials/welcome-page.php:182 msgid "Get Remediation Help" msgstr "Obțineți ajutor pentru remediere" @@ -4356,6 +5061,7 @@ msgstr "Setări de remediere" #: build/editorApp.bundle.js:2 #: build/frontendHighlighterApp.bundle.js:2 +#: build/sidebar.bundle.js:2 msgid "This will clear all issues for this post. A save will be required to trigger a fresh scan of the post content. Do you want to continue?" msgstr "Aceasta va șterge toate problemele pentru această postare. Va fi necesară o salvare pentru a declanșa o nouă scanare a conținutului postării. Doriți să continuați?" @@ -4391,11 +5097,6 @@ msgstr "Ne pare rău, trimiterea dvs. A eșuat. Vă rugăm să scurtați răspun msgid "Sorry, your submission failed. Please try again." msgstr "Ne pare rău, trimiterea dvs. A eșuat. Vă rugăm să încercați din nou." -#: build/frontendFixes.bundle.js:1 -#: build/pageScanner.bundle.js:2 -msgid "opens a new window" -msgstr "deschide o fereastră nouă" - #: build/frontendFixes.bundle.js:1 msgid "EDAC: Did not find a matching target ID on the page for the skip link." msgstr "EDAC: Nu s-a găsit un ID țintă potrivit pe pagină pentru link-ul de salt." @@ -4408,10 +5109,77 @@ msgstr "EDAC: Eroare la actualizarea istoricului pentru link-ul de salt." msgid "Close fixes modal" msgstr "Închide modalul de remedieri" +#: build/frontendHighlighterApp.bundle.js:2 +#, js-format +msgid "%1$d of %2$d" +msgstr "%1$d din %2$d" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Untitled issue" +msgstr "Problemă fără titlu" + +#: build/frontendHighlighterApp.bundle.js:2 +#, js-format +msgid "Issue %1$d of %2$d: %3$s" +msgstr "Problema %1$d din %2$d: %3$s" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "The element is not visible. Try disabling styles." +msgstr "Elementul nu este vizibil. Încercați să dezactivați stilurile." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "The element is not focusable. Try disabling styles." +msgstr "Elementul nu este focusabil. Încercați să dezactivați stilurile." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "The element was not found on the page." +msgstr "Elementul nu a fost găsit pe pagină." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Move to Left" +msgstr "Mută la stânga" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Move to Right" +msgstr "Mută la dreapta" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Panel position reset." +msgstr "Poziția panoului a fost resetată." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Panel moved to the left." +msgstr "Panoul a fost mutat la stânga." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Panel moved to the right." +msgstr "Panoul a fost mutat la dreapta." + +#: build/frontendHighlighterApp.bundle.js:2 +#, js-format +msgid "Open details for %1$s, %2$s of %3$s" +msgstr "Deschideți detalii pentru %1$s, %2$s din %3$s" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Undock Panel" +msgstr "Detașează panoul" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Dock Panel" +msgstr "Ancorează panoul" + #: build/frontendHighlighterApp.bundle.js:2 msgid "Rescan This Page" msgstr "Rescanează această pagină" +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Accessibility Checker Tools" +msgstr "Instrumente Accessibility Checker" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "More options" +msgstr "Mai multe opțiuni" + #: build/frontendHighlighterApp.bundle.js:2 msgid "Disable Page Styles" msgstr "Dezactivează stilurile paginii" @@ -4420,22 +5188,105 @@ msgstr "Dezactivează stilurile paginii" msgid "Disable Styles" msgstr "Dezactivează stilurile" +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Close" +msgstr "Închide" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "No issues found on this page." +msgstr "Nu au fost găsite probleme pe această pagină." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Loading..." +msgstr "Se încarcă..." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Previous" +msgstr "Anterior" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Next" +msgstr "Următorul" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Reset Position" +msgstr "Resetați poziția" + #: build/frontendHighlighterApp.bundle.js:2 msgid "An error occurred when loading the issues." msgstr "A apărut o eroare la încărcarea problemelor." #: build/frontendHighlighterApp.bundle.js:2 -msgid "Show Code" -msgstr "Arată codul" +msgid "Panel docked." +msgstr "Panou ancorat." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Panel undocked." +msgstr "Panou detașat." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Severity:" +msgstr "Severitate:" + +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "WCAG:" +msgstr "WCAG:" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Ignored" +msgstr "Ignorat" + +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "Show explanation" +msgstr "Arată explicația" + +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "Why It Matters" +msgstr "De ce este important" + +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "How to Fix" +msgstr "Cum se remediază" + +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "More Detailed Documentation" +msgstr "Documentație mai detaliată" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Show Affected Code" +msgstr "Arată codul afectat" + +#: build/frontendHighlighterApp.bundle.js:2 +#, js-format +msgid "Fix issue: %s" +msgstr "Remediați problema: %s" #: build/frontendHighlighterApp.bundle.js:2 -msgid "Issue type:" -msgstr "Tipul problemei:" +#: build/issueModal.bundle.js:2 +msgid "Fix Issue" +msgstr "Remediați problema" #: build/frontendHighlighterApp.bundle.js:2 msgid "Enable Styles" msgstr "Activează stilurile" +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Enable Page Styles" +msgstr "Activează stilurile paginii" + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Page styles disabled." +msgstr "Stilurile paginii sunt dezactivate." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Page styles re-enabled." +msgstr "Stilurile paginii au fost reactivate." + #: build/frontendHighlighterApp.bundle.js:2 msgid "There are no settings to display." msgstr "Nu există setări de afișat." @@ -4445,34 +5296,49 @@ msgid "These settings enable global fixes across your entire site. Pages may nee msgstr "Aceste setări activează remedieri globale pe întregul site. Este posibil ca paginile să trebuiască resalvate sau să fie rulată o scanare completă a site-ului pentru a vedea remedierile reflectate în rapoarte." #: build/frontendHighlighterApp.bundle.js:2 -msgid "No issues detected." -msgstr "Nu s-au detectat probleme." +#, js-format +msgid "%d issue found" +msgid_plural "%d issues found" +msgstr[0] "%d problemă găsită" +msgstr[1] "%d probleme găsite" +msgstr[2] "%d probleme găsite" + +#: build/frontendHighlighterApp.bundle.js:2 +#, js-format +msgid "%d Problem" +msgid_plural "%d Problems" +msgstr[0] "%d problemă" +msgstr[1] "%d probleme" +msgstr[2] "%d probleme" #: build/frontendHighlighterApp.bundle.js:2 -msgid "error" -msgid_plural "errors" -msgstr[0] "eroare" -msgstr[1] "erori" +#, js-format +msgid "%d Needs Review" +msgid_plural "%d Need Review" +msgstr[0] "%d necesită revizuire" +msgstr[1] "%d necesită revizuire" +msgstr[2] "%d necesită revizuire" #: build/frontendHighlighterApp.bundle.js:2 -msgid "warning" -msgid_plural "warnings" -msgstr[0] "avertisment" -msgstr[1] "avertismente" +#, js-format +msgid "%d Ignored" +msgid_plural "%d Ignored" +msgstr[0] "%d ignorat" +msgstr[1] "%d ignorate" +msgstr[2] "%d ignorate" #: build/frontendHighlighterApp.bundle.js:2 -msgid "and" -msgstr "și" +msgid "No issues detected." +msgstr "Nu s-au detectat probleme." #: build/frontendHighlighterApp.bundle.js:2 -msgid "ignored issue" -msgid_plural "ignored issues" -msgstr[0] "problemă ignorată" -msgstr[1] "probleme ignorate" +#, js-format +msgid "Landmark: %s" +msgstr "Reper: %s" #: build/frontendHighlighterApp.bundle.js:2 -msgid "detected." -msgstr "detectate." +msgid "Failed to load scanner script." +msgstr "Nu s-a putut încărca scriptul scanerului." #: build/frontendHighlighterApp.bundle.js:2 msgid "Scanner function not found." @@ -4482,14 +5348,18 @@ msgstr "Funcția de scanare nu a fost găsită." msgid "Scanning..." msgstr "Se scanează..." -#: build/frontendHighlighterApp.bundle.js:2 -msgid "No violations found, skipping save." -msgstr "Nu s-au găsit încălcări, se omite salvarea." - #: build/frontendHighlighterApp.bundle.js:2 msgid "Missing postId or nonce." msgstr "Lipsește postId sau nonce." +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescan complete. No violations found." +msgstr "Rescanare finalizată. Nu au fost găsite încălcări." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "No violations found, skipping save." +msgstr "Nu s-au găsit încălcări, se omite salvarea." + #: build/frontendHighlighterApp.bundle.js:2 msgid "Accessibility scan error." msgstr "Eroare la scanarea de accesibilitate." @@ -4498,10 +5368,129 @@ msgstr "Eroare la scanarea de accesibilitate." msgid "Error saving scan results." msgstr "Eroare la salvarea rezultatelor scanării." +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescan already in progress." +msgstr "Rescanarea este deja în curs." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescanning this page." +msgstr "Rescanarea acestei pagini." + +#: build/frontendHighlighterApp.bundle.js:2 +msgid "Rescan complete." +msgstr "Rescanare finalizată." + #: build/frontendHighlighterApp.bundle.js:2 msgid "Error: Missing required parameters." msgstr "Eroare: Lipsesc parametrii necesari." +#: build/issueModal.bundle.js:2 +msgid "Issue related image" +msgstr "Imaginea legată de problemă" + +#: build/issueModal.bundle.js:2 +msgid "Fix settings saved." +msgstr "Setările de remediere au fost salvate." + +#: build/issueModal.bundle.js:2 +msgid "Failed to save fix settings." +msgstr "Nu s-au putut salva setările de remediere." + +#: build/issueModal.bundle.js:2 +msgid "Loading fix information..." +msgstr "Se încarcă informațiile de remediere..." + +#: build/issueModal.bundle.js:2 +#, js-format +msgid "Save fix for: %s" +msgstr "Salvați remedierea pentru: %s" + +#: build/issueModal.bundle.js:2 +msgid "Issue dismissed successfully." +msgstr "Problema a fost ignorată cu succes." + +#: build/issueModal.bundle.js:2 +msgid "Issue reopened successfully." +msgstr "Problema a fost redeschisă cu succes." + +#: build/issueModal.bundle.js:2 +msgid "Dismissing..." +msgstr "Se ignoră..." + +#: build/issueModal.bundle.js:2 +#, js-format +msgid "Issue Dismissed — %s" +msgstr "Problemă ignorată — %s" + +#: build/issueModal.bundle.js:2 +msgid "Issue Dismissed" +msgstr "Problemă ignorată" + +#: build/issueModal.bundle.js:2 +msgid "Scope:" +msgstr "Domeniu:" + +#: build/issueModal.bundle.js:2 +msgid "All pages" +msgstr "Toate paginile" + +#: build/issueModal.bundle.js:2 +msgid "By:" +msgstr "De către:" + +#: build/issueModal.bundle.js:2 +msgid "On:" +msgstr "Pe:" + +#: build/issueModal.bundle.js:2 +msgid "Reason for dismissal:" +msgstr "Motivul ignorării:" + +#: build/issueModal.bundle.js:2 +msgid "This issue was dismissed globally. Manage Global Dismissals to reopen it." +msgstr "Această problemă a fost ignorată la nivel global. Gestionați ignorările globale pentru a o redeschide." + +#: build/issueModal.bundle.js:2 +msgid "Manage Global Dismissals" +msgstr "Gestionați ignorările globale" + +#: build/issueModal.bundle.js:2 +msgid "Reopening..." +msgstr "Se redeschide..." + +#: build/issueModal.bundle.js:2 +msgid "Comment (optional)" +msgstr "Comentariu (opțional)" + +#: build/issueModal.bundle.js:2 +msgid "Add a note explaining why this issue is being dismissed." +msgstr "Adăugați o notă explicând de ce această problemă este ignorată." + +#: build/issueModal.bundle.js:2 +msgid "More dismiss options" +msgstr "Mai multe opțiuni de ignorare" + +#: build/issueModal.bundle.js:2 +msgid "Dismiss & Close Modal" +msgstr "Ignorați și închideți fereastra" + +#: build/issueModal.bundle.js:2 +#, js-format +msgid "Issue #%s" +msgstr "Problemă #%s" + +#: build/issueModal.bundle.js:2 +msgid "Issue Details" +msgstr "Detalii problemă" + +#: build/issueModal.bundle.js:2 +msgid "Type" +msgstr "Tip" + +#: build/issueModal.bundle.js:2 +msgid "Severity" +msgstr "Severitate" + #: build/pageScanner.bundle.js:2 msgid "new window" msgstr "fereastră nouă" @@ -4510,6 +5499,10 @@ msgstr "fereastră nouă" msgid "new tab" msgstr "filă nouă" +#: build/pageScanner.bundle.js:2 +msgid "new document" +msgstr "document nou" + #: build/pageScanner.bundle.js:2 msgid "click" msgstr "clic" @@ -4585,3 +5578,252 @@ msgstr "continuă să citești" #: build/pageScanner.bundle.js:2 msgid "learn more" msgstr "află mai multe" + +#: build/sidebar.bundle.js:2 +msgid "Failed to load accessibility data" +msgstr "Nu s-au putut încărca datele de accesibilitate" + +#: build/sidebar.bundle.js:2 +msgid "Error loading accessibility data" +msgstr "Eroare la încărcarea datelor de accesibilitate" + +#: build/sidebar.bundle.js:2 +msgid "Loading accessibility results..." +msgstr "Se încarcă rezultatele accesibilității..." + +#: build/sidebar.bundle.js:2 +msgid "Updating accessibility data..." +msgstr "Se actualizează datele de accesibilitate..." + +#: build/sidebar.bundle.js:2 +msgid "problem to address" +msgid_plural "problems to address" +msgstr[0] "problemă de rezolvat" +msgstr[1] "probleme de rezolvat" +msgstr[2] "probleme de rezolvat" + +#: build/sidebar.bundle.js:2 +msgid "issue that needs review" +msgid_plural "issues that need review" +msgstr[0] "problemă care necesită revizuire" +msgstr[1] "probleme care necesită revizuire" +msgstr[2] "probleme care necesită revizuire" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "You have %1$d %2$s and %3$d %4$s." +msgstr "Aveți %1$d %2$s și %3$d %4$s." + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "You have %1$d %2$s." +msgstr "Aveți %1$d %2$s." + +#: build/sidebar.bundle.js:2 +msgid "Check and fix accessibility issues in your content." +msgstr "Verificați și remediați problemele de accesibilitate din conținutul dvs." + +#: build/sidebar.bundle.js:2 +msgid "Open Accessibility Panel" +msgstr "Deschideți panoul de accesibilitate" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "%dth" +msgstr "al %d-lea" + +#: build/sidebar.bundle.js:2 +msgid "Summary provided" +msgstr "Rezumat furnizat" + +#: build/sidebar.bundle.js:2 +msgid "Summary required" +msgstr "Rezumat necesar" + +#: build/sidebar.bundle.js:2 +msgid "Summary not required" +msgstr "Rezumat nu este necesar" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "View %d problems in Accessibility Analysis" +msgstr "Vizualizați %d probleme în Analiza Accesibilității" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "View %d items needing review in Accessibility Analysis" +msgstr "Vizualizați %d elemente care necesită revizuire în Analiza Accesibilității" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "View reading level details: %s" +msgstr "Vizualizați detaliile nivelului de citire: %s" + +#: build/sidebar.bundle.js:2 +msgid "Issue" +msgstr "Problemă" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "Issue actions for %s" +msgstr "Acțiuni problemă pentru %s" + +#: build/sidebar.bundle.js:2 +msgid "Issue actions" +msgstr "Acțiuni problemă" + +#: build/sidebar.bundle.js:2 +msgid "Show code" +msgstr "Arată codul" + +#: build/sidebar.bundle.js:2 +msgid "Reopen issue" +msgstr "Redeschideți problema" + +#: build/sidebar.bundle.js:2 +msgid "Dismiss issue" +msgstr "Ignorați problema" + +#: build/sidebar.bundle.js:2 +msgid "Apply fix" +msgstr "Aplicați remedierea" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "%d total" +msgstr "%d total" + +#: build/sidebar.bundle.js:2 +msgid "No dismissed issues." +msgstr "Nicio problemă ignorată." + +#: build/sidebar.bundle.js:2 +msgid "No issues found." +msgstr "Nu s-au găsit probleme." + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "%d total issues" +msgstr "%d probleme în total" + +#: build/sidebar.bundle.js:2 +msgid "Dismissed Issues" +msgstr "Probleme ignorate" + +#: build/sidebar.bundle.js:2 +msgid "Simplified summary saved successfully." +msgstr "Rezumatul simplificat a fost salvat cu succes." + +#: build/sidebar.bundle.js:2 +msgid "Failed to save summary. Please try again." +msgstr "Nu s-a putut salva rezumatul. Vă rugăm să încercați din nou." + +#: build/sidebar.bundle.js:2 +msgid "An error occurred while saving the summary." +msgstr "A apărut o eroare la salvarea rezumatului." + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "%s grade" +msgstr "clasa %s" + +#: build/sidebar.bundle.js:2 +#, js-format +msgid "%dth grade" +msgstr "clasa a %d-a" + +#: build/sidebar.bundle.js:2 +msgid "Not available" +msgstr "Indisponibil" + +#: build/sidebar.bundle.js:2 +msgid "Warning" +msgstr "Avertisment" + +#: build/sidebar.bundle.js:2 +msgid "This post does not contain enough content to calculate a reading level." +msgstr "Această postare nu conține suficient conținut pentru a calcula un nivel de citire." + +#: build/sidebar.bundle.js:2 +msgid "Adjust summary prompts in settings." +msgstr "Ajustați solicitările de rezumat în setări." + +#: build/sidebar.bundle.js:2 +msgid "Content at or below a 9th-grade reading level does not require a simplified summary." +msgstr "Conținutul la sau sub nivelul de citire al clasei a IX-a nu necesită un rezumat simplificat." + +#: build/sidebar.bundle.js:2 +msgid "Content above a 9th-grade reading level requires a simplified summary to meet WCAG AAA guidance." +msgstr "Conținutul peste nivelul de citire al clasei a IX-a necesită un rezumat simplificat pentru a îndeplini ghidul WCAG AAA." + +#: build/sidebar.bundle.js:2 +msgid "Learn more about readability requirements." +msgstr "Aflați mai multe despre cerințele de lizibilitate." + +#: build/sidebar.bundle.js:2 +msgid "Simplified Summary Reading Level" +msgstr "Nivel de citire al rezumatului simplificat" + +#: build/sidebar.bundle.js:2 +msgid "Needs improvement, summary is above the 9th-grade reading level." +msgstr "Necesită îmbunătățiri, rezumatul este peste nivelul de citire al clasei a IX-a." + +#: build/sidebar.bundle.js:2 +msgid "Below the recommended 9th-grade reading level." +msgstr "Sub nivelul de citire recomandat al clasei a IX-a." + +#: build/sidebar.bundle.js:2 +msgid "Enter simplified summary..." +msgstr "Introduceți rezumatul simplificat..." + +#: build/sidebar.bundle.js:2 +msgid "A simplified summary is required for this content." +msgstr "Este necesar un rezumat simplificat pentru acest conținut." + +#: build/sidebar.bundle.js:2 +msgid "Unable to load this preference." +msgstr "Nu s-a putut încărca această preferință." + +#: build/sidebar.bundle.js:2 +msgid "Unable to save this preference." +msgstr "Nu s-a putut salva această preferință." + +#: build/sidebar.bundle.js:2 +msgid "Loading preference..." +msgstr "Se încarcă preferința..." + +#: build/sidebar.bundle.js:2 +msgid "Screen Reader Text Format" +msgstr "Format text pentru cititorul de ecran" + +#: build/sidebar.bundle.js:2 +msgid "Control whether screen reader text stays visible while you edit." +msgstr "Controlați dacă textul cititorului de ecran rămâne vizibil în timp ce editați." + +#: build/sidebar.bundle.js:2 +msgid "Always show screen reader text?" +msgstr "Afișează întotdeauna textul cititorului de ecran?" + +#: build/sidebar.bundle.js:2 +msgid "Loading accessibility data..." +msgstr "Se încarcă datele de accesibilitate..." + +#: build/sidebar.bundle.js:2 +msgid "Accessibility Checker actions" +msgstr "Acțiuni Accessibility Checker" + +#: build/sidebar.bundle.js:2 +msgid "Scan" +msgstr "Scanează" + +#: build/sidebar.bundle.js:2 +msgid "Refresh" +msgstr "Reîmprospătează" + +#: build/srOnlyFormat.bundle.js:2 +msgid "Screen Reader Only" +msgstr "Doar cititor de ecran" + +#: build/srOnlyFormat.bundle.js:2 +msgid "Always show screen reader text" +msgstr "Afișează întotdeauna textul cititorului de ecran" From cd6fc0abae6599da931c314d9b79fedaac8b3b52 Mon Sep 17 00:00:00 2001 From: PTC Date: Tue, 5 May 2026 19:39:10 +0000 Subject: [PATCH 13/74] PTC accessibility-checker (1985): Edits by Steve Jones (May 05, 2026 19:39:04652135) --- ...e_DE-b93b9e514c44a41f97246123aa57f5c4.json | 2 +- languages/accessibility-checker-de_DE.mo | Bin 179306 -> 210651 bytes languages/accessibility-checker-de_DE.po | 4477 +++++++++++------ 3 files changed, 2853 insertions(+), 1626 deletions(-) diff --git a/languages/accessibility-checker-de_DE-b93b9e514c44a41f97246123aa57f5c4.json b/languages/accessibility-checker-de_DE-b93b9e514c44a41f97246123aa57f5c4.json index d2f62a0a4..9948b4575 100644 --- a/languages/accessibility-checker-de_DE-b93b9e514c44a41f97246123aa57f5c4.json +++ b/languages/accessibility-checker-de_DE-b93b9e514c44a41f97246123aa57f5c4.json @@ -1 +1 @@ -{"translation-revision-date":"YEAR-MO-DA HO:MI+ZONE","generator":"WP-CLI\/2.12.0","source":"build\/frontendHighlighterApp.bundle.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de_DE","plural-forms":"nplurals=2; plural=(n != 1);"},"Accessibility Checker":["Accessibility Checker"],"Critical":["Kritisch"],"High":["Hoch"],"Medium":["Mittel"],"Low":["Niedrig"],"Problem":["Problem","Probleme"],"Needs Review":["\u00dcberpr\u00fcfung erforderlich","\u00dcberpr\u00fcfung erforderlich"],", opens a new window":[", \u00f6ffnet ein neues Fenster"],"Save":["Speichern"],"Clear Issues":["Probleme l\u00f6schen"],"Saving...":["Wird gespeichert..."],"Settings saved successfully. You must %svisit the editor%s and save the post to rescan and remove fixed issues from Accessibility Checker reports.":["Einstellungen erfolgreich gespeichert. Sie m\u00fcssen %sden Editor besuchen%s und den Beitrag speichern, um einen erneuten Scan durchzuf\u00fchren und behobene Probleme aus den Accessibility Checker-Berichten zu entfernen."],"Settings saved successfully.":["Einstellungen erfolgreich gespeichert."],"Saving failed.":["Speichern fehlgeschlagen."],"Fix Settings":["Einstellungen korrigieren"],"This will clear all issues for this post. A save will be required to trigger a fresh scan of the post content. Do you want to continue?":["Dies wird alle Probleme f\u00fcr diesen Beitrag l\u00f6schen. Ein Speichern ist erforderlich, um einen neuen Scan des Beitragsinhalts auszul\u00f6sen. M\u00f6chten Sie fortfahren?"],"Clearing...":["Wird gel\u00f6scht..."],"Issues cleared successfully.":["Probleme erfolgreich gel\u00f6scht."],"Failed to clear issues.":["Probleme konnten nicht gel\u00f6scht werden."],"An error occurred while clearing issues.":["Beim L\u00f6schen der Probleme ist ein Fehler aufgetreten."],"Close fixes modal":["Korrektur-Modal schlie\u00dfen"],"%1$d of %2$d":["%1$d von %2$d"],"The element is not visible. Try disabling styles.":["Das Element ist nicht sichtbar. Versuchen Sie, die Stile zu deaktivieren."],"The element is not focusable. Try disabling styles.":["Das Element ist nicht fokussierbar. Versuchen Sie, die Stile zu deaktivieren."],"The element was not found on the page.":["Das Element wurde auf der Seite nicht gefunden."],"Move to Left":["Nach links verschieben"],"Move to Right":["Nach rechts verschieben"],"Panel position reset.":["Bedienfeldposition zur\u00fcckgesetzt."],"Panel moved to the left.":["Bedienfeld nach links verschoben."],"Panel moved to the right.":["Bedienfeld nach rechts verschoben."],"Open details for %1$s, %2$s of %3$s":["Details \u00f6ffnen f\u00fcr %1$s, %2$s von %3$s"],"Undock Panel":["Bedienfeld l\u00f6sen"],"Dock Panel":["Bedienfeld andocken"],"Rescan This Page":["Diese Seite erneut scannen"],"Accessibility Checker Tools":["Accessibility Checker Tools"],"More options":["Weitere Optionen"],"Disable Page Styles":["Seitenstile deaktivieren"],"Disable Styles":["Stile deaktivieren"],"Close":["Schlie\u00dfen"],"No issues found on this page.":["Keine Probleme auf dieser Seite gefunden."],"Loading...":["Wird geladen..."],"Previous":["Zur\u00fcck"],"Next":["Weiter"],"Reset Position":["Position zur\u00fccksetzen"],"An error occurred when loading the issues.":["Beim Laden der Probleme ist ein Fehler aufgetreten."],"Panel docked.":["Bedienfeld angedockt."],"Panel undocked.":["Bedienfeld gel\u00f6st."],"Severity:":["Schweregrad:"],"WCAG:":["WCAG:"],"Issue type:":["Problemtyp:"],"Ignored":["Ignoriert"],"Show explanation":["Erkl\u00e4rung anzeigen"],"Why It Matters":["Warum es wichtig ist"],"How to Fix":["Wie man es behebt"],"More Detailed Documentation":["Detailliertere Dokumentation"],"Show Affected Code":["Betroffenen Code anzeigen"],"Fix issue: %s":["Problem beheben: %s"],"Fix Issue":["Problem beheben"],"Enable Styles":["Stile aktivieren"],"There are no settings to display.":["Es gibt keine Einstellungen anzuzeigen."],"These settings enable global fixes across your entire site. Pages may need to be resaved or a full site scan run to see fixes reflected in reports.":["Diese Einstellungen aktivieren globale Korrekturen auf Ihrer gesamten Website. Seiten m\u00fcssen m\u00f6glicherweise neu gespeichert oder ein vollst\u00e4ndiger Website-Scan durchgef\u00fchrt werden, um die Korrekturen in Berichten zu sehen."],"%d issue found":["%d Problem gefunden","%d Probleme gefunden"],"%d Problem":["%d Problem","%d Probleme"],"%d Needs Review":["%d muss \u00fcberpr\u00fcft werden","%d m\u00fcssen \u00fcberpr\u00fcft werden"],"%d Ignored":["%d ignoriert","%d ignoriert"],"No issues detected.":["Keine Probleme erkannt."],"Landmark: %s":["Landmarke: %s"],"Scanner function not found.":["Scanner-Funktion nicht gefunden."],"Scanning...":["Wird gescannt..."],"No violations found, skipping save.":["Keine Verst\u00f6\u00dfe gefunden, Speichern wird \u00fcbersprungen."],"Missing postId or nonce.":["Fehlende postId oder Nonce."],"Accessibility scan error.":["Fehler beim Barrierefreiheits-Scan."],"Error saving scan results.":["Fehler beim Speichern der Scan-Ergebnisse."],"Error: Missing required parameters.":["Fehler: Erforderliche Parameter fehlen."]}}} \ No newline at end of file +{"translation-revision-date":"YEAR-MO-DA HO:MI+ZONE","generator":"WP-CLI\/2.12.0","source":"build\/frontendHighlighterApp.bundle.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de_DE","plural-forms":"nplurals=2; plural=(n != 1);"},"Accessibility Checker":["Accessibility Checker"],"Critical":["Kritisch"],"High":["Hoch"],"Medium":["Mittel"],"Low":["Niedrig"],"Problem":["Problem","Probleme"],"Needs Review":["\u00dcberpr\u00fcfung erforderlich","\u00dcberpr\u00fcfung erforderlich"],", opens a new window":[", \u00f6ffnet ein neues Fenster"],"Save":["Speichern"],"Clear Issues":["Probleme l\u00f6schen"],"Saving...":["Wird gespeichert..."],"Settings saved successfully. You must %svisit the editor%s and save the post to rescan and remove fixed issues from Accessibility Checker reports.":["Einstellungen erfolgreich gespeichert. Sie m\u00fcssen %sden Editor besuchen%s und den Beitrag speichern, um einen erneuten Scan durchzuf\u00fchren und behobene Probleme aus den Accessibility Checker-Berichten zu entfernen."],"Settings saved successfully.":["Einstellungen erfolgreich gespeichert."],"Saving failed.":["Speichern fehlgeschlagen."],"Fix Settings":["Einstellungen korrigieren"],"This will clear all issues for this post. A save will be required to trigger a fresh scan of the post content. Do you want to continue?":["Dies wird alle Probleme f\u00fcr diesen Beitrag l\u00f6schen. Ein Speichern ist erforderlich, um einen neuen Scan des Beitragsinhalts auszul\u00f6sen. M\u00f6chten Sie fortfahren?"],"Clearing...":["Wird gel\u00f6scht..."],"Issues cleared successfully.":["Probleme erfolgreich gel\u00f6scht."],"Failed to clear issues.":["Probleme konnten nicht gel\u00f6scht werden."],"An error occurred while clearing issues.":["Beim L\u00f6schen der Probleme ist ein Fehler aufgetreten."],"Close fixes modal":["Korrektur-Modal schlie\u00dfen"],"%1$d of %2$d":["%1$d von %2$d"],"Untitled issue":["Unbenanntes Problem"],"Issue %1$d of %2$d: %3$s":["Problem %1$d von %2$d: %3$s"],"The element is not visible. Try disabling styles.":["Das Element ist nicht sichtbar. Versuchen Sie, die Stile zu deaktivieren."],"The element is not focusable. Try disabling styles.":["Das Element ist nicht fokussierbar. Versuchen Sie, die Stile zu deaktivieren."],"The element was not found on the page.":["Das Element wurde auf der Seite nicht gefunden."],"Move to Left":["Nach links verschieben"],"Move to Right":["Nach rechts verschieben"],"Panel position reset.":["Bedienfeldposition zur\u00fcckgesetzt."],"Panel moved to the left.":["Bedienfeld nach links verschoben."],"Panel moved to the right.":["Bedienfeld nach rechts verschoben."],"Open details for %1$s, %2$s of %3$s":["Details \u00f6ffnen f\u00fcr %1$s, %2$s von %3$s"],"Undock Panel":["Bedienfeld l\u00f6sen"],"Dock Panel":["Bedienfeld andocken"],"Rescan This Page":["Diese Seite erneut scannen"],"Accessibility Checker Tools":["Accessibility Checker Tools"],"More options":["Weitere Optionen"],"Disable Page Styles":["Seitenstile deaktivieren"],"Disable Styles":["Stile deaktivieren"],"Close":["Schlie\u00dfen"],"No issues found on this page.":["Keine Probleme auf dieser Seite gefunden."],"Loading...":["Wird geladen..."],"Previous":["Zur\u00fcck"],"Next":["Weiter"],"Reset Position":["Position zur\u00fccksetzen"],"An error occurred when loading the issues.":["Beim Laden der Probleme ist ein Fehler aufgetreten."],"Panel docked.":["Bedienfeld angedockt."],"Panel undocked.":["Bedienfeld gel\u00f6st."],"Severity:":["Schweregrad:"],"WCAG:":["WCAG:"],"Ignored":["Ignoriert"],"Show explanation":["Erkl\u00e4rung anzeigen"],"Why It Matters":["Warum es wichtig ist"],"How to Fix":["Wie man es behebt"],"More Detailed Documentation":["Detailliertere Dokumentation"],"Show Affected Code":["Betroffenen Code anzeigen"],"Fix issue: %s":["Problem beheben: %s"],"Fix Issue":["Problem beheben"],"Enable Styles":["Stile aktivieren"],"Enable Page Styles":["Seitenstile aktivieren"],"Page styles disabled.":["Seitenstile deaktiviert."],"Page styles re-enabled.":["Seitenstile wieder aktiviert."],"There are no settings to display.":["Es gibt keine Einstellungen anzuzeigen."],"These settings enable global fixes across your entire site. Pages may need to be resaved or a full site scan run to see fixes reflected in reports.":["Diese Einstellungen aktivieren globale Korrekturen auf Ihrer gesamten Website. Seiten m\u00fcssen m\u00f6glicherweise neu gespeichert oder ein vollst\u00e4ndiger Website-Scan durchgef\u00fchrt werden, um die Korrekturen in Berichten zu sehen."],"%d issue found":["%d Problem gefunden","%d Probleme gefunden"],"%d Problem":["%d Problem","%d Probleme"],"%d Needs Review":["%d muss \u00fcberpr\u00fcft werden","%d m\u00fcssen \u00fcberpr\u00fcft werden"],"%d Ignored":["%d ignoriert","%d ignoriert"],"No issues detected.":["Keine Probleme erkannt."],"Landmark: %s":["Landmarke: %s"],"Failed to load scanner script.":["Scanner-Skript konnte nicht geladen werden."],"Scanner function not found.":["Scanner-Funktion nicht gefunden."],"Scanning...":["Wird gescannt..."],"Missing postId or nonce.":["Fehlende postId oder Nonce."],"Rescan complete. No violations found.":["Neuscan abgeschlossen. Keine Verst\u00f6\u00dfe gefunden."],"No violations found, skipping save.":["Keine Verst\u00f6\u00dfe gefunden, Speichern wird \u00fcbersprungen."],"Accessibility scan error.":["Fehler beim Barrierefreiheits-Scan."],"Error saving scan results.":["Fehler beim Speichern der Scan-Ergebnisse."],"Rescan already in progress.":["Neuscan bereits im Gange."],"Rescanning this page.":["Diese Seite wird neu gescannt."],"Rescan complete.":["Neuscan abgeschlossen."],"Error: Missing required parameters.":["Fehler: Erforderliche Parameter fehlen."]}}} \ No newline at end of file diff --git a/languages/accessibility-checker-de_DE.mo b/languages/accessibility-checker-de_DE.mo index 2da648710c2a838d6963dfa2929e396e3033288f..0aa701b757056133bcddaf11b2075c950c89c465 100644 GIT binary patch delta 74222 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 delta 45171 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\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-06T16:25:50+00:00\n" +"POT-Creation-Date: 2026-05-04T17:50:18+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" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Plugin Name of the plugin #: accessibility-checker.php -#: admin/class-meta-boxes.php:39 -#: includes/classes/class-accessibility-statement.php:51 -#: includes/classes/class-admin-toolbar.php:53 -#: includes/options-page.php:43 -#: partials/welcome-page.php:24 +#: admin/class-meta-boxes.php:47 +#: includes/classes/class-accessibility-statement.php:55 +#: includes/classes/class-admin-toolbar.php:57 +#: includes/options-page.php:49 +#: partials/welcome-page.php:28 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/sidebar.bundle.js:2 msgid "Accessibility Checker" -msgstr "Zugänglichkeits-Checker" +msgstr "Accessibility Checker" #. Plugin URI of the plugin #: accessibility-checker.php @@ -32,7 +36,7 @@ msgstr "https://a11ychecker.com" #. Description of the plugin #: accessibility-checker.php msgid "Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance." -msgstr "Überprüfen Sie die Barrierefreiheit Ihrer Website, bevor Sie sie veröffentlichen. Integrierter Barrierefreiheits-Scanner und Anleitung für Beiträge." +msgstr "Prüfen und kontrollieren Sie Ihre Website auf Barrierefreiheit, bevor Sie veröffentlichen. Barrierefreiheits-Scanner und Anleitung direkt im Beitrag." #. Author of the plugin #: accessibility-checker.php @@ -44,43 +48,347 @@ msgstr "Equalize Digital" msgid "https://equalizedigital.com" msgstr "https://equalizedigital.com" -#: admin/AdminPage/FixesPage.php:71 +#: admin/AdminPage/AccessibilityReportsPage.php:56 +#: admin/AdminPage/AccessibilityReportsPage.php:138 +msgid "Accessibility Reports" +msgstr "Barrierefreiheitsberichte" + +#: admin/AdminPage/AccessibilityReportsPage.php:57 +msgid "New" +msgstr "Neu" + +#: admin/AdminPage/AccessibilityReportsPage.php:144 +msgid "Get recurring email reports with a snapshot of your site’s accessibility, including total issues, trends over time, most problematic pages, and the most severe issues to fix first." +msgstr "Erhalten Sie regelmäßige E-Mail-Berichte mit einem Überblick über die Barrierefreiheit Ihrer Website, einschließlich der Gesamtprobleme, Trends im Zeitverlauf, der problematischsten Seiten und der schwerwiegendsten Probleme, die zuerst behoben werden müssen." + +#: admin/AdminPage/AccessibilityReportsPage.php:146 +msgid "Get recurring email reports with a snapshot of your site’s accessibility, including total issues, trends over time, most problematic pages, and the most severe issues to fix first. Some details, like full-site coverage and issue breakdowns, are available in Pro." +msgstr "Erhalten Sie regelmäßige E-Mail-Berichte mit einem Überblick über die Barrierefreiheit Ihrer Website, einschließlich der Gesamtprobleme, Trends im Zeitverlauf, der problematischsten Seiten und der schwerwiegendsten Probleme, die zuerst behoben werden müssen. Einige Details, wie die vollständige Website-Abdeckung und detaillierte Problemanalysen, sind in der Pro-Version verfügbar." + +#: admin/AdminPage/AccessibilityReportsPage.php:157 +#: admin/AdminPage/AccessibilityReportsPage.php:171 +msgid "Enable Email Reports" +msgstr "E-Mail-Berichte aktivieren" + +#: admin/AdminPage/AccessibilityReportsPage.php:164 +#: admin/AdminPage/AccessibilityReportsPage.php:168 +#: admin/AdminPage/AccessibilityReportsPage.php:260 +#: admin/AdminPage/ConnectedServicesPage.php:153 +msgid "Free License Key" +msgstr "Kostenloser Lizenzschlüssel" + +#: admin/AdminPage/AccessibilityReportsPage.php:177 +msgid "Get a Free License Key" +msgstr "Kostenlosen Lizenzschlüssel erhalten" + +#. translators: %s: dashboard URL. +#: admin/AdminPage/AccessibilityReportsPage.php:182 +#, php-format +msgid "Got the plugin from Equalize Digital? Your key is in your dashboard." +msgstr "Haben Sie das Plugin von Equalize Digital erhalten? Ihr Schlüssel befindet sich in Ihrem Dashboard." + +#. translators: %s: signup URL. +#: admin/AdminPage/AccessibilityReportsPage.php:191 +#, php-format +msgid "Installed from WordPress.org? Create a free account to get one." +msgstr "Von WordPress.org installiert? Erstellen Sie ein kostenloses Konto, um einen zu erhalten." + +#. translators: %s: signup URL. +#: admin/AdminPage/AccessibilityReportsPage.php:200 +#, php-format +msgid "Not sure? Just create a free account. It only takes a minute." +msgstr "Nicht sicher? Erstellen Sie einfach ein kostenloses Konto. Es dauert nur eine Minute." + +#: admin/AdminPage/AccessibilityReportsPage.php:212 +msgid "Reports Enabled" +msgstr "Berichte aktiviert" + +#: admin/AdminPage/AccessibilityReportsPage.php:215 +msgid "You’ll receive weekly accessibility reports for this site." +msgstr "Sie erhalten wöchentliche Barrierefreiheitsberichte für diese Website." + +#. translators: %s: next report date. +#: admin/AdminPage/AccessibilityReportsPage.php:219 +#, php-format +msgid "Next report: %s" +msgstr "Nächster Bericht: %s" + +#: admin/AdminPage/AccessibilityReportsPage.php:226 +msgid "Full Coverage" +msgstr "Vollständige Abdeckung" + +#: admin/AdminPage/AccessibilityReportsPage.php:226 +msgid "Limited Coverage" +msgstr "Begrenzte Abdeckung" + +#: admin/AdminPage/AccessibilityReportsPage.php:230 +msgid "Your reports include all post types and taxonomies." +msgstr "Ihre Berichte umfassen alle Beitrags- und Taxonomietypen." + +#: admin/AdminPage/AccessibilityReportsPage.php:232 +msgid "Full-site scanning enabled" +msgstr "Vollständiger Website-Scan aktiviert" + +#: admin/AdminPage/AccessibilityReportsPage.php:233 +msgid "Complete issue breakdowns" +msgstr "Vollständige Problemanalysen" + +#: admin/AdminPage/AccessibilityReportsPage.php:234 +msgid "Detailed reporting" +msgstr "Detaillierte Berichterstattung" + +#: admin/AdminPage/AccessibilityReportsPage.php:237 +msgid "Your reports only include part of your site." +msgstr "Ihre Berichte umfassen nur einen Teil Ihrer Website." + +#: admin/AdminPage/AccessibilityReportsPage.php:238 +msgid "Upgrade to Pro to:" +msgstr "Upgrade auf Pro, um:" + +#: admin/AdminPage/AccessibilityReportsPage.php:240 +msgid "Scan all content types" +msgstr "Alle Inhaltstypen scannen" + +#: admin/AdminPage/AccessibilityReportsPage.php:241 +msgid "Get full issue breakdowns" +msgstr "Vollständige Problemanalysen erhalten" + +#: admin/AdminPage/AccessibilityReportsPage.php:242 +msgid "Receive more detailed reports" +msgstr "Detailliertere Berichte erhalten" + +#: admin/AdminPage/AccessibilityReportsPage.php:245 +#: admin/class-upgrade-promotion.php:62 +msgid "Upgrade to Pro" +msgstr "Auf Pro upgraden" + +#: admin/AdminPage/AccessibilityReportsPage.php:251 +msgid "Accessibility Summary" +msgstr "Barrierefreiheitszusammenfassung" + +#: admin/AdminPage/AccessibilityReportsPage.php:252 +msgid "This summary reflects the latest scan data available for your site." +msgstr "Diese Zusammenfassung spiegelt die neuesten verfügbaren Scan-Daten für Ihre Website wider." + +#: admin/AdminPage/AccessibilityReportsPage.php:254 +msgid "Total Issues Found" +msgstr "Gefundene Gesamtprobleme" + +#: admin/AdminPage/AccessibilityReportsPage.php:260 +msgid "Account Connection" +msgstr "Kontoverbindung" + +#: admin/AdminPage/AccessibilityReportsPage.php:268 +msgid "Disable Email Reports" +msgstr "E-Mail-Berichte deaktivieren" + +#. translators: %1$s: privacy link, %2$s: data processing agreement link, %3$s: privacy policy aria label, %4$s: data processing agreement aria label. +#: admin/AdminPage/AccessibilityReportsPage.php:279 +#, php-format +msgid "By connecting this site, you agree to Equalize Digital's Privacy Policy and Data Processing Agreement ." +msgstr "Indem Sie diese Website verbinden, stimmen Sie der Datenschutzerklärung und dem Datenverarbeitungsvertrag von Equalize Digital zu." + +#: admin/AdminPage/AccessibilityReportsPage.php:282 +msgid "Privacy Policy (opens in a new window)" +msgstr "Datenschutzerklärung (wird in einem neuen Fenster geöffnet)" + +#: admin/AdminPage/AccessibilityReportsPage.php:283 +msgid "Data Processing Agreement (opens in a new window)" +msgstr "Datenverarbeitungsvertrag (wird in einem neuen Fenster geöffnet)" + +#: admin/AdminPage/AccessibilityReportsPage.php:294 +msgid "Weekly email includes total issues found and changes since the last report, coverage information, counts of problems, needs review, passed test percentage, and information about the most problematic pages and the most severe issues." +msgstr "Die wöchentliche E-Mail enthält die Gesamtzahl der gefundenen Probleme und Änderungen seit dem letzten Bericht, Abdeckungsinformationen, die Anzahl der Probleme, Überprüfungsbedarfe, den Prozentsatz der bestandenen Tests und Informationen über die problematischsten Seiten und die schwerwiegendsten Probleme." + +#: admin/AdminPage/AccessibilityReportsPage.php:387 +#: build/sidebar.bundle.js:2 +msgid "N/A" +msgstr "N/A" + +#: admin/AdminPage/AccessibilityReportsPage.php:477 +#: admin/class-ajax.php:330 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "Critical" +msgstr "Kritisch" + +#: admin/AdminPage/AccessibilityReportsPage.php:479 +#: admin/class-ajax.php:334 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "High" +msgstr "Hoch" + +#: admin/AdminPage/AccessibilityReportsPage.php:481 +#: admin/class-ajax.php:338 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "Medium" +msgstr "Mittel" + +#: admin/AdminPage/AccessibilityReportsPage.php:483 +#: admin/class-ajax.php:342 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "Low" +msgstr "Niedrig" + +#: admin/AdminPage/AccessibilityReportsPage.php:485 +#: includes/classes/class-rest-api.php:997 +msgid "Unknown" +msgstr "Unbekannt" + +#: admin/AdminPage/ConnectedServicesPage.php:137 +msgid "create a free account" +msgstr "kostenloses Konto erstellen" + +#: admin/AdminPage/ConnectedServicesPage.php:146 +msgid "Connect this site" +msgstr "Diese Website verbinden" + +#: admin/AdminPage/ConnectedServicesPage.php:165 +msgid "active" +msgstr "aktiv" + +#: admin/AdminPage/ConnectedServicesPage.php:167 +msgid "expired" +msgstr "abgelaufen" + +#: admin/AdminPage/ConnectedServicesPage.php:169 +msgid "Enter your license key" +msgstr "Lizenzschlüssel eingeben" + +#: admin/AdminPage/ConnectedServicesPage.php:184 +#: admin/AdminPage/ConnectedServicesPage.php:250 +msgid "Disconnect Site" +msgstr "Website trennen" + +#: admin/AdminPage/ConnectedServicesPage.php:191 +msgid "Connect Site" +msgstr "Website verbinden" + +#. translators: %s: link to my.equalizedigital.com dashboard +#: admin/AdminPage/ConnectedServicesPage.php:204 +#, php-format +msgid "If you downloaded the free plugin from Equalize Digital, you already have a free license key in your %s dashboard." +msgstr "Wenn Sie das kostenlose Plugin von Equalize Digital heruntergeladen haben, verfügen Sie bereits über einen kostenlosen Lizenzschlüssel in Ihrem %s-Dashboard." + +#. translators: %s: link to create a free account +#: admin/AdminPage/ConnectedServicesPage.php:213 +#, php-format +msgid "If not, %s to generate a license key and connect this site." +msgstr "Falls nicht, %s, um einen Lizenzschlüssel zu generieren und diese Website zu verbinden." + +#: admin/AdminPage/ConnectedServicesPage.php:232 +msgid "Connected as Free" +msgstr "Als kostenlos verbunden" + +#: admin/AdminPage/ConnectedServicesPage.php:233 +msgid "Your Pro license is no longer valid, but this site remains connected for Free email reports." +msgstr "Ihre Pro-Lizenz ist nicht mehr gültig, aber diese Website bleibt für kostenlose E-Mail-Berichte verbunden." + +#. translators: %s: link to my.equalizedigital.com dashboard +#: admin/AdminPage/ConnectedServicesPage.php:238 +#, php-format +msgid "You can manage recipients and review connection details in your %s dashboard." +msgstr "Sie können Empfänger verwalten und Verbindungsdetails in Ihrem %s-Dashboard überprüfen." + +#: admin/AdminPage/ConnectedServicesPage.php:398 +msgid "Your Pro license is no longer valid. This site is using a valid Free license, and email reports remain connected as Free email reports. Renew your Pro license to restore Pro-only features." +msgstr "Ihre Pro-Lizenz ist nicht mehr gültig. Diese Website verwendet eine gültige kostenlose Lizenz, und E-Mail-Berichte bleiben als kostenlose E-Mail-Berichte verbunden. Verlängern Sie Ihre Pro-Lizenz, um Pro-spezifische Funktionen wiederherzustellen." + +#: admin/AdminPage/ConnectedServicesPage.php:401 +msgid "Your Pro license is no longer valid. This site is using a valid Free license, but email reports are not currently connected. Connect this site from the Free License section to resume Free email reports." +msgstr "Ihre Pro-Lizenz ist nicht mehr gültig. Diese Website verwendet eine gültige kostenlose Lizenz, aber E-Mail-Berichte sind derzeit nicht verbunden. Verbinden Sie diese Website über den Abschnitt „Kostenlose Lizenz“, um kostenlose E-Mail-Berichte wieder aufzunehmen." + +#: admin/AdminPage/ConnectedServicesPage.php:442 +msgid "Please renew your license" +msgstr "Bitte verlängern Sie Ihre Lizenz" + +#. translators: %1$s: item name, %2$s: item name, %3$s: renew license link +#: admin/AdminPage/ConnectedServicesPage.php:445 +#, php-format +msgid "Your %1$s license has expired. %3$s to continue accessing additional features and services for %2$s." +msgstr "Ihre %1$s-Lizenz ist abgelaufen. %3$s, um weiterhin auf zusätzliche Funktionen und Dienste für %2$s zuzugreifen." + +#. translators: %s: item name +#: admin/AdminPage/ConnectedServicesPage.php:455 +#, php-format +msgid "Your %s license key has been disabled. Please contact our support team if you believe this is an error or would like to continue accessing additional features." +msgstr "Ihr Lizenzschlüssel für %s wurde deaktiviert. Bitte kontaktieren Sie unser Support-Team, wenn Sie dies für einen Fehler halten oder weiterhin auf zusätzliche Funktionen zugreifen möchten." + +#. translators: %1$s: item name, %2$s: license url, %3$s: item name +#: admin/AdminPage/ConnectedServicesPage.php:462 +#, php-format +msgid "The license key for %1$s appears to be invalid. Please check your license key to access additional accessibility features and services for %3$s." +msgstr "Der Lizenzschlüssel für %1$s scheint ungültig zu sein. Bitte überprüfen Sie Ihren Lizenzschlüssel, um auf zusätzliche Barrierefreiheitsfunktionen und -dienste für %3$s zuzugreifen." + +#. translators: %s: item name +#: admin/AdminPage/ConnectedServicesPage.php:472 +#, php-format +msgid "This license key for %s is not active for this site. Please activate it to access additional features on this website." +msgstr "Dieser Lizenzschlüssel für %s ist für diese Website nicht aktiv. Bitte aktivieren Sie ihn, um auf zusätzliche Funktionen auf dieser Website zuzugreifen." + +#. translators: %s: the plugins item name +#: admin/AdminPage/ConnectedServicesPage.php:479 +#, php-format +msgid "This license key does not appear to be valid for %s. Please verify you've entered the correct license key." +msgstr "Dieser Lizenzschlüssel scheint für %s nicht gültig zu sein. Bitte überprüfen Sie, ob Sie den richtigen Lizenzschlüssel eingegeben haben." + +#. translators: %s: the plugins item name +#: admin/AdminPage/ConnectedServicesPage.php:486 +#, php-format +msgid "Your %s license key has reached its site activation limit. You can upgrade your license or deactivate it on another site to use the additional features here." +msgstr "Ihr Lizenzschlüssel für %s hat sein Website-Aktivierungslimit erreicht. Sie können Ihre Lizenz aktualisieren oder sie auf einer anderen Website deaktivieren, um die zusätzlichen Funktionen hier zu nutzen." + +#. translators: %s: the plugins item name +#: admin/AdminPage/ConnectedServicesPage.php:493 +#, php-format +msgid "There was an issue validating your %s license key. Please try again or contact our support team if the problem persists." +msgstr "Bei der Validierung Ihres Lizenzschlüssels für %s ist ein Problem aufgetreten. Bitte versuchen Sie es erneut oder kontaktieren Sie unser Support-Team, wenn das Problem weiterhin besteht." + +#: admin/AdminPage/FixesPage.php:75 #: admin/site-health/class-free.php:105 #: admin/site-health/class-pro.php:82 -#: includes/classes/class-admin-toolbar.php:102 +#: includes/classes/class-admin-toolbar.php:106 msgid "Fixes" msgstr "Korrekturen" -#: admin/AdminPage/FixesPage.php:138 +#: admin/AdminPage/FixesPage.php:142 msgid "General Fixes" msgstr "Allgemeine Korrekturen" -#: admin/AdminPage/FixesPage.php:212 +#: admin/AdminPage/FixesPage.php:220 msgid "These fixes help improve accessibility by modifying HTML elements and behaviors on your site." -msgstr "Diese Korrekturen verbessern die Barrierefreiheit, indem sie HTML-Elemente und Verhaltensweisen auf Ihrer Website modifizieren." +msgstr "Diese Korrekturen verbessern die Barrierefreiheit, indem HTML-Elemente und Verhaltensweisen auf Ihrer Website modifiziert werden." #: admin/AdminPage/FixesSettingType/Checkbox.php:46 #: admin/AdminPage/FixesSettingType/Text.php:37 #: build/admin.bundle.js:2 msgid "Get Pro to unlock this feature, opens in a new window." -msgstr "Holen Sie sich die Pro-Version, um diese Funktion freizuschalten. Öffnet sich in einem neuen Fenster." +msgstr "Holen Sie sich Pro, um diese Funktion freizuschalten, öffnet in einem neuen Fenster." #: admin/AdminPage/FixesSettingType/Checkbox.php:47 #: admin/AdminPage/FixesSettingType/Text.php:38 -#: admin/class-plugin-action-links.php:55 +#: admin/class-plugin-action-links.php:59 +#: build/admin.bundle.js:2 msgid "Get Pro" -msgstr "Pro-Version erwerben" +msgstr "Pro erwerben" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:347 +#: admin/class-ajax.php:394 msgid "Opens in a new window." -msgstr "Öffnet sich in einem neuen Fenster." +msgstr "Öffnet in einem neuen Fenster." #. translators: %s: the label of the fix #: admin/AdminPage/FixesSettingType/Text.php:54 #, php-format msgid "Read documentation for %s. Opens in a new window." -msgstr "Lesen Sie die Dokumentation für %s. Öffnet sich in einem neuen Fenster." +msgstr "Dokumentation für %s lesen. Öffnet in einem neuen Fenster." #: admin/class-accessibility-statement.php:33 msgid "Our Commitment to Web Accessibility" @@ -88,7 +396,7 @@ msgstr "Unser Engagement für Web-Barrierefreiheit" #: admin/class-accessibility-statement.php:53 msgid "[YOUR COMPANY NAME] is committed to providing a fully accessible website experience for all users of all abilities, including those who rely on assistive technologies like screen readers, screen enlargement software, and alternative keyboard input devices to navigate the web." -msgstr "[YOUR COMPANY NAME] verpflichtet sich, eine vollständig barrierefreie Website-Erfahrung für alle Nutzer aller Fähigkeiten zu bieten, einschließlich derer, die sich auf unterstützende Technologien wie Screenreader, Bildschirmvergrößerungssoftware und alternative Tastatureingabegeräte verlassen, um im Web zu navigieren." +msgstr "[YOUR COMPANY NAME] verpflichtet sich, eine vollständig zugängliche Website-Erfahrung für alle Nutzer aller Fähigkeiten zu bieten, einschließlich derjenigen, die auf Hilfstechnologien wie Screenreader, Bildschirmvergrößerungssoftware und alternative Tastatureingabegeräte angewiesen sind, um im Web zu navigieren." #: admin/class-accessibility-statement.php:54 msgid "Ongoing Efforts to Ensure Accessibility" @@ -96,13 +404,13 @@ msgstr "Fortlaufende Bemühungen zur Sicherstellung der Barrierefreiheit" #: admin/class-accessibility-statement.php:55 msgid "We follow the Web Content Accessibility Guidelines (WCAG) version 2.1 as our guiding principle for determining accessibility. These are internationally agreed-upon standards that cover a wide range of recommendations and best practices for making content useable. As we add new pages and functionality to our website, all designs, code, and content entry practices are checked against these standards." -msgstr "Wir folgen den Web Content Accessibility Guidelines (WCAG) Version 2.1 als Leitprinzip für die Bestimmung der Barrierefreiheit. Dies sind international vereinbarte Standards, die eine breite Palette von Empfehlungen und Best Practices für die Erstellung nutzbarer Inhalte abdecken. Wenn wir neue Seiten und Funktionen zu unserer Website hinzufügen, werden alle Designs, Codes und Inhalte-Eingabepraktiken anhand dieser Standards überprüft." +msgstr "Wir folgen den Web Content Accessibility Guidelines (WCAG) Version 2.1 als Leitprinzip für die Bestimmung der Barrierefreiheit. Dies sind international vereinbarte Standards, die eine breite Palette von Empfehlungen und bewährten Praktiken für die Nutzbarkeit von Inhalten abdecken. Wenn wir neue Seiten und Funktionen zu unserer Website hinzufügen, werden alle Designs, Codes und Praktiken zur Inhaltseingabe anhand dieser Standards überprüft." #. translators: 1 - A link opening tag, 2 - link closing tag #: admin/class-accessibility-statement.php:58 #, php-format msgid "Website accessibility is an ongoing process. We continually test content and features for WCAG 2.1 Level AA compliance and remediate any issues to ensure we meet or exceed the standards. Testing of our website is performed by our team members using industry-standard tools such as the %1$sAccessibility Checker WordPress Plugin%2$s, color contrast analyzers, keyboard-only navigation techniques, and Flesch-Kincaid readability tests." -msgstr "Barrierefreiheit im Web ist ein fortlaufender Prozess. Wir testen kontinuierlich Inhalte und Funktionen auf Konformität mit WCAG 2.1 Level AA und beheben etwaige Probleme, um sicherzustellen, dass wir die Standards erfüllen oder übertreffen. Die Prüfung unserer Website wird von unseren Teammitgliedern durchgeführt, die branchenübliche Tools wie das %1$sAccessibility Checker WordPress Plugin%2$s, Farbkontrast-Analysatoren, Techniken zur reinen Tastaturnavigation und Flesch-Kincaid-Lesbarkeitstest verwenden." +msgstr "Barrierefreiheit im Web ist ein fortlaufender Prozess. Wir testen kontinuierlich Inhalte und Funktionen auf WCAG 2.1 Level AA-Konformität und beheben alle Probleme, um sicherzustellen, dass wir die Standards erfüllen oder übertreffen. Die Tests unserer Website werden von unseren Teammitgliedern mit branchenüblichen Tools wie dem %1$sAccessibility Checker WordPress Plugin%2$s, Farbkontrast-Analysatoren, Techniken zur reinen Tastaturnavigation und Flesch-Kincaid-Lesbarkeitstests durchgeführt." #: admin/class-accessibility-statement.php:62 msgid "Accessibility Features On Our Website" @@ -114,7 +422,7 @@ msgstr "Im Folgenden finden Sie eine Liste der Elemente, die wir in unsere Websi #: admin/class-accessibility-statement.php:64 msgid "[LIST ACCESSIBILITY FEATURES HERE]" -msgstr "[LISTE DER BARRIEREFREIHEITSFUNKTIONEN HIER EINFÜGEN]" +msgstr "[LISTE DER BARRIEREFREIHEITSFUNKTIONEN HIER]" #: admin/class-accessibility-statement.php:65 msgid "Where We're Improving" @@ -126,33 +434,33 @@ msgstr "In unseren Bemühungen, unsere Website auf den Standard zu bringen, konz #: admin/class-accessibility-statement.php:67 msgid "[LIST ITEMS YOU'RE WORKING TO FIX HERE]" -msgstr "[LISTE DER ZU BEHEBENDEN PROBLEME HIER EINFÜGEN]" +msgstr "[LISTE DER ELEMENTE, AN DENEN SIE ARBEITEN, HIER]" #: admin/class-accessibility-statement.php:68 msgid "[IT MAY HELP TO REVIEW THE OPEN ISSUES TAB TO SEE THE MOST COMMON PROBLEMS]" -msgstr "[ES KANN HILFREICH SEIN, DIE REGISTERKARTE 'OFFENE PROBLEME' ZU ÜBERPRÜFEN, UM DIE HÄUFIGSTEN PROBLEME ZU SEHEN]" +msgstr "[ES KANN HILFREICH SEIN, DIE REGISTERKARTE \"OFFENE PROBLEME\" ZU ÜBERPRÜFEN, UM DIE HÄUFIGSTEN PROBLEME ZU SEHEN]" #: admin/class-accessibility-statement.php:69 msgid "This is part of our broader effort to make everyone's experience at [COMPANY NAME] a welcoming and enjoyable one. Please note that while we make every effort to provide information accessible for all users, we cannot guarantee the accessibility of third party websites to which we may link." -msgstr "Dies ist Teil unserer Bemühungen, den Aufenthalt bei [NAME DES UNTERNEHMENS] so angenehm und angenehm wie möglich zu gestalten. Bitte beachten Sie, dass wir uns zwar bemühen, allen Nutzern zugängliche Informationen zur Verfügung zu stellen, wir jedoch nicht für die Zugänglichkeit von Websites Dritter garantieren können, auf die wir möglicherweise verlinken." +msgstr "Dies ist Teil unserer umfassenderen Bemühungen, die Erfahrung bei [COMPANY NAME] für alle willkommen und angenehm zu gestalten. Bitte beachten Sie, dass wir zwar alle Anstrengungen unternehmen, um Informationen für alle Nutzer zugänglich zu machen, aber wir können die Barrierefreiheit von Websites Dritter, auf die wir verlinken könnten, nicht garantieren." #: admin/class-accessibility-statement.php:70 msgid "Accessibility Support Contact" -msgstr "Kontakt für Unterstützung bei der Barrierefreiheit" +msgstr "Kontakt für Barrierefreiheitsunterstützung" #: admin/class-accessibility-statement.php:71 msgid "We welcome comments, questions, and feedback on our website. If you are using assistive technologies and are having difficulty using our website, please email [YOUR ACCESSIBILITY EMAIL ADDRESS] or give us a call at [YOUR PHONE NUMBER]. We will do our best to assist you and resolve issues." -msgstr "Wir freuen uns über Kommentare, Fragen und Feedback zu unserer Website. Wenn Sie unterstützende Technologien verwenden und Schwierigkeiten bei der Nutzung unserer Website haben, senden Sie bitte eine E-Mail an [IHRE E-MAIL-ADRESSE FÜR BARRIEREFREIHEIT] oder rufen Sie uns unter [IHRE TELEFONNUMMER] an. Wir werden unser Bestes tun, um Ihnen zu helfen und Probleme zu lösen." +msgstr "Wir freuen uns über Kommentare, Fragen und Feedback zu unserer Website. Wenn Sie Hilfstechnologien verwenden und Schwierigkeiten bei der Nutzung unserer Website haben, senden Sie bitte eine E-Mail an [IHRE E-MAIL-ADRESSE FÜR BARRIEREFREIHEIT] oder rufen Sie uns unter [IHRE TELEFONNUMMER] an. Wir werden unser Bestes tun, um Ihnen zu helfen und Probleme zu lösen." #. translators: %1$s: opening link tag, %2$s: closing link tag #: admin/class-admin-footer-text.php:46 #, php-format msgid "Enjoying Accessibility Checker? %1$sPlease leave us a ★★★★★ rating.%2$s We really appreciate your support!" -msgstr "Gefällt Ihnen Accessibility Checker? %1$sBitte hinterlassen Sie uns eine ★★★★★-Bewertung.%2$s Wir schätzen Ihre Unterstützung sehr!" +msgstr "Gefällt Ihnen Accessibility Checker? %1$sBitte hinterlassen Sie uns eine ★★★★★ Bewertung.%2$s Wir schätzen Ihre Unterstützung sehr!" #: admin/class-admin-footer-text.php:47 msgid "Please leave us a five star rating (opens in new window)" -msgstr "Bitte hinterlassen Sie uns eine Fünf-Sterne-Bewertung (öffnet sich in einem neuen Fenster)" +msgstr "Bitte hinterlassen Sie uns eine Fünf-Sterne-Bewertung (öffnet in neuem Fenster)" #. translators: %1$s: opening link tag, %2$s: closing link tag #: admin/class-admin-footer-text.php:55 @@ -162,571 +470,842 @@ msgstr "Möchten Sie mehr mit Accessibility Checker machen? %1$sPro-Funktionen f #: admin/class-admin-footer-text.php:56 msgid "Unlock Pro Features (opens in new window)" -msgstr "Pro-Funktionen freischalten (öffnet sich in einem neuen Fenster)" +msgstr "Pro-Funktionen freischalten (öffnet in neuem Fenster)" -#: admin/class-admin-notices.php:129 +#: admin/class-admin-notices.php:139 msgid "🎉 Black Friday special! 🎉" msgstr "🎉 Black Friday Angebot! 🎉" -#: admin/class-admin-notices.php:130 -msgid "Upgrade to a paid version of Accessibility Checker from November 25th to December 3rd and get 30% off! Full site scanning, site-wide open issues report, ignore logs, and more." -msgstr "Upgrade auf eine kostenpflichtige Version von Accessibility Checker vom 25. November bis 3. Dezember und erhalte 30% Rabatt! Vollständige Website-Scans, seitenweiter Bericht über offene Probleme, Ignorier-Protokolle und mehr." +#: admin/class-admin-notices.php:140 +msgid "Upgrade to a paid version of Accessibility Checker from November 24th to December 3rd and get 30% off! Full site scanning, site-wide open issues report, ignore logs, and more." +msgstr "Upgraden Sie vom 24. November bis 3. Dezember auf eine kostenpflichtige Version von Accessibility Checker und erhalten Sie 30 % Rabatt! Vollständiger Website-Scan, websiteübergreifender Bericht über offene Probleme, Ignorierprotokolle und mehr." -#: admin/class-admin-notices.php:131 -#: admin/class-admin-notices.php:218 +#: admin/class-admin-notices.php:141 msgid "Ask a Pre-Sale Question" msgstr "Stellen Sie eine Frage vor dem Kauf" -#: admin/class-admin-notices.php:132 -#: admin/class-admin-notices.php:219 +#: admin/class-admin-notices.php:142 +#: admin/class-admin-notices.php:245 msgid "Upgrade Now" msgstr "Jetzt upgraden" -#: admin/class-admin-notices.php:151 -#: admin/class-admin-notices.php:238 -#: admin/class-admin-notices.php:327 -#: admin/class-ajax.php:56 -#: admin/class-ajax.php:205 -#: admin/class-ajax.php:584 -#: admin/class-ajax.php:722 -#: admin/class-ajax.php:802 -#: admin/class-frontend-highlight.php:79 +#: admin/class-admin-notices.php:161 +#: admin/class-admin-notices.php:266 +#: admin/class-admin-notices.php:356 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:223 +#: admin/class-ajax.php:634 +#: admin/class-ajax.php:818 +#: admin/class-frontend-highlight.php:82 +#: admin/class-frontend-highlight.php:100 +#: admin/class-frontend-highlight.php:105 +#: admin/class-frontend-highlight.php:109 msgid "Permission Denied" msgstr "Zugriff verweigert" -#: admin/class-admin-notices.php:160 -#: admin/class-admin-notices.php:250 -#: admin/class-admin-notices.php:347 +#: admin/class-admin-notices.php:173 +#: admin/class-admin-notices.php:279 +#: admin/class-admin-notices.php:380 msgid "Update option wasn't successful" -msgstr "Aktualisierung der Option war nicht erfolgreich" +msgstr "Aktualisierungsoption war nicht erfolgreich" + +#: admin/class-admin-notices.php:226 +msgid "⚡️ Global Accessibility Awareness Day Flash Sale" +msgstr "⚡️ Global Accessibility Awareness Day Flash Sale" + +#. translators: 1: opening anchor tag for accessibility courses link, 2: closing anchor tag, 3: opening anchor tag for ArchiveWP link, 4: closing anchor tag +#: admin/class-admin-notices.php:232 +#, php-format +msgid "3 days only: Save 15%% on %1$saccessibility courses%2$s and Equalize Digital's %3$sArchiveWP plugin%4$s. Go further with accessibility." +msgstr "Nur 3 Tage: Sparen Sie 15 %% auf %1$sBarrierefreiheitskurse%2$s und das %3$sArchiveWP Plugin%4$s von Equalize Digital. Gehen Sie weiter mit Barrierefreiheit." -#: admin/class-admin-notices.php:216 -msgid "🎉 Get 25% off Accessibility Checker Pro in honor of Global Accessibility Awareness Day! 🎉" -msgstr "🎉 Erhalte 25% Rabatt auf Accessibility Checker Pro anlässlich des Global Accessibility Awareness Day! 🎉" +#: admin/class-admin-notices.php:238 +msgid "Limited-time offer • May 20–22 • Use coupon code " +msgstr "Zeitlich begrenztes Angebot • 20.–22. Mai • Gutscheincode verwenden " + +#: admin/class-admin-notices.php:239 +msgid "Grab the Deal Before It Ends" +msgstr "Sichern Sie sich das Angebot, bevor es endet" -#: admin/class-admin-notices.php:217 -msgid "Use coupon code GAAD25 from May 13th-May 21st to get access to full-site scanning and other pro features at a special discount. Not sure if upgrading is right for you?" -msgstr "Verwenden Sie den Gutscheincode GAAD25 vom 13. Bis 21. Mai, um Zugang zum vollständigen Website-Scan und anderen Pro-Funktionen zu einem Sonderpreis zu erhalten. Nicht sicher, ob ein Upgrade das Richtige für Sie ist?" +#: admin/class-admin-notices.php:242 +msgid "3 days only: Save 15% when you upgrade to Accessibility Checker Pro with coupon code" +msgstr "Nur 3 Tage: Sparen Sie 15 %, wenn Sie mit dem Gutscheincode auf Accessibility Checker Pro upgraden" -#: admin/class-admin-notices.php:302 +#: admin/class-admin-notices.php:244 +msgid "Limited-time offer • May 20–22" +msgstr "Zeitlich begrenztes Angebot • 20.–22. Mai" + +#: admin/class-admin-notices.php:331 msgid "Hello! Thank you for using Accessibility Checker as part of your accessibility toolkit. Since you've been using it for a while, would you please write a 5-star review of Accessibility Checker in the WordPress plugin directory? This will help increase our visibility so more people can learn about the importance of web accessibility. Thanks so much!" -msgstr "Hallo! Vielen Dank, dass Sie Accessibility Checker als Teil Ihres Accessibility-Toolkits verwenden. Da Sie es schon eine Weile nutzen, würden Sie bitte eine 5-Sterne-Bewertung für Accessibility Checker im WordPress-Plugin-Verzeichnis schreiben? Dies wird uns helfen, unsere Sichtbarkeit zu erhöhen, sodass mehr Menschen über die Bedeutung von Webzugänglichkeit erfahren können. Vielen Dank!" +msgstr "Hallo! Vielen Dank, dass Sie Accessibility Checker als Teil Ihres Barrierefreiheits-Toolkits verwenden. Da Sie ihn schon eine Weile benutzen, würden Sie bitte eine 5-Sterne-Bewertung für Accessibility Checker im WordPress-Plugin-Verzeichnis schreiben? Dies wird dazu beitragen, unsere Sichtbarkeit zu erhöhen, damit mehr Menschen über die Bedeutung der Web-Barrierefreiheit erfahren können. Vielen Dank!" -#: admin/class-admin-notices.php:305 +#: admin/class-admin-notices.php:334 msgid "Write A Review" msgstr "Eine Bewertung schreiben" -#: admin/class-admin-notices.php:306 +#: admin/class-admin-notices.php:335 msgid "Remind Me In Two Weeks" -msgstr "Erinnere mich in zwei Wochen" +msgstr "In zwei Wochen erinnern" -#: admin/class-admin-notices.php:307 +#: admin/class-admin-notices.php:336 msgid "Never Ask Again" msgstr "Nie wieder fragen" -#: admin/class-admin-notices.php:334 +#: admin/class-admin-notices.php:363 msgid "The review action value was not set" -msgstr "Der Bewertungsaktionswert wurde nicht gesetzt" +msgstr "Der Bewertungsaktionswert wurde nicht festgelegt" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:212 -#: admin/class-ajax.php:591 -#: admin/class-ajax.php:809 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:227 +#: admin/class-ajax.php:638 msgid "The post ID was not set" msgstr "Die Beitrags-ID wurde nicht festgelegt" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:68 +#: admin/class-ajax.php:231 +#: admin/class-ajax.php:642 +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:87 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:90 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." +msgstr "Ihr Inhalt hat ein Leseniveau auf oder unter der 9. Klasse und benötigt keine vereinfachte Zusammenfassung." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:93 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:95 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:126 +#. translators: %d: percentage of passed checks +#: admin/class-ajax.php:106 #, php-format -msgid "%s Error" -msgid_plural "%s Errors" -msgstr[0] "%s Fehler" -msgstr[1] "%s Fehler" +msgid "%d%% Passed Checks" +msgstr "%d%% bestandene Prüfungen" -#. translators: %s: Number of contrast errors -#: admin/class-ajax.php:132 -#, php-format -msgid "%s Contrast Error" -msgid_plural "%s Contrast Errors" -msgstr[0] "%s Kontrastfehler" -msgstr[1] "%s Kontrastfehler" +#: admin/class-ajax.php:115 +#: admin/class-welcome-page.php:102 +#: admin/class-widgets.php:111 +#: build/sidebar.bundle.js:2 +msgid "Passed Checks" +msgstr "Prüfungen bestanden" + +#: admin/class-ajax.php:125 +msgid "Passed Tests" +msgstr "Bestandene Tests" -#. translators: %s: Number of warnings #: admin/class-ajax.php:138 -#, php-format -msgid "%s Warning" -msgid_plural "%s Warnings" -msgstr[0] "%s Warnung" -msgstr[1] "%s Warnungen" +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +msgid "Problem" +msgid_plural "Problems" +msgstr[0] "Problem" +msgstr[1] "Probleme" -#. translators: %s: Number of ignored items #: admin/class-ajax.php:144 +msgid "Contrast Problem" +msgid_plural "Contrast Problems" +msgstr[0] "Kontrastproblem" +msgstr[1] "Kontrastprobleme" + +#: admin/class-ajax.php:150 +#: admin/class-widgets.php:182 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid "Needs Review" +msgid_plural "Needs Review" +msgstr[0] "Überprüfung erforderlich" +msgstr[1] "Überprüfung erforderlich" + +#: admin/class-ajax.php:156 +#: admin/class-ajax.php:385 +#: admin/class-welcome-page.php:197 +msgid "Dismissed Issue" +msgid_plural "Dismissed Issues" +msgstr[0] "Verworfenes Problem" +msgstr[1] "Verworfene Probleme" + +#: admin/class-ajax.php:176 +#: includes/wcag.php:1763 +#: build/sidebar.bundle.js:2 +msgid "Reading Level" +msgstr "Leseniveau" + +#. translators: 1: opening anchor tag, 2: closing anchor tag with arrow icon and screen reader text +#: admin/class-ajax.php:187 #, php-format -msgid "%s Ignored Item" -msgid_plural "%s Ignored Items" -msgstr[0] "%s Ignoriertes Element" -msgstr[1] "%s Ignorierte Elemente" +msgid "* True accessibility requires manual testing in addition to automated scans. %1$sLearn how to manually test for accessibility%2$s" +msgstr "* Echte Barrierefreiheit erfordert zusätzlich zu automatisierten Scans auch manuelle Tests. %1$sErfahren Sie, wie Sie Barrierefreiheit manuell testen können%2$s" -#: admin/class-ajax.php:182 +#: admin/class-ajax.php:198 +#: admin/class-ajax.php:790 +#: admin/class-ignore-ui.php:126 +#: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 +msgid ", opens a new window" +msgstr ", öffnet ein neues Fenster" + +#: admin/class-ajax.php:203 msgid "No summary to return" -msgstr "Keine Zusammenfassung verfügbar" +msgstr "Keine Zusammenfassung zum Zurückgeben" -#: admin/class-ajax.php:226 +#: admin/class-ajax.php:242 +#: includes/classes/class-rest-api.php:905 msgid "Invalid table name" msgstr "Ungültiger Tabellenname" -#: admin/class-ajax.php:372 +#: admin/class-ajax.php:383 +msgid " total" +msgstr " Gesamt" + +#. translators: 1: rule title, 2: "Opens in a new window." +#: admin/class-ajax.php:392 +#, php-format +msgid "Read documentation for %1$s. %2$s" +msgstr "Dokumentation für %1$s lesen. %2$s" + +#. translators: %s: rule title +#: admin/class-ajax.php:400 +#, php-format +msgid "Expand issues for %s" +msgstr "Probleme für %s erweitern" + +#: admin/class-ajax.php:426 +#: build/issueModal.bundle.js:2 msgid "These settings enable global fixes across your entire site." -msgstr "Diese Einstellungen aktivieren globale Korrekturen für Ihre gesamte Website." +msgstr "Diese Einstellungen aktivieren globale Korrekturen auf Ihrer gesamten Website." -#: admin/class-ajax.php:373 +#: admin/class-ajax.php:427 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." +msgstr "Seiten müssen möglicherweise neu gespeichert oder ein vollständiger Website-Scan durchgeführt werden, damit die Korrekturen in den Berichten angezeigt werden." -#: admin/class-ajax.php:401 +#: admin/class-ajax.php:455 #: build/frontendHighlighterApp.bundle.js:2 +#: build/issueModal.bundle.js:2 msgid "Save" msgstr "Speichern" -#: admin/class-ajax.php:423 +#: admin/class-ajax.php:477 +#: build/issueModal.bundle.js:2 msgid "Affected Code" msgstr "Betroffener Code" +#: admin/class-ajax.php:480 +#: build/issueModal.bundle.js:2 +msgid "Image" +msgstr "Bild" + +#: admin/class-ajax.php:483 +#: build/issueModal.bundle.js:2 +msgid "Landmark" +msgstr "Landmarke" + +#: admin/class-ajax.php:486 +msgid "Actions" +msgstr "Aktionen" + +#: admin/class-ajax.php:495 +msgid "Dismissed" +msgstr "Ignoriert" + +#: admin/class-ajax.php:495 +msgid "Dismiss" +msgstr "Ignorieren" + +#. translators: %d: issue ID number +#: admin/class-ajax.php:506 +#, php-format +msgid "Issue ID %d" +msgstr "Problem-ID %d" + +#. translators: %d: issue ID number +#: admin/class-ajax.php:524 +#, php-format +msgid "image for issue %d" +msgstr "Bild für Problem %d" + #. Translators: %d is the issue ID. -#: admin/class-ajax.php:500 +#: admin/class-ajax.php:561 #, 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:501 +#: admin/class-ajax.php:562 +#: build/issueModal.bundle.js:2 +#: build/sidebar.bundle.js:2 msgid "View on page" msgstr "Auf Seite anzeigen" -#: admin/class-ajax.php:520 +#: admin/class-ajax.php:581 msgid "Fix: " msgstr "Korrektur: " -#: admin/class-ajax.php:521 +#: admin/class-ajax.php:582 msgid "Fix" msgstr "Korrektur" -#: admin/class-ajax.php:544 -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:562 +#: admin/class-ajax.php:615 msgid "No details to return" -msgstr "Keine Details verfügbar" +msgstr "Keine Details zum Zurückgeben" -#: admin/class-ajax.php:701 -msgid "No readability data to return" -msgstr "Keine Lesbarkeitsdetails verfügbar" +#. translators: %s: reading grade level value e.g. "8th Grade (Flesch-Kincaid)", displayed in a element. Do not translate the %s placeholder. +#: admin/class-ajax.php:687 +#, php-format +msgid "Post Reading Grade Level: %s" +msgstr "Lesestufe des Beitrags: %s" + +#: admin/class-ajax.php:688 +#: admin/class-ajax.php:709 +#: admin/site-health/class-pro.php:75 +msgid "None" +msgstr "Keine" + +#: admin/class-ajax.php:691 +msgid "Your post has a reading level higher than 9th grade. Web Content Accessibility Guidelines (WCAG) at the AAA level require a simplified summary of your post that is 9th grade or below." +msgstr "Ihr Beitrag hat eine Lesestufe, die höher als die 9. Klasse ist. Die Web Content Accessibility Guidelines (WCAG) auf AAA-Niveau erfordern eine vereinfachte Zusammenfassung Ihres Beitrags, die der 9. Klasse oder darunter entspricht." + +#: admin/class-ajax.php:693 +msgid "Your post does not contain enough content to calculate its reading level." +msgstr "Ihr Beitrag enthält nicht genügend Inhalt, um seine Lesestufe zu berechnen." + +#: admin/class-ajax.php:695 +msgid "A simplified summary is not necessary when content reading level is 9th grade or below. Choose when to prompt for a simplified summary on the settings page." +msgstr "Eine vereinfachte Zusammenfassung ist nicht erforderlich, wenn die Lesestufe des Inhalts der 9. Klasse oder darunter entspricht. Wählen Sie auf der Einstellungsseite, wann eine vereinfachte Zusammenfassung angefordert werden soll." + +#. translators: %s: the simplified summary grade level value (wrapped in a tag) +#: admin/class-ajax.php:708 +#: admin/class-ajax.php:720 +#, php-format +msgid "Simplified Summary Reading Grade Level: %s" +msgstr "Vereinfachte Zusammenfassung Lesestufe: %s" + +#: admin/class-ajax.php:712 +#: build/sidebar.bundle.js:2 +msgid "Not enough content to determine an accurate reading level." +msgstr "Nicht genügend Inhalt, um eine genaue Lesestufe zu bestimmen." + +#: admin/class-ajax.php:725 +msgid "Your simplified summary has a reading level above 9th grade." +msgstr "Ihre vereinfachte Zusammenfassung hat eine Lesestufe über der 9. Klasse." + +#: admin/class-ajax.php:726 +msgid "Your simplified summary has a reading level at or below 9th grade." +msgstr "Ihre vereinfachte Zusammenfassung hat eine Lesestufe von oder unter der 9. Klasse." + +#: admin/class-ajax.php:737 +#: admin/class-ajax.php:767 +msgid "Simplified summary is not being automatically inserted into the content." +msgstr "Die vereinfachte Zusammenfassung wird nicht automatisch in den Inhalt eingefügt." + +#. translators: %s: link to the settings page +#: admin/class-ajax.php:740 +#, php-format +msgid "Your Prompt for Simplified Summary is set to “never.” If you would like the simplified summary to be displayed automatically, you can change this on the %s." +msgstr "Ihre Aufforderung zur vereinfachten Zusammenfassung ist auf „nie“ eingestellt. Wenn Sie möchten, dass die vereinfachte Zusammenfassung automatisch angezeigt wird, können Sie dies auf der %s ändern." +#: admin/class-ajax.php:741 #: admin/class-ajax.php:758 -#: admin/class-ajax.php:781 +#: admin/class-ajax.php:771 +msgid "settings page" +msgstr "Einstellungsseite" + +#. translators: %s: position phrase wrapped in a element (e.g. "before the content"). Do not translate the %s placeholder. +#: admin/class-ajax.php:752 +#, php-format +msgid "Simplified summary is being automatically inserted %s." +msgstr "Die vereinfachte Zusammenfassung wird automatisch %s eingefügt." + +#: admin/class-ajax.php:753 +msgid "the content" +msgstr "der Inhalt" + +#. translators: %s: link to the settings page +#: admin/class-ajax.php:757 +#, php-format +msgid "Set where the Simplified Summary is inserted into the content on the %s." +msgstr "Legen Sie auf der %s fest, wo die vereinfachte Zusammenfassung in den Inhalt eingefügt wird." + +#. translators: %s: link to the settings page +#: admin/class-ajax.php:770 +#, php-format +msgid "Your Simplified Summary location is set to “manually” which requires a function be added to your page template. If you would like the simplified summary to be displayed automatically, you can change this on the %s." +msgstr "Ihr Speicherort für die vereinfachte Zusammenfassung ist auf „manuell“ eingestellt, was erfordert, dass eine Funktion zu Ihrer Seitenvorlage hinzugefügt wird. Wenn Sie möchten, dass die vereinfachte Zusammenfassung automatisch angezeigt wird, können Sie dies auf der %s ändern." + +#: admin/class-ajax.php:784 +#: includes/classes/class-simplified-summary.php:77 +#: includes/options-page.php:932 +#: includes/options-page.php:956 +#: build/sidebar.bundle.js:2 +msgid "Simplified Summary" +msgstr "Vereinfachte Zusammenfassung" + +#: admin/class-ajax.php:786 +#: build/sidebar.bundle.js:2 +msgid "Save Summary" +msgstr "Zusammenfassung speichern" + +#: admin/class-ajax.php:790 +msgid "Learn more about improving readability and simplified summary requirements" +msgstr "Erfahren Sie mehr über die Verbesserung der Lesbarkeit und die Anforderungen an vereinfachte Zusammenfassungen" + +#: admin/class-ajax.php:793 +msgid "No readability data to return" +msgstr "Keine Lesbarkeitsdate zum Zurückgeben" + +#: admin/class-ajax.php:853 +#: admin/class-ajax.php:874 msgid "No ignore data to return" -msgstr "Keine Ignorier-Daten verfügbar" +msgstr "Keine Ignorierdaten zum Zurückgeben" -#: admin/class-ajax.php:816 -msgid "The summary was not set" -msgstr "Die Zusammenfassung wurde nicht festgelegt" +#: admin/class-enqueue-admin.php:435 +msgid "* Screen Reader Text" +msgstr "* Screenreader-Text" -#: admin/class-frontend-highlight.php:84 +#: admin/class-frontend-highlight.php:86 msgid "The id value was not set" msgstr "Der ID-Wert wurde nicht festgelegt" -#: admin/class-frontend-highlight.php:92 +#: admin/class-frontend-highlight.php:93 +#: includes/classes/class-rest-api.php:1043 +msgid "Post not found" +msgstr "Beitrag nicht gefunden" + +#: admin/class-frontend-highlight.php:115 msgid "Issue query returned no results" msgstr "Problemabfrage ergab keine Ergebnisse" -#: admin/class-frontend-highlight.php:138 +#: admin/class-frontend-highlight.php:168 msgid "Object query returned no results" msgstr "Objektabfrage ergab keine Ergebnisse" -#: admin/class-plugin-action-links.php:48 -#: includes/classes/class-admin-toolbar.php:94 -#: includes/options-page.php:66 +#: admin/class-ignore-ui.php:31 +msgid "False positive" +msgstr "Falsch positiv" + +#: admin/class-ignore-ui.php:32 +msgid "The scanner flagged this, but it does not apply to this content." +msgstr "Der Scanner hat dies markiert, aber es trifft auf diesen Inhalt nicht zu." + +#: admin/class-ignore-ui.php:35 +msgid "Remediated" +msgstr "Behoben" + +#: admin/class-ignore-ui.php:36 +msgid "The issue has been fixed, but the page has not been rescanned yet." +msgstr "Das Problem wurde behoben, aber die Seite wurde noch nicht erneut gescannt." + +#: admin/class-ignore-ui.php:39 +msgid "Confirmed accessible" +msgstr "Barrierefreiheit bestätigt" + +#: admin/class-ignore-ui.php:40 +msgid "Reviewed and verified to meet accessibility requirements." +msgstr "Überprüft und verifiziert, um die Anforderungen an die Barrierefreiheit zu erfüllen." + +#: admin/class-ignore-ui.php:82 +msgid "Username:" +msgstr "Benutzername:" + +#: admin/class-ignore-ui.php:92 +msgid "Date:" +msgstr "Datum:" + +#: admin/class-ignore-ui.php:97 +#: build/issueModal.bundle.js:2 +msgid "Reopen Issue" +msgstr "Problem erneut öffnen" + +#: admin/class-ignore-ui.php:98 +#: build/issueModal.bundle.js:2 +msgid "Dismiss Issue" +msgstr "Problem verwerfen" + +#: admin/class-ignore-ui.php:119 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:142 +msgid "Comment" +msgstr "Kommentar" + +#: admin/class-ignore-ui.php:126 +msgid "Manage Globally Dismissed" +msgstr "Global verworfene Probleme verwalten" + +#: admin/class-ignore-ui.php:134 +msgid "Your user account doesn't have permission to dismiss this issue." +msgstr "Ihr Benutzerkonto hat keine Berechtigung, dieses Problem zu verwerfen." + +#: admin/class-ignore-ui.php:156 +#: build/issueModal.bundle.js:2 +msgid "Dismiss issue as:" +msgstr "Problem verwerfen als:" + +#: admin/class-plugin-action-links.php:52 +#: includes/classes/class-admin-toolbar.php:98 +#: includes/options-page.php:72 msgid "Settings" msgstr "Einstellungen" -#: admin/class-plugin-action-links.php:60 +#: admin/class-plugin-action-links.php:64 msgid "Get Accessibility Checker Pro, opens in new window" -msgstr "Holen Sie sich Accessibility Checker Pro, öffnet in neuem Fenster" +msgstr "Accessibility Checker Pro erhalten, öffnet in neuem Fenster" -#: admin/class-plugin-row-meta.php:53 +#: admin/class-plugin-row-meta.php:57 msgid "View Accessibility Checker Documentation (opens in new window)" msgstr "Accessibility Checker Dokumentation anzeigen (öffnet in neuem Fenster)" -#: admin/class-plugin-row-meta.php:54 -#: admin/class-widgets.php:309 +#: admin/class-plugin-row-meta.php:58 +#: admin/class-widgets.php:318 msgid "Documentation" msgstr "Dokumentation" -#: admin/class-plugin-row-meta.php:59 +#: admin/class-plugin-row-meta.php:63 msgid "Get support for Accessibility Checker (opens in new window)" msgstr "Support für Accessibility Checker erhalten (öffnet in neuem Fenster)" -#: admin/class-plugin-row-meta.php:60 +#: admin/class-plugin-row-meta.php:64 msgid "Support" msgstr "Support" -#: admin/class-plugin-row-meta.php:65 +#: admin/class-plugin-row-meta.php:69 msgid "Rate Accessibility Checker plugin (opens in new window)" msgstr "Accessibility Checker Plugin bewerten (öffnet in neuem Fenster)" -#: admin/class-plugin-row-meta.php:66 +#: admin/class-plugin-row-meta.php:70 msgid "Rate plugin" msgstr "Plugin bewerten" -#: admin/class-upgrade-promotion.php:58 -msgid "Upgrade to Pro" -msgstr "Upgrade auf Pro" - -#: admin/class-upgrade-promotion.php:60 +#: admin/class-upgrade-promotion.php:64 msgid "Upgrade Sale Now" msgstr "Upgrade-Aktion jetzt" -#: admin/class-upgrade-promotion.php:82 +#: admin/class-upgrade-promotion.php:86 msgid "Unable to redirect to upgrade page." msgstr "Weiterleitung zur Upgrade-Seite nicht möglich." -#: admin/class-welcome-page.php:38 +#: admin/class-welcome-page.php:68 msgid "Most Recent Test Summary" msgstr "Zusammenfassung des letzten Tests" -#: admin/class-welcome-page.php:44 +#: admin/class-welcome-page.php:75 msgid "Update Counts" -msgstr "Zähler aktualisieren" +msgstr "Anzahl aktualisieren" -#: admin/class-welcome-page.php:48 +#: admin/class-welcome-page.php:80 msgid "Start New Scan" msgstr "Neuen Scan starten" -#: admin/class-welcome-page.php:52 +#: admin/class-welcome-page.php:84 msgid "View All Open Issues" msgstr "Alle offenen Probleme anzeigen" -#: admin/class-welcome-page.php:57 +#: admin/class-welcome-page.php:89 msgid "See History" msgstr "Verlauf anzeigen" -#: admin/class-welcome-page.php:70 -#: admin/class-widgets.php:98 -msgid "Passed Tests" -msgstr "Bestandene Tests" +#: admin/class-welcome-page.php:119 +msgid "Unique Problem" +msgid_plural "Unique Problems" +msgstr[0] "Einzigartiges Problem" +msgstr[1] "Einzigartige Probleme" + +#: admin/class-welcome-page.php:145 +msgid "Unique Contrast Problem" +msgid_plural "Unique Contrast Problems" +msgstr[0] "Einzigartiges Kontrastproblem" +msgstr[1] "Einzigartige Kontrastprobleme" -#: admin/class-welcome-page.php:86 -msgid "Unique Error" -msgid_plural "Unique Errors" -msgstr[0] "Einzigartiger Fehler" -msgstr[1] "Einzigartige Fehler" - -#: admin/class-welcome-page.php:111 -msgid "Unique Color Contrast Error" -msgid_plural "Unique Color Contrast Errors" -msgstr[0] "Einzigartiger Farbkontrastfehler" -msgstr[1] "Einzigartige Farbkontrastfehler" - -#: admin/class-welcome-page.php:136 -msgid "Unique Warning" -msgid_plural "Unique Warnings" -msgstr[0] "Einzigartige Warnung" -msgstr[1] "Einzigartige Warnungen" - -#: admin/class-welcome-page.php:161 -msgid "Ignored Item" -msgid_plural "Ignored Items" -msgstr[0] "Ignoriertes Element" -msgstr[1] "Ignorierte Elemente" - -#: admin/class-welcome-page.php:178 +#: admin/class-welcome-page.php:171 +msgid "Unique Item Needing Review" +msgid_plural "Unique Items Needing Review" +msgstr[0] "Einzigartiger zu überprüfender Artikel" +msgstr[1] "Einzigartige zu überprüfende Artikel" + +#: admin/class-welcome-page.php:214 msgid "Average Issues Per Page" msgstr "Durchschnittliche Probleme pro Seite" -#: admin/class-welcome-page.php:191 +#: admin/class-welcome-page.php:227 msgid "Average Issue Density" msgstr "Durchschnittliche Problemdichte" -#: admin/class-welcome-page.php:204 -#: admin/class-widgets.php:105 +#: admin/class-welcome-page.php:240 msgid "Report Last Updated:" msgstr "Bericht zuletzt aktualisiert:" -#: admin/class-welcome-page.php:214 -#: includes/options-page.php:408 +#: admin/class-welcome-page.php:250 +#: includes/options-page.php:619 msgid "Never" msgstr "Nie" -#: admin/class-welcome-page.php:228 +#: admin/class-welcome-page.php:264 +#: admin/class-widgets.php:97 msgid "URLs Scanned" msgstr "Gescannte URLs" #. translators: %1$s is the number of post types with issues, %2$s is the number of public post types. -#: admin/class-welcome-page.php:239 +#: admin/class-welcome-page.php:275 #, php-format msgid "%1$s of %2$s" msgstr "%1$s von %2$s" -#: admin/class-welcome-page.php:248 +#: admin/class-welcome-page.php:284 msgid "Post Types Checked" msgstr "Geprüfte Beitragstypen" -#: admin/class-welcome-page.php:261 +#: admin/class-welcome-page.php:297 msgid "URLs with 100% score" msgstr "URLs mit 100% Punktzahl" -#: admin/class-welcome-page.php:269 +#: admin/class-welcome-page.php:305 msgid "This summary is automatically updated every 24 hours, or any time a full site scan is completed. You can also manually update these results by clicking the Update Counts button." -msgstr "Diese Zusammenfassung wird automatisch alle 24 Stunden aktualisiert oder jedes Mal, wenn ein vollständiger Website-Scan abgeschlossen wird. Sie können diese Ergebnisse auch manuell aktualisieren, indem Sie auf die Schaltfläche 'Zähler aktualisieren' klicken." +msgstr "Diese Zusammenfassung wird automatisch alle 24 Stunden aktualisiert oder jedes Mal, wenn ein vollständiger Website-Scan abgeschlossen wird. Sie können diese Ergebnisse auch manuell aktualisieren, indem Sie auf die Schaltfläche \"Anzahl aktualisieren\" klicken." -#: admin/class-welcome-page.php:275 +#: admin/class-welcome-page.php:311 msgid "Your site has a large number of issues. For performance reasons, not all issues have been included in this summary." msgstr "Ihre Website hat eine große Anzahl von Problemen. Aus Leistungsgründen wurden nicht alle Probleme in diese Zusammenfassung aufgenommen." -#: admin/class-welcome-page.php:285 +#: admin/class-welcome-page.php:321 msgid "Site-Wide Accessibility Reports" -msgstr "Website-weite Barrierefreiheitsberichte" +msgstr "Websiteweite Barrierefreiheitsberichte" -#: admin/class-welcome-page.php:290 +#: admin/class-welcome-page.php:326 msgid "Hide banner" msgstr "Banner ausblenden" -#: admin/class-welcome-page.php:299 +#: admin/class-welcome-page.php:335 msgid "Unlock Detailed Accessibility Reports" msgstr "Detaillierte Barrierefreiheitsberichte freischalten" -#: admin/class-welcome-page.php:302 -#: admin/class-widgets.php:71 +#: admin/class-welcome-page.php:338 +#: admin/class-widgets.php:75 msgid "Start scanning your entire website for accessibility issues, get full-site reports, and become compliant with accessibility guidelines faster." -msgstr "Beginnen Sie, Ihre gesamte Website auf Barrierefreiheitsprobleme zu scannen, erhalten Sie Berichte für die gesamte Website und werden Sie schneller konform mit Barrierefreiheitsrichtlinien." +msgstr "Beginnen Sie mit dem Scannen Ihrer gesamten Website auf Barrierefreiheitsprobleme, erhalten Sie vollständige Website-Berichte und werden Sie schneller konform mit Barrierefreiheitsrichtlinien." -#: admin/class-welcome-page.php:306 -#: admin/class-widgets.php:73 +#: admin/class-welcome-page.php:342 +#: admin/class-widgets.php:77 msgid "Upgrade Accessibility Checker" msgstr "Accessibility Checker upgraden" -#: admin/class-widgets.php:69 +#: admin/class-widgets.php:73 msgid "close ad" msgstr "Anzeige schließen" -#: admin/class-widgets.php:70 +#: admin/class-widgets.php:74 msgid "Get Detailed Accessibility Reports" msgstr "Detaillierte Barrierefreiheitsberichte erhalten" -#: admin/class-widgets.php:88 +#: admin/class-widgets.php:92 msgid "Full Site Accessibility Status" msgstr "Barrierefreiheitsstatus der gesamten Website" -#: admin/class-widgets.php:113 -msgid "URLs Scanned:" -msgstr "Gescannte URLs:" +#: admin/class-widgets.php:99 +msgid "Updated" +msgstr "Aktualisiert" #: admin/class-widgets.php:121 -msgid "Errors:" -msgstr "Fehler:" +msgid "Problems:" +msgstr "Probleme:" -#: admin/class-widgets.php:125 -msgid "Color Contrast Errors:" -msgstr "Farbkontrastfehler:" +#: admin/class-widgets.php:127 +msgid "Contrast Problems:" +msgstr "Kontrastprobleme:" -#: admin/class-widgets.php:129 -msgid "Warnings:" -msgstr "Warnungen:" +#: admin/class-widgets.php:133 +msgid "Needs Review:" +msgstr "Überprüfung erforderlich:" -#: admin/class-widgets.php:144 +#: admin/class-widgets.php:148 msgid "Your site has accessibility issues that should be addressed as soon as possible to ensure compliance with accessibility guidelines." -msgstr "Ihre Website hat Barrierefreiheitsprobleme, die so schnell wie möglich behoben werden sollten, um die Einhaltung der Barrierefreiheitsrichtlinien sicherzustellen." +msgstr "Ihre Website hat Barrierefreiheitsprobleme, die so schnell wie möglich behoben werden sollten, um die Einhaltung der Barrierefreiheitsrichtlinien zu gewährleisten." -#: admin/class-widgets.php:147 +#: admin/class-widgets.php:151 msgid "Way to go! Accessibility Checker cannot find any accessibility problems in the content it tested. Some problems cannot be found by automated tools so don't forget to" -msgstr "Gut gemacht! Accessibility Checker kann keine Zugänglichkeitsprobleme in den getesteten Inhalten finden. Einige Probleme können von automatisierten Tools nicht erkannt werden, also vergessen Sie nicht" +msgstr "Gut gemacht! Accessibility Checker kann keine Barrierefreiheitsprobleme in den getesteten Inhalten finden. Einige Probleme können nicht durch automatisierte Tools gefunden werden, vergessen Sie daher nicht," -#: admin/class-widgets.php:147 +#: admin/class-widgets.php:151 msgid "manually test your site" msgstr "Ihre Website manuell zu testen" -#: admin/class-widgets.php:162 +#: admin/class-widgets.php:166 msgid "Issues By Post Type" msgstr "Probleme nach Beitragstyp" -#: admin/class-widgets.php:169 +#: admin/class-widgets.php:173 msgid "Post Type" msgstr "Beitragstyp" -#: admin/class-widgets.php:172 -msgid "Errors" -msgstr "Fehler" +#: admin/class-widgets.php:176 +#: build/sidebar.bundle.js:2 +msgid "Problems" +msgstr "Probleme" -#: admin/class-widgets.php:175 +#: admin/class-widgets.php:179 msgid "Contrast" msgstr "Kontrast" -#: admin/class-widgets.php:178 -msgid "Warnings" -msgstr "Warnungen" +#: admin/class-widgets.php:251 +msgid "Upgrade to Scan (opens in a new window)" +msgstr "Auf Scan aktualisieren (öffnet in neuem Fenster)" -#: admin/class-widgets.php:247 +#: admin/class-widgets.php:252 msgid "Upgrade to Scan" -msgstr "Upgrade für Scan" +msgstr "Upgrade zum Scannen" -#: admin/class-widgets.php:276 +#: admin/class-widgets.php:282 msgid "See More Reports" -msgstr "Mehr Berichte anzeigen" +msgstr "Weitere Berichte anzeigen" -#: admin/class-widgets.php:286 -#: partials/welcome-page.php:235 +#: admin/class-widgets.php:294 +#: partials/welcome-page.php:243 msgid "Learn Accessibility" msgstr "Barrierefreiheit lernen" -#: admin/class-widgets.php:307 +#: admin/class-widgets.php:316 msgid "Additional Resources" msgstr "Zusätzliche Ressourcen" -#: admin/class-widgets.php:308 +#: admin/class-widgets.php:317 msgid "Blog (opens in a new window)" msgstr "Blog (öffnet in einem neuen Fenster)" -#: admin/class-widgets.php:308 +#: admin/class-widgets.php:317 msgid "Blog" msgstr "Blog" -#: admin/class-widgets.php:309 +#: admin/class-widgets.php:318 msgid "Documentation (opens in a new window)" msgstr "Dokumentation (öffnet in einem neuen Fenster)" -#: admin/opt-in/class-email-opt-in.php:115 +#: admin/opt-in/class-email-opt-in.php:119 msgid "Accessibility Events & News in Your Inbox" -msgstr "Barrierefreiheits-Events & News in Ihrem Posteingang" +msgstr "Barrierefreiheitsereignisse & Neuigkeiten in Ihrem Posteingang" -#: admin/opt-in/class-email-opt-in.php:121 +#: admin/opt-in/class-email-opt-in.php:125 msgid "Subscribe to Equalize Digital's email list to get access to free accessibility webinars and training resources." -msgstr "Abonnieren Sie den E-Mail-Verteiler von Equalize Digital, um Zugang zu kostenlosen Webinaren und Schulungsressourcen zum Thema Barrierefreiheit zu erhalten." +msgstr "Abonnieren Sie die E-Mail-Liste von Equalize Digital, um Zugang zu kostenlosen Webinaren und Schulungsressourcen zur Barrierefreiheit zu erhalten." -#: admin/opt-in/class-email-opt-in.php:127 +#: admin/opt-in/class-email-opt-in.php:131 msgid "Email*" msgstr "E-Mail*" -#: admin/opt-in/class-email-opt-in.php:131 +#: admin/opt-in/class-email-opt-in.php:135 msgid "Type your email" -msgstr "Geben Sie Ihre E-Mail-Adresse ein" +msgstr "Geben Sie Ihre E-Mail ein" -#: admin/opt-in/class-email-opt-in.php:139 +#: admin/opt-in/class-email-opt-in.php:143 msgid "First Name" msgstr "Vorname" -#: admin/opt-in/class-email-opt-in.php:143 +#: admin/opt-in/class-email-opt-in.php:147 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:157 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Mit Ihrem Abonnement stimmen Sie dem Erhalt von E-Mails gemäß unserer %1$sDatenschutzrichtlinie%2$s zu." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" -msgstr "Accessibility Checker — Prüfverlauf" +msgstr "Accessibility Checker — Audit-Verlauf" -#: admin/site-health/class-checks.php:44 +#: admin/site-health/class-checks.php:48 msgid "Accessibility issues" msgstr "Barrierefreiheitsprobleme" -#: admin/site-health/class-checks.php:49 +#: admin/site-health/class-checks.php:53 msgid "Content checked for accessibility" msgstr "Inhalt auf Barrierefreiheit geprüft" -#: admin/site-health/class-checks.php:54 +#: admin/site-health/class-checks.php:58 msgid "Post types configured for accessibility checks" msgstr "Beitragstypen für Barrierefreiheitsprüfungen konfiguriert" -#: admin/site-health/class-checks.php:69 +#: admin/site-health/class-checks.php:73 msgid "Accessibility" msgstr "Barrierefreiheit" -#: admin/site-health/class-checks.php:96 +#: admin/site-health/class-checks.php:100 msgid "View Issues" msgstr "Probleme anzeigen" -#: admin/site-health/class-checks.php:103 +#: admin/site-health/class-checks.php:107 msgid "View Accessibility Checker" msgstr "Accessibility Checker anzeigen" -#: admin/site-health/class-checks.php:122 +#: admin/site-health/class-checks.php:126 msgid "Accessibility issues detected" msgstr "Barrierefreiheitsprobleme erkannt" #. translators: 1: error count, 2: warning count. -#: admin/site-health/class-checks.php:125 +#: admin/site-health/class-checks.php:129 #, php-format msgid "Accessibility Checker has detected %1$s errors and %2$s warnings." msgstr "Accessibility Checker hat %1$s Fehler und %2$s Warnungen erkannt." -#: admin/site-health/class-checks.php:141 +#: admin/site-health/class-checks.php:145 msgid "No accessibility issues detected" msgstr "Keine Barrierefreiheitsprobleme erkannt" -#: admin/site-health/class-checks.php:142 +#: admin/site-health/class-checks.php:146 msgid "Accessibility Checker has not found any issues in scanned content." -msgstr "Accessibility Checker hat keine Probleme im gescannten Inhalt gefunden." +msgstr "Accessibility Checker hat keine Probleme in den gescannten Inhalten gefunden." -#: admin/site-health/class-checks.php:160 +#: admin/site-health/class-checks.php:164 msgid "Content has not been checked" msgstr "Inhalt wurde nicht geprüft" -#: admin/site-health/class-checks.php:161 +#: admin/site-health/class-checks.php:165 msgid "No posts have been scanned yet. Run a full site scan to begin checking your content for accessibility issues." -msgstr "Es wurden noch keine Beiträge gescannt. Starte einen vollständigen Website-Scan, um deinen Inhalt auf Barrierefreiheitsprobleme zu prüfen." +msgstr "Es wurden noch keine Beiträge gescannt. Führen Sie einen vollständigen Website-Scan durch, um mit der Überprüfung Ihrer Inhalte auf Barrierefreiheitsprobleme zu beginnen." -#: admin/site-health/class-checks.php:165 +#: admin/site-health/class-checks.php:169 msgid "Start full site scan" msgstr "Vollständigen Website-Scan starten" -#: admin/site-health/class-checks.php:174 +#: admin/site-health/class-checks.php:178 msgid "Content is being checked for accessibility" msgstr "Inhalt wird auf Barrierefreiheit geprüft" #. translators: %s is the number of posts scanned. -#: admin/site-health/class-checks.php:177 +#: admin/site-health/class-checks.php:181 #, php-format msgid "Accessibility Checker has scanned %s post for accessibility issues." msgid_plural "Accessibility Checker has scanned %s posts for accessibility issues." msgstr[0] "Accessibility Checker hat %s Beitrag auf Barrierefreiheitsprobleme gescannt." msgstr[1] "Accessibility Checker hat %s Beiträge auf Barrierefreiheitsprobleme gescannt." -#: admin/site-health/class-checks.php:196 +#: admin/site-health/class-checks.php:200 msgid "No post types selected for accessibility checking" msgstr "Keine Beitragstypen für Barrierefreiheitsprüfung ausgewählt" -#: admin/site-health/class-checks.php:197 +#: admin/site-health/class-checks.php:201 msgid "Accessibility Checker cannot scan any content because no post types have been selected. Without configured post types, no accessibility issues will be detected." msgstr "Accessibility Checker kann keine Inhalte scannen, da keine Beitragstypen ausgewählt wurden. Ohne konfigurierte Beitragstypen werden keine Barrierefreiheitsprobleme erkannt." -#: admin/site-health/class-checks.php:201 +#: admin/site-health/class-checks.php:205 msgid "Configure post types" msgstr "Beitragstypen konfigurieren" -#: admin/site-health/class-checks.php:213 +#: admin/site-health/class-checks.php:217 msgid "Post types are configured for accessibility checking" msgstr "Beitragstypen sind für Barrierefreiheitsprüfung konfiguriert" #. translators: 1: number of post types, 2: comma-separated list of post type names. -#: admin/site-health/class-checks.php:216 +#: admin/site-health/class-checks.php:220 #, php-format msgid "Accessibility Checker is configured to scan %1$s post type: %2$s." msgid_plural "Accessibility Checker is configured to scan %1$s post types: %2$s." msgstr[0] "Accessibility Checker ist für das Scannen von %1$s Beitragstyp konfiguriert: %2$s." -msgstr[1] "Accessibility Checker ist für das Scannen von %1$s Beitragstypen konfiguriert: %2$s." +msgstr[1] "Accessibility Checker ist so konfiguriert, dass %1$s Beitragstypen gescannt werden: %2$s." #: admin/site-health/class-free.php:46 msgid "Accessibility Checker — Free" @@ -774,7 +1353,7 @@ msgid "Disabled" msgstr "Deaktiviert" #: admin/site-health/class-free.php:69 -#: includes/options-page.php:137 +#: includes/options-page.php:203 msgid "Delete Data" msgstr "Daten löschen" @@ -796,23 +1375,23 @@ msgstr "Aufforderung zur vereinfachten Zusammenfassung" #: admin/site-health/class-free.php:89 msgid "Post Count" -msgstr "Beitragszähler" +msgstr "Beitragsanzahl" #: admin/site-health/class-free.php:93 msgid "Error Count" -msgstr "Fehlerzähler" +msgstr "Fehleranzahl" #: admin/site-health/class-free.php:97 msgid "Warning Count" -msgstr "Warnungszähler" +msgstr "Warnungsanzahl" #: admin/site-health/class-free.php:101 msgid "DB Table Count" -msgstr "DB-Tabellenzähler" +msgstr "DB-Tabellenanzahl" #: admin/site-health/class-pro.php:47 msgid "Accessibility Checker — Pro" -msgstr "Accessibility Checker — Pro" +msgstr "Zugänglichkeitsprüfer — Pro" #: admin/site-health/class-pro.php:58 msgid "License Status" @@ -831,404 +1410,441 @@ msgid "Simplified Sum Heading" msgstr "Überschrift der vereinfachten Zusammenfassung" #: admin/site-health/class-pro.php:74 +#: includes/options-page.php:194 msgid "Ignore Permissions" -msgstr "Ignorier-Berechtigungen" - -#: admin/site-health/class-pro.php:75 -msgid "None" -msgstr "Keine" +msgstr "Ignorierberechtigungen" #: admin/site-health/class-pro.php:78 msgid "Ignores DB Table Count" -msgstr "Ignorierte DB-Tabellenzähler" +msgstr "Ignorierte DB-Tabellenanzahl" #. translators: %1$s is the site name, %2$s is a link with the plugin name. -#: includes/classes/class-accessibility-statement.php:45 +#: includes/classes/class-accessibility-statement.php:49 #, php-format msgid "%1$s uses %2$s to monitor our website's accessibility." msgstr "%1$s verwendet %2$s, um die Barrierefreiheit unserer Website zu überwachen." -#: includes/classes/class-accessibility-statement.php:50 +#: includes/classes/class-accessibility-statement.php:54 msgid "Accessibility Checker (opens in a new window)" msgstr "Accessibility Checker (öffnet in einem neuen Fenster)" #. translators: %1$s is a link to the accessibility policy page, with text "Accessibility Policy". -#: includes/classes/class-accessibility-statement.php:59 +#: includes/classes/class-accessibility-statement.php:63 #, php-format msgid "Read our %s" msgstr "Lesen Sie unsere %s" -#: includes/classes/class-accessibility-statement.php:60 +#: includes/classes/class-accessibility-statement.php:64 msgid "Accessibility Policy" -msgstr "Richtlinie zur Barrierefreiheit" +msgstr "Barrierefreiheitsrichtlinie" -#: includes/classes/class-admin-toolbar.php:115 -#: partials/pro-callout.php:47 -#: partials/welcome-page.php:215 +#: includes/classes/class-admin-toolbar.php:119 +#: partials/pro-callout.php:51 +#: partials/welcome-page.php:219 msgid "Get Accessibility Checker Pro" -msgstr "Holen Sie sich Accessibility Checker Pro" +msgstr "Accessibility Checker Pro erhalten" -#: includes/classes/class-admin-toolbar.php:120 +#: includes/classes/class-admin-toolbar.php:124 msgid "Get Accessibility Checker Pro (opens in new window)" -msgstr "Accessibility Checker Pro beziehen (öffnet in neuem Fenster)" +msgstr "Accessibility Checker Pro erhalten (öffnet in neuem Fenster)" -#: includes/classes/class-simplified-summary.php:73 -msgid "Simplified Summary" -msgstr "Vereinfachte Zusammenfassung" +#: includes/classes/class-rest-api.php:1230 +msgid "Issue not found." +msgstr "Problem nicht gefunden." + +#: includes/classes/class-rest-api.php:1273 +msgid "Failed to update the issue." +msgstr "Fehler beim Aktualisieren des Problems." -#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:34 +#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:45 msgid "Add Size & Type To File Links" msgstr "Größe & Typ zu Dateilinks hinzufügen" -#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:43 +#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:54 msgid "Add Context to Linked Files" msgstr "Kontext zu verlinkten Dateien hinzufügen" -#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:76 +#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:87 msgid "Add File Size & Type To Links" msgstr "Dateigröße & -typ zu Links hinzufügen" -#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:78 +#: includes/classes/Fixes/Fix/AddFileSizeAndTypeToLinkedFilesFix.php:89 msgid "Add the file size and type to linked files that may trigger a download." -msgstr "Fügen Sie die Dateigröße und den Dateityp zu verlinkten Dateien hinzu, die möglicherweise einen Download auslösen." +msgstr "Fügen Sie die Dateigröße und den Dateityp zu verlinkten Dateien hinzu, die einen Download auslösen könnten." -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:34 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:45 msgid "Add Labels to Unlabelled Form Fields" msgstr "Beschriftungen zu unbeschrifteten Formularfeldern hinzufügen" -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:43 -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:66 -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:89 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:54 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:77 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:100 msgid "Label Form Fields" msgstr "Formularfelder beschriften" -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:92 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:103 msgid "Add labels to unlabelled form fields if field purpose can be determined." -msgstr "Fügen Sie Beschriftungen zu unbeschrifteten Formularfeldern hinzu, wenn der Zweck des Feldes bestimmt werden kann." +msgstr "Beschriftungen zu unbeschrifteten Formularfeldern hinzufügen, wenn der Zweck des Feldes bestimmt werden kann." #. translators: %1$s: a CSS class name wrapped in a tag. -#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:123 +#: includes/classes/Fixes/Fix/AddLabelToUnlabelledFormFieldsFix.php:134 #, php-format msgid "Attempt to add labels to form fields that are missing them. Note: You may need to add custom styles targeting the %1$s class if adding labels affects your form layouts." -msgstr "Versuchen Sie, Beschriftungen zu Formularfeldern hinzuzufügen, denen sie fehlen. Hinweis: Möglicherweise müssen Sie benutzerdefinierte Stile hinzufügen, die auf die %1$s-Klasse abzielen, wenn das Hinzufügen von Beschriftungen Ihre Formularlayouts beeinflusst." +msgstr "Versuchen Sie, Beschriftungen zu Formularfeldern hinzuzufügen, die keine haben. Hinweis: Möglicherweise müssen Sie benutzerdefinierte Stile hinzufügen, die auf die Klasse %1$s abzielen, wenn das Hinzufügen von Beschriftungen Ihre Formularlayouts beeinflusst." -#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:34 +#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:45 msgid "Add Missing or Empty Page Titles" msgstr "Fehlende oder leere Seitentitel hinzufügen" -#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:43 +#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:54 msgid "Set Page HTML Titles" msgstr "HTML-Seitentitel festlegen" -#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:77 +#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:88 msgid "Add Missing Page Title" msgstr "Fehlenden Seitentitel hinzufügen" #. translators: %1$s: a code tag with a title tag. -#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:80 +#: includes/classes/Fixes/Fix/AddMissingOrEmptyPageTitleFix.php:91 #, php-format msgid "Add a %1$s tag to the page if it's missing or empty." -msgstr "Fügen Sie einen %1$s-Tag zur Seite hinzu, wenn er fehlt oder leer ist." +msgstr "Fügen Sie der Seite ein %1$s-Tag hinzu, wenn es fehlt oder leer ist." -#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:34 +#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:38 msgid "Add warning when link opens new tab/window" -msgstr "Warnung hinzufügen, wenn Link neuen Tab/Fenster öffnet" +msgstr "Warnung hinzufügen, wenn Link einen neuen Tab/Fenster öffnet" -#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:68 +#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:72 msgid "Add Label To Links That Open A New Tab/Window" msgstr "Beschriftung zu Links hinzufügen, die einen neuen Tab/Fenster öffnen" #. translators: %1%s: A tag containing target="_blank". -#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:73 +#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:77 #, php-format msgid "Add a label and icon to links with %1$s informing users they will open a new tab/window. %2$sNote: This setting will have no effect if the \"Block Links Opening New Windows\" fix is enabled.%3$s" -msgstr "Fügen Sie eine Beschriftung und ein Symbol zu Links mit %1$s hinzu, die Benutzer darüber informieren, dass sie einen neuen Tab/Fenster öffnen. %2$sHinweis: Diese Einstellung hat keine Auswirkung, wenn die Korrektur „Links blockieren, die neue Fenster öffnen“ aktiviert ist.%3$s" +msgstr "Fügen Sie eine Beschriftung und ein Symbol zu Links mit %1$s hinzu, die Benutzer darüber informieren, dass sie einen neuen Tab/Fenster öffnen werden. %2$sHinweis: Diese Einstellung hat keine Auswirkung, wenn die Korrektur \"Links, die neue Fenster öffnen, blockieren\" aktiviert ist.%3$s" + +#: includes/classes/Fixes/Fix/AddNewWindowWarningFix.php:117 +#: build/pageScanner.bundle.js:2 +msgid "opens a new window" +msgstr "öffnet ein neues Fenster" -#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:36 -#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:68 +#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:47 +#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:79 msgid "Block PDF Uploads" msgstr "PDF-Uploads blockieren" #. translators: %1$s: a code tag with the capability name. -#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:72 +#: includes/classes/Fixes/Fix/BlockPDFUploadsFix.php:83 #, php-format msgid "Restrict PDF uploads for users without the %1$s capability (allowed for admins by default)." -msgstr "PDF-Uploads für Benutzer ohne die %1$s-Berechtigung einschränken (standardmäßig für Administratoren erlaubt)." +msgstr "PDF-Uploads für Benutzer ohne die Fähigkeit %1$s einschränken (standardmäßig für Administratoren erlaubt)." -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:34 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:38 msgid "Add Labels to Comment and Search Forms" msgstr "Beschriftungen zu Kommentar- und Suchformularen hinzufügen" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:43 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:47 msgid "Label Comment/Search Fields" msgstr "Kommentar-/Suchfelder beschriften" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:66 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:70 msgid "Comment and Search Form Labels" msgstr "Beschriftungen für Kommentar- und Suchformulare" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:67 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:71 msgid "Add missing labels to WordPress comment and search forms." msgstr "Fehlende Beschriftungen zu WordPress-Kommentar- und Suchformularen hinzufügen." -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:90 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:94 msgid "Label Comment Form" msgstr "Kommentarformular beschriften" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:93 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:97 msgid "Add missing labels to the WordPress comment form." msgstr "Fehlende Beschriftungen zum WordPress-Kommentarformular hinzufügen." -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:101 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:105 msgid "Label Search Form" msgstr "Suchformular beschriften" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:104 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:108 msgid "Add a missing label to the WordPress search form." msgstr "Eine fehlende Beschriftung zum WordPress-Suchformular hinzufügen." -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:138 -msgid "Comment" -msgstr "Kommentar" - -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:143 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:147 msgid "Name" msgstr "Name" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:148 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:152 msgid "Email" -msgstr "Email" +msgstr "E-Mail" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:153 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:157 msgid "Website" msgstr "Website" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:177 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:181 msgid "Search …" -msgstr "Suche …" +msgstr "Suchen ..." -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:182 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:186 msgid "Search for:" -msgstr "Suche nach:" +msgstr "Suchen Sie nach:" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:184 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:188 msgid "Search" -msgstr "Suchen" +msgstr "Suche" -#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:198 +#: includes/classes/Fixes/Fix/CommentSearchLabelFix.php:202 msgid "Settings to add missing labels to WordPress comment and search forms." msgstr "Einstellungen zum Hinzufügen fehlender Beschriftungen zu WordPress-Kommentar- und Suchformularen." -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:33 +#: includes/classes/Fixes/Fix/EmptySearchFix.php:42 +#: includes/classes/Fixes/Fix/EmptySearchFix.php:88 +msgid "Force Error on Empty Search" +msgstr "Fehler bei leerer Suche erzwingen" + +#: includes/classes/Fixes/Fix/EmptySearchFix.php:65 +msgid "Empty Search Handling" +msgstr "Umgang mit leerer Suche" + +#: includes/classes/Fixes/Fix/EmptySearchFix.php:91 +msgid "When a search is submitted with an empty query, force WordPress to display the search results template so users see a meaningful response. This assumes the active theme has a search.php template." +msgstr "Wenn eine Suche mit einer leeren Abfrage übermittelt wird, erzwingen Sie, dass WordPress die Suchergebnisseite anzeigt, damit Benutzer eine aussagekräftige Antwort erhalten. Dies setzt voraus, dass das aktive Theme eine search.php-Vorlage hat." + +#: includes/classes/Fixes/Fix/EmptySearchFix.php:107 +msgid "Force WordPress to show a search results page when a search is submitted with an empty query." +msgstr "Erzwingen Sie, dass WordPress eine Suchergebnisseite anzeigt, wenn eine Suche mit einer leeren Abfrage übermittelt wird." + +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:37 msgid "Add Focus Outlines" -msgstr "Fokusumrisse hinzufügen" +msgstr "Fokus-Konturen hinzufügen" -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:56 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:60 msgid "Focus Outline" -msgstr "Fokusumriss" +msgstr "Fokus Gliederung" -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:57 -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:83 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:61 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:87 msgid "Add an outline to elements when they receive keyboard focus." -msgstr "Fügt einen Umriss zu Elementen hinzu, wenn sie den Tastaturfokus erhalten." +msgstr "Fügen Sie den Elementen einen Umriss hinzu, wenn sie den Tastaturfokus erhalten." -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:81 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:85 msgid "Add Focus Outline" msgstr "Fokusumriss hinzufügen" -#: includes/classes/Fixes/Fix/FocusOutlineFix.php:112 +#: includes/classes/Fixes/Fix/FocusOutlineFix.php:116 msgid "Settings related to enhancing focus outlines for better keyboard accessibility." -msgstr "Einstellungen zur Verbesserung von Fokusumrissen für bessere Tastaturzugänglichkeit." +msgstr "Einstellungen zur Verbesserung der Fokusumrisse für eine bessere Zugänglichkeit der Tastatur." -#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:33 +#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:37 msgid "Add lang & dir Attributes" -msgstr "Lang- & Dir-Attribute hinzufügen" +msgstr "Attribute lang & dir hinzufügen" -#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:42 +#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:46 msgid "Set Page Language" -msgstr "Seitensprache festlegen" +msgstr "Sprache der Seite einstellen" -#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:76 +#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:80 msgid "Add \"lang\" & \"dir\" Attributes" -msgstr "„lang“- & „dir“-Attribute hinzufügen" +msgstr "Attribute \"lang\" & \"dir\" hinzufügen" #. translators: %1$s: a attribute name wrapped in a tag. %2$s: dir attribute %3$s: html element. -#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:79 +#: includes/classes/Fixes/Fix/HTMLLangAndDirFix.php:83 #, php-format msgid "Add the site language (%1$s) and text direction (%2$s) attributes to the %3$s element." -msgstr "Fügen Sie die Webseitensprache (%1$s) und Textrichtung (%2$s) als Attribute zum %3$s-Element hinzu." +msgstr "Fügen Sie dem Element %3$s die Attribute site language (%1$s) und text direction (%2$s) hinzu." -#: includes/classes/Fixes/Fix/LinkUnderline.php:33 +#: includes/classes/Fixes/Fix/LinkUnderline.php:37 msgid "Add Underlines to all non-nav Links" -msgstr "Alle nicht-Navigations-Links unterstreichen" +msgstr "Unterstreichungen für alle Nicht-Nav-Links hinzufügen" -#: includes/classes/Fixes/Fix/LinkUnderline.php:42 +#: includes/classes/Fixes/Fix/LinkUnderline.php:46 msgid "Underline Links" msgstr "Links unterstreichen" -#: includes/classes/Fixes/Fix/LinkUnderline.php:76 +#: includes/classes/Fixes/Fix/LinkUnderline.php:80 msgid "Force Link Underline" -msgstr "Unterstreichung von Links erzwingen" +msgstr "Unterstreichen des Links erzwingen" -#: includes/classes/Fixes/Fix/LinkUnderline.php:78 +#: includes/classes/Fixes/Fix/LinkUnderline.php:82 msgid "Ensure that non-navigation links are underlined." -msgstr "Stellen Sie sicher, dass nicht-Navigations-Links unterstrichen sind." +msgstr "Stellen Sie sicher, dass Nicht-Navigationslinks unterstrichen sind." -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:34 +#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:38 msgid "Make Meta Viewport Tag Scalable" msgstr "Meta-Viewport-Tag skalierbar machen" -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:57 -msgid "Ensure scalable viewport" -msgstr "Skalierbaren Viewport sicherstellen" - -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:58 -msgid "Make sure that the viewport tag on the page allows scaling." -msgstr "Stellen Sie sicher, dass das Viewport-Tag auf der Seite Skalierung erlaubt." - -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:81 +#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:71 msgid "Make Viewport Scalable" -msgstr "Viewport skalierbar machen" +msgstr "Ansichtsfenster skalierbar machen" -#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:84 +#: includes/classes/Fixes/Fix/MetaViewportScalableFix.php:74 msgid "Ensure the viewport tag allows for scaling, enhancing accessibility on mobile devices." -msgstr "Stellen Sie sicher, dass das Viewport-Tag Skalierung erlaubt, um die Zugänglichkeit auf mobilen Geräten zu verbessern." +msgstr "Stellen Sie sicher, dass das Viewport-Tag eine Skalierung zulässt, um die Zugänglichkeit auf mobilen Geräten zu verbessern." -#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:34 +#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:38 msgid "Prevent Links Opening New Windows" -msgstr "Links verhindern, die neue Fenster öffnen" +msgstr "Verhindern, dass Links neue Fenster öffnen" -#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:68 +#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:72 msgid "Block Links Opening New Windows" msgstr "Links blockieren, die neue Fenster öffnen" #. translators: %1%s: A tag containing target="_blank". -#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:73 +#: includes/classes/Fixes/Fix/PreventLinksOpeningNewWindowFix.php:77 #, php-format msgid "Prevent links from opening in a new window or tab by removing %1$s." msgstr "Verhindern Sie, dass Links in einem neuen Fenster oder Tab geöffnet werden, indem Sie %1$s entfernen." -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:34 -msgid "Add \"Read\" Link with Post Title" -msgstr "„Lesen“-Link mit Beitragstitel hinzufügen" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:43 -msgid "Add Title to Read More Link" -msgstr "Titel zum Weiterlesen-Link hinzufügen" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:66 -msgid "Read More links" -msgstr "Weiterlesen-Links" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:67 -msgid "Add the post title and links " -msgstr "Beitragstitel und Links hinzufügen " - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:91 -msgid "Add Post Title To \"Read More\"" -msgstr "Beitragstitel zu „Weiterlesen“ hinzufügen" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:93 -msgid "Add the post title to \"Read More\" links in post lists when your theme outputs those links." -msgstr "Fügen Sie den Beitragstitel zu „Weiterlesen“-Links in Beitragslisten hinzu, wenn Ihr Theme diese Links ausgibt." - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:102 -msgid "For Screen Readers Only" -msgstr "Nur für Screenreader" - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:104 -msgid "Makes the post title added to \"Read More\" links visible only to screen readers." -msgstr "Macht den zu „Weiterlesen“-Links hinzugefügten Beitragstitel nur für Screenreader sichtbar." - -#: includes/classes/Fixes/Fix/ReadMoreAddTitleFix.php:235 -msgid "This fix adds the post title to the \"Read More\" links in post lists at the \"More\" block and in excerpts." -msgstr "Diese Korrektur fügt den Beitragstitel zu den „Weiterlesen“-Links in Beitragslisten am „Mehr“-Block und in Auszügen hinzu." - -#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:33 +#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:37 msgid "Prefer Accessible Label Attribute" -msgstr "Barrierefreies Label-Attribut bevorzugen" +msgstr "Bevorzugt zugängliches Label-Attribut" -#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:42 +#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:46 msgid "Remove Unnecessary Title Attributes" -msgstr "Unnötige Titel-Attribute entfernen" +msgstr "Entfernen Sie unnötige Titelattribute" -#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:76 +#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:80 msgid "Remove Title Attributes" -msgstr "Titel-Attribute entfernen" +msgstr "Titelattribute entfernen" #. translators: %1$s: a attribute name wrapped in a tag. -#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:79 +#: includes/classes/Fixes/Fix/RemoveTitleIfPrefferedAccessibleNameFix.php:83 #, php-format msgid "Remove %1$s attributes from elements that already have a preferred accessible name." -msgstr "Entfernen Sie %1$s-Attribute von Elementen, die bereits einen bevorzugten barrierefreien Namen haben." +msgstr "Entfernen Sie %1$s Attribute von Elementen, die bereits einen bevorzugten zugänglichen Namen haben." -#: includes/classes/Fixes/Fix/SkipLinkFix.php:34 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:38 msgid "Add Skip Links" -msgstr "Sprunglinks hinzufügen" +msgstr "Links zum Überspringen hinzufügen" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:57 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:61 msgid "Skip Link" -msgstr "Sprunglink" +msgstr "Link überspringen" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:81 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:85 msgid "Enable Skip Link" -msgstr "Sprunglink aktivieren" +msgstr "Aktivieren Sie Link überspringen" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:84 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:88 msgid "Add a skip link to all site pages, allowing users to skip directly to the main content." -msgstr "Fügen Sie einen Sprunglink zu allen Seiten der Website hinzu, der es Benutzern ermöglicht, direkt zum Hauptinhalt zu springen." +msgstr "Fügen Sie auf allen Seiten der Website einen Link zum Überspringen ein, mit dem Benutzer direkt zum Hauptinhalt springen können." -#: includes/classes/Fixes/Fix/SkipLinkFix.php:92 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:96 msgid "Main Content Target (required)" -msgstr "Ziel des Hauptinhalts (erforderlich)" +msgstr "Hauptinhalt Ziel (erforderlich)" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:95 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:99 msgid "Define the ID(s) of the main content area(s) to be targeted by skip links. Enter multiple IDs separated by commas; the system will cascade through the list to find the appropriate one for each page." -msgstr "Definieren Sie die ID(s) des Hauptinhaltsbereichs (der Hauptinhaltsbereiche), die von Sprunglinks angesteuert werden sollen. Geben Sie mehrere IDs durch Kommas getrennt ein; das System wird die Liste durchlaufen, um die passende für jede Seite zu finden." +msgstr "Definieren Sie die ID(s) des/der Hauptinhaltsbereiche(s), auf die die Sprunglinks abzielen sollen. Geben Sie mehrere durch Kommas getrennte IDs ein; das System wird die Liste kaskadenartig durchgehen, um die passende ID für jede Seite zu finden." -#: includes/classes/Fixes/Fix/SkipLinkFix.php:104 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:108 msgid "Navigation Target" -msgstr "Navigationsziel" +msgstr "Ziel der Navigation" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:107 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:111 msgid "Set the ID attribute of the navigation element. This is useful if your main navigation contains actions that most site visitors would want to take such as login or search features." -msgstr "Legen Sie das ID-Attribut des Navigationselements fest. Dies ist nützlich, wenn Ihre Hauptnavigation Aktionen enthält, die die meisten Website-Besucher ausführen möchten, wie z.B. Login- oder Suchfunktionen." +msgstr "Legen Sie das ID-Attribut des Navigationselements fest. Dies ist nützlich, wenn Ihre Hauptnavigation Aktionen enthält, die die meisten Besucher der Website ausführen möchten, wie z. B. die Anmeldung oder Suchfunktionen." #. translators: %1$s: opening anchor tag, %2$s: closing anchor tag. -#: includes/classes/Fixes/Fix/SkipLinkFix.php:236 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:240 #, php-format msgid "If your theme is not already adding a skip link that allows keyboard users to bypass the navigation and quickly jump to the main content, enable skip links here. %1$sLearn more about skip links.%2$s" -msgstr "Wenn Ihr Theme noch keinen Sprunglink hinzufügt, der es Tastaturnutzern ermöglicht, die Navigation zu umgehen und schnell zum Hauptinhalt zu springen, aktivieren Sie hier Sprunglinks. %1$sErfahren Sie mehr über Sprunglinks.%2$s" +msgstr "Wenn Ihr Theme nicht bereits einen Skip-Link enthält, der es Tastaturbenutzern ermöglicht, die Navigation zu umgehen und schnell zum Hauptinhalt zu springen, aktivieren Sie Skip-Links hier. %1$sErfahren Sie mehr über Sprunglinks.%2$s" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:263 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:267 msgid "Skip to content" msgstr "Zum Inhalt springen" -#: includes/classes/Fixes/Fix/SkipLinkFix.php:272 +#: includes/classes/Fixes/Fix/SkipLinkFix.php:276 msgid "Skip to navigation" msgstr "Zur Navigation springen" -#: includes/classes/Fixes/Fix/TabindexFix.php:33 +#: includes/classes/Fixes/Fix/TabindexFix.php:37 msgid "Remove Tabindex from Focusable Elements" msgstr "Tabindex von fokussierbaren Elementen entfernen" -#: includes/classes/Fixes/Fix/TabindexFix.php:67 +#: includes/classes/Fixes/Fix/TabindexFix.php:71 msgid "Remove Tab Index" -msgstr "Tabindex entfernen" +msgstr "Registerkarte Index entfernen" #. translators: %1$s: a attribute name wrapped in a tag. -#: includes/classes/Fixes/Fix/TabindexFix.php:70 +#: includes/classes/Fixes/Fix/TabindexFix.php:74 #, php-format msgid "Remove the %1$s attribute from focusable elements." -msgstr "Entfernen Sie das %1$s-Attribut von fokussierbaren Elementen." +msgstr "Entfernen Sie das Attribut %1$s aus fokussierbaren Elementen." -#: includes/classes/Fixes/FixesManager.php:241 +#: includes/classes/Fixes/FixesManager.php:252 msgid "Note: This setting is not recommended for themes that are already accessibility-ready." -msgstr "Hinweis: Diese Einstellung wird für Themes, die bereits barrierefrei sind, nicht empfohlen." +msgstr "Hinweis: Diese Einstellung wird nicht für Themes empfohlen, die bereits für die Barrierefreiheit vorbereitet sind." -#: includes/classes/Fixes/FixesManager.php:294 +#: includes/classes/Fixes/FixesManager.php:322 msgid "Fix not found" -msgstr "Korrektur nicht gefunden" +msgstr "Fix nicht gefunden" + +#: includes/classes/Fixes/FixesManager.php:358 +msgid "Fix not found." +msgstr "Fix nicht gefunden." + +#: includes/classes/MyDot/Connector.php:202 +msgid "You do not have permission to manage this license." +msgstr "Sie haben keine Berechtigung, diese Lizenz zu verwalten." + +#: includes/classes/MyDot/Connector.php:238 +msgid "Pro license is active. Please deactivate the Pro license first if you want to use a free license." +msgstr "Die Pro-Lizenz ist aktiv. Bitte deaktivieren Sie zuerst die Pro-Lizenz, wenn Sie eine kostenlose Lizenz verwenden möchten." + +#: includes/classes/MyDot/Connector.php:268 +msgid "An error occurred, please try again." +msgstr "Es ist ein Fehler aufgetreten, bitte versuchen Sie es erneut." + +#: includes/classes/MyDot/Connector.php:557 +msgid "You do not have permission to register this site." +msgstr "Sie haben keine Berechtigung, diese Website zu registrieren." + +#: includes/classes/MyDot/Connector.php:578 +msgid "You do not have permission to unregister this site." +msgstr "Sie haben keine Berechtigung, diese Website abzumelden." + +#: includes/classes/MyDot/Connector.php:604 +msgid "No license key found. Please activate a license before registering your site." +msgstr "Kein Lizenzschlüssel gefunden. Bitte aktivieren Sie eine Lizenz, bevor Sie Ihre Website registrieren." + +#: includes/classes/MyDot/Connector.php:615 +#: includes/classes/MyDot/Connector.php:822 +msgid "Unknown error occurred while registering the site." +msgstr "Beim Registrieren der Website ist ein unbekannter Fehler aufgetreten." + +#: includes/classes/MyDot/Connector.php:644 +msgid "Site registered successfully. Your site is now configured to use additional accessibility services." +msgstr "Website erfolgreich registriert. Ihre Website ist jetzt für die Nutzung zusätzlicher Barrierefreiheitsdienste konfiguriert." + +#: includes/classes/MyDot/Connector.php:654 +msgid "Site registration completed, but the response data was not in the expected format. Some features may not work correctly." +msgstr "Die Website-Registrierung wurde abgeschlossen, aber die Antwortdaten waren nicht im erwarteten Format. Einige Funktionen funktionieren möglicherweise nicht korrekt." + +#: includes/classes/MyDot/Connector.php:730 +msgid "Unable to unregister site. Required registration data is missing." +msgstr "Website kann nicht abgemeldet werden. Erforderliche Registrierungsdaten fehlen." + +#: includes/classes/MyDot/Connector.php:747 +#: includes/classes/MyDot/Connector.php:880 +msgid "Unknown error occurred while unregistering the site." +msgstr "Beim Abmelden der Website ist ein unbekannter Fehler aufgetreten." + +#: includes/classes/MyDot/Connector.php:762 +msgid "Site unregistered successfully. Your site will no longer receive email reports." +msgstr "Website erfolgreich abgemeldet. Ihre Website erhält keine E-Mail-Berichte mehr." + +#: includes/classes/MyDot/Connector.php:785 +msgid "No license key provided." +msgstr "Kein Lizenzschlüssel angegeben." + +#: includes/classes/MyDot/Connector.php:843 +msgid "Missing required parameters for unregistration." +msgstr "Fehlende erforderliche Parameter für die Abmeldung." #: includes/classes/Rules/AffectedDisabilities.php:50 msgid "Blind" @@ -1236,7 +1852,7 @@ msgstr "Blind" #: includes/classes/Rules/AffectedDisabilities.php:52 msgid "Low-vision" -msgstr "Sehbehindert" +msgstr "Sehschwäche" #: includes/classes/Rules/AffectedDisabilities.php:54 msgid "Deafblind" @@ -1256,11 +1872,11 @@ msgstr "Kognitiv" #: includes/classes/Rules/AffectedDisabilities.php:62 msgid "Seizure disorders" -msgstr "Anfallserkrankungen" +msgstr "Anfallskrankheiten" #: includes/classes/Rules/AffectedDisabilities.php:64 msgid "Vestibular disorders" -msgstr "Vestibuläre Störungen" +msgstr "Störungen des Gleichgewichtsorgans" #: includes/classes/Rules/AffectedDisabilities.php:66 msgid "Deaf" @@ -1271,20 +1887,20 @@ msgid "Hard of hearing" msgstr "Schwerhörig" #: includes/classes/Rules/AffectedDisabilities.php:70 -#: includes/wcag.php:52 -#: includes/wcag.php:85 -#: includes/wcag.php:118 -#: includes/wcag.php:151 -#: includes/wcag.php:251 -#: includes/wcag.php:269 -#: includes/wcag.php:1661 -#: includes/wcag.php:1695 -#: includes/wcag.php:1728 -#: includes/wcag.php:1748 -#: includes/wcag.php:1767 -#: includes/wcag.php:1786 +#: includes/wcag.php:56 +#: includes/wcag.php:89 +#: includes/wcag.php:122 +#: includes/wcag.php:155 +#: includes/wcag.php:255 +#: includes/wcag.php:273 +#: includes/wcag.php:1665 +#: includes/wcag.php:1699 +#: includes/wcag.php:1732 +#: includes/wcag.php:1752 +#: includes/wcag.php:1771 +#: includes/wcag.php:1790 msgid "Language learners" -msgstr "Sprachlernende" +msgstr "Sprachschüler" #: includes/classes/Rules/AffectedDisabilities.php:72 msgid "ADHD" @@ -1296,7 +1912,7 @@ msgstr "Legasthenie" #: includes/classes/Rules/Rule/AriaHiddenRule.php:24 msgid "ARIA Hidden" -msgstr "ARIA Hidden" +msgstr "ARIA versteckt" #. translators: %s is aria-hidden="true"aria-hidden="true"<label>, %2$s is for="". #: includes/classes/Rules/Rule/DuplicateFormLabelRule.php:33 #, php-format msgid "Ensure each form field has only one %1$s element associated with it. If multiple labels are present, remove extras or consolidate them into a single %1$s with a clear description. Make sure each %1$s element correctly references its form field using the %2$s attribute and that all elements on the page have unique IDs. This error happens when you have the same form embedded on a page twice and can be resolved by creating unique forms for different parts of a page rather than repeating the same form throughout." -msgstr "Stelle sicher, dass jedes Formularfeld nur ein %1$s-Element zugeordnet hat. Wenn mehrere Labels vorhanden sind, entferne die zusätzlichen oder fasse sie in einem einzigen %1$s mit einer klaren Beschreibung zusammen. Stelle sicher, dass jedes %1$s-Element korrekt auf sein Formularfeld mit dem %2$s-Attribut verweist und dass alle Elemente auf der Seite eindeutige IDs haben. Dieser Fehler tritt auf, wenn du dasselbe Formular zweimal auf einer Seite eingebettet hast und kann behoben werden, indem du einzigartige Formulare für verschiedene Teile einer Seite erstellst, anstatt dasselbe Formular auf der gesamten Seite zu wiederholen." +msgstr "Stellen Sie sicher, dass jedem Formularfeld nur ein %1$s-Element zugeordnet ist. Wenn mehrere Labels vorhanden sind, entfernen Sie überzählige oder fassen Sie sie in einem einzigen %1$s mit einer klaren Beschreibung zusammen. Stellen Sie sicher, dass jedes %1$s-Element korrekt auf sein Formularfeld verweist, indem Sie das %2$s-Attribut verwenden, und dass alle Elemente auf der Seite eindeutige IDs haben. Dieser Fehler tritt auf, wenn Sie dasselbe Formular zweimal auf einer Seite eingebettet haben, und kann behoben werden, indem Sie eindeutige Formulare für verschiedene Teile einer Seite erstellen, anstatt dasselbe Formular auf der gesamten Seite zu wiederholen." #: includes/classes/Rules/Rule/DuplicateFormLabelRule.php:39 msgid "MDN: