Changeset 2785619
- Timestamp:
- 09/15/2022 10:21:22 PM (4 years ago)
- Location:
- accessible-poetry
- Files:
-
- 24 added
- 1 deleted
- 10 edited
-
tags/5.0.2 (added)
-
tags/5.0.2/accessible-wp-toolbar.php (added)
-
tags/5.0.2/assets (added)
-
tags/5.0.2/assets/css (added)
-
tags/5.0.2/assets/css/admin.css (added)
-
tags/5.0.2/assets/css/main.css (added)
-
tags/5.0.2/assets/js (added)
-
tags/5.0.2/assets/js/admin.js (added)
-
tags/5.0.2/assets/js/functions.js (added)
-
tags/5.0.2/assets/js/toolbar.js (added)
-
tags/5.0.2/assets/svg (added)
-
tags/5.0.2/assets/svg/accessible.svg (added)
-
tags/5.0.2/assets/svg/close.svg (added)
-
tags/5.0.2/assets/svg/search.svg (added)
-
tags/5.0.2/inc (added)
-
tags/5.0.2/inc/assets.php (added)
-
tags/5.0.2/inc/panel.php (added)
-
tags/5.0.2/inc/toolbar.php (added)
-
tags/5.0.2/index.php (added)
-
tags/5.0.2/lang (added)
-
tags/5.0.2/lang/acwp-he_IL.mo (added)
-
tags/5.0.2/lang/acwp-he_IL.po (added)
-
tags/5.0.2/lang/acwp.pot (added)
-
tags/5.0.2/readme.txt (added)
-
trunk/accessible-wp-toolbar.php (modified) (2 diffs)
-
trunk/assets/css/main.css (modified) (8 diffs)
-
trunk/assets/js/functions.js (modified) (2 diffs)
-
trunk/assets/js/toolbar.js (modified) (2 diffs)
-
trunk/assets/svg (deleted)
-
trunk/inc/panel.php (modified) (5 diffs)
-
trunk/inc/toolbar.php (modified) (4 diffs)
-
trunk/lang/acwp-he_IL.mo (modified) (previous)
-
trunk/lang/acwp-he_IL.po (modified) (6 diffs)
-
trunk/lang/acwp.pot (modified) (4 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
accessible-poetry/trunk/accessible-wp-toolbar.php
r2782759 r2785619 6 6 * Author: Codenroll 7 7 * Author URI: https://www.codenroll.co.il/ 8 * Version: 5.0. 28 * Version: 5.0.3 9 9 * Text Domain: acwp 10 10 * License: GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html … … 14 14 return; 15 15 16 // Define ourdirectory16 // Define plugin directory 17 17 define('AWP_DIR', plugin_dir_url( __FILE__ )); 18 18 -
accessible-poetry/trunk/assets/css/main.css
r2781818 r2785619 31 31 } 32 32 33 /* Totally hide */34 .acwp-hide {35 display: none;36 }37 38 33 /* Reset box sizing for the toolbar */ 39 34 #acwp-toolbar * { … … 45 40 } 46 41 42 /* helpers */ 43 .acwp-hide { 44 display: none; 45 } 46 47 47 /* Primary toggle button */ 48 #acwp-toolbar-btn-wrap { 49 border: 1.5px solid #1E7AB9; 50 z-index: 9500; 51 position: fixed; 52 margin-top: -100vh; 53 top: 120px; 54 left: 20px; 55 border-radius: 50%; 56 -webkit-transition: margin-top 1200ms ease; 57 -moz-transition: margin-top 1200ms ease; 58 -ms-transition: margin-top 1200ms ease; 59 -o-transition: margin-top 1200ms ease; 60 transition: margin-top 1200ms ease; 61 } 48 62 #acwp-toolbar-btn { 49 63 margin: 0; … … 55 69 background: none; 56 70 border: 0; 57 position: fixed;58 z-index: 9500;59 margin-top: -100vh;60 top: 120px;61 left: 20px;62 71 width: 48px; 63 72 height: 48px; 64 background: # 3c8dbc;73 background: #1E7AB9; 65 74 text-align: center; 66 75 color: #fff; 67 76 border: 4px solid #fff; 68 77 border-radius:50%; 69 -webkit-box-shadow: 0px 0px 8px rgba(36,36,36,0.25); 70 -moz-box-shadow: 0px 0px 8px rgba(36,36,36,0.25); 71 -ms-box-shadow: 0px 0px 8px rgba(36,36,36,0.25); 72 -o-box-shadow: 0px 0px 8px rgba(36,36,36,0.25); 73 box-shadow: 0px 0px 8px rgba(36,36,36,0.25); 74 -webkit-transition: margin-top 1200ms ease; 75 -moz-transition: margin-top 1200ms ease; 76 -ms-transition: margin-top 1200ms ease; 77 -o-transition: margin-top 1200ms ease; 78 transition: margin-top 1200ms ease; 78 -webkit-box-shadow: 6px 8px 16px rgba(0,0,0,0.2); 79 -moz-box-shadow: 6px 8px 16px rgba(0,0,0,0.2); 80 -ms-box-shadow: 6px 8px 16px rgba(0,0,0,0.2); 81 -o-box-shadow: 6px 8px 16px rgba(0,0,0,0.2); 82 box-shadow: 6px 8px 16px rgba(0,0,0,0.2); 79 83 } 80 84 #acwp-toolbar-btn.acwp-noanimation { … … 92 96 93 97 /* Primary toggle button - Active mode */ 94 #acwp-toolbar-btn .show {98 #acwp-toolbar-btn-wrap.show { 95 99 margin-top: 0; 96 100 } 97 101 98 102 /* Primary toggle button - SVG Icon */ 103 body.acwp-contrast #acwp-toolbar-btn svg, 99 104 #acwp-toolbar-btn svg { 100 105 height: auto; … … 103 108 top: 2px; 104 109 position: relative; 110 background-color: transparent; 105 111 } 106 112 107 113 /* Primary toggle button - Right side */ 108 #acwp-toolbar-btn .acwp-right {114 #acwp-toolbar-btn-wrap.acwp-right { 109 115 left: auto; 110 116 right: 10px … … 262 268 font-weight:400; 263 269 font-size:1em; 264 outline:none 270 outline:none; 271 align-items: center; 265 272 } 266 273 .acwp-toggler label:hover, … … 433 440 } 434 441 .acwp-heading{ 435 background: #3c8dbc;436 color: #fff;442 background: #1E7AB9; 443 color: #fff; 437 444 padding:20px 438 445 } … … 472 479 animation:none !important 473 480 } 474 body.acwp-underline:not(.acwp-underline-hardcss) a,body.acwp-underline:not(.acwp-underline-hardcss) button{ 475 text-decoration:underline 476 } 477 body.acwp-underline.acwp-underline-hardcss a,body.acwp-underline.acwp-underline-hardcss button{ 478 text-decoration:underline !important 479 } 481 body.acwp-underline:not(.acwp-underline-hardcss) #acwp-close-toolbar, 482 body.acwp-underline:not(.acwp-underline-hardcss) a, 483 body.acwp-underline:not(.acwp-underline-hardcss) button{ 484 text-decoration:underline; 485 background: #FFE901; 486 color: #000; 487 -webkit-box-shadow: 0 0 0 2px #FFE901; 488 -moz-box-shadow: 0 0 0 2px #FFE901; 489 -ms-box-shadow: 0 0 0 2px #FFE901; 490 box-shadow: 0 0 0 2px #FFE901; 491 } 492 body.acwp-underline.acwp-underline-hardcss a, 493 body.acwp-underline.acwp-underline-hardcss button { 494 text-decoration:underline !important; 495 background: #FFE901 !important; 496 color: #000 !important; 497 -webkit-box-shadow: 0 0 0 2px #FFE901 !important; 498 -moz-box-shadow: 0 0 0 2px #FFE901 !important; 499 -ms-box-shadow: 0 0 0 2px #FFE901 !important; 500 box-shadow: 0 0 0 2px #FFE901 !important; 501 } 502 480 503 body.acwp-marktitles:not(.acwp-titles-hardcss):not(.acwp-titles-custom) #acwp-toolbar .acwp-heading, 481 504 body.acwp-marktitles:not(.acwp-titles-hardcss):not(.acwp-titles-custom) h1, -
accessible-poetry/trunk/assets/js/functions.js
r2781835 r2785619 237 237 238 238 setTimeout(function () { 239 $('#acwp-toolbar-btn ').addClass('show');239 $('#acwp-toolbar-btn-wrap').addClass('show'); 240 240 }, 250); 241 241 … … 249 249 250 250 if( acwp_attr.no_btn_drage !== 'yes' ){ 251 jQuery( "#acwp-toolbar-btn " ).on('mousedown', function (e) {251 jQuery( "#acwp-toolbar-btn-wrap" ).on('mousedown', function (e) { 252 252 e.preventDefault(); 253 253 window.my_dragging = {}; -
accessible-poetry/trunk/assets/js/toolbar.js
r2781835 r2785619 1 1 jQuery(document).ready(function($) { 2 2 $('#acwp-toolbar-btn').click(function(){ 3 $('#acwp-toolbar-btn ').removeClass('show');3 $('#acwp-toolbar-btn-wrap').removeClass('show'); 4 4 $('.acwp-toolbar').addClass('acwp-toolbar-active'); 5 5 setTimeout(function(){ … … 8 8 }); 9 9 $('#acwp-close-toolbar').click(function(){ 10 $('#acwp-toolbar-btn ').addClass('show');10 $('#acwp-toolbar-btn-wrap').addClass('show'); 11 11 $('.acwp-toolbar').removeClass('acwp-toolbar-show'); 12 12 setTimeout(function(){ -
accessible-poetry/trunk/inc/panel.php
r2782762 r2785619 1 1 <?php 2 /**3 * AccessibleWP4 *5 * @author Amitmoreno, Codenroll6 * @author_url https://amitmoreno.com/, https://www.codenroll.co.il/7 */8 9 2 /** 10 3 * Class ACWP_AdminPanel … … 28 21 public function register_pages() { 29 22 30 // Check if we already got the primary page of AccessibleWP if not we will add it 23 // Check if we already got the primary page of AccessibleWP 24 // if not we will add it ... 31 25 if ( empty ($GLOBALS['admin_page_hooks']['accessible-wp'] ) ) { 32 add_menu_page('AccessibleWP', 'AccessibleWP', 'read', 'accessible-wp', array($this, 'main_page_callback'), plugins_url( 'accessible-poetry/assets/svg/accessible.svg' ), '2.1'); 26 add_menu_page( 27 __('AccessibleWP', 'acwp'), 28 'AccessibleWP', 'read', 29 'accessible-wp', 30 array($this, 'main_page_callback'), 31 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjIgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDUyLjUgKDY3NDY5KSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5TaGFwZTwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJBcnRib2FyZC1Db3B5LTUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00My4wMDAwMDAsIC0zOS4wMDAwMDApIiBmaWxsPSIjOUJBMkE2IiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8cGF0aCBkPSJNNTMuOTA5MDkwOSwzOSBDNTUuMjgwOTkxNywzOSA1Ni4zODg0Mjk4LDQwLjEwNTMyNzMgNTYuMzg4NDI5OCw0MS40NzQ2MTMzIEM1Ni4zODg0Mjk4LDQyLjg0Mzg5OTMgNTUuMjgwOTkxNyw0My45NjU3MjQgNTMuOTA5MDkwOSw0My45NjU3MjQgQzUyLjU1MzcxOSw0My45NjU3MjQgNTEuNDI5NzUyMSw0Mi44NDM4OTkzIDUxLjQyOTc1MjEsNDEuNDc0NjEzMyBDNTEuNDI5NzUyMSw0MC4xMDUzMjczIDUyLjU1MzcxOSwzOSA1My45MDkwOTA5LDM5IFogTTQzLDQ2Ljg1Mjc3MjggQzQzLDQ1Ljc4MDQ0MDQgNTMuOTA5MDkwOSw0NS41OTg5Njg3IDUzLjkwOTA5MDksNDUuNTk4OTY4NyBDNTMuOTA5MDkwOSw0NS41OTg5Njg3IDY0LjgxODE4MTgsNDUuNzgwNDQwNCA2NC44MTgxODE4LDQ2Ljg1Mjc3MjggQzY0LjgxODE4MTgsNDcuOTI1MTA1MiA1Ny40Mjk3NTIxLDQ5LjE2MjQxMTggNTcuNDI5NzUyMSw0OS4xNjI0MTE4IEM1Ny40Mjk3NTIxLDQ5LjE2MjQxMTggNjAuMjIzMTQwNSw2Mi41OTEzMTMyIDU5LjE4MTgxODIsNjIuOTg3MjUxMyBDNTguMTU3MDI0OCw2My4zODMxODk0IDUzLjkwOTA5MDksNTQuNDI1MDg5NCA1My45MDkwOTA5LDU0LjQyNTA4OTQgQzUzLjkwOTA5MDksNTQuNDI1MDg5NCA0OS42Nzc2ODYsNjMuMzgzMTg5NCA0OC42NTI4OTI2LDYyLjk4NzI1MTMgQzQ3LjYxMTU3MDIsNjIuNTkxMzEzMiA1MC40MDQ5NTg3LDQ5LjE2MjQxMTggNTAuNDA0OTU4Nyw0OS4xNjI0MTE4IEM1MC40MDQ5NTg3LDQ5LjE2MjQxMTggNDMsNDcuOTI1MTA1MiA0Myw0Ni44NTI3NzI4IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+', '2.1' 32 ); 33 33 } 34 34 … … 96 96 register_setting('acwp', 'acwp_mobile', array('show_in_rest' => true)); 97 97 98 // Statement & Feedback98 // additional links 99 99 register_setting('acwp', 'acwp_statement', array('show_in_rest' => true)); 100 100 register_setting('acwp', 'acwp_feedback', array('show_in_rest' => true)); 101 register_setting('acwp', 'acwp_sitemap', array('show_in_rest' => true)); 102 101 103 register_setting('acwp', 'acwp_statement_label', array('show_in_rest' => true)); 102 104 register_setting('acwp', 'acwp_feedback_label', array('show_in_rest' => true)); 105 register_setting('acwp', 'acwp_sitemap_label', array('show_in_rest' => true)); 103 106 } 104 107 … … 480 483 <table class="form-table"> 481 484 <tr valign="top"> 482 <th scope="row"><?php _e('Label', 'acwp');?></th> 485 <th scope="row"> 486 <label for="acwp_feedback_label"><?php _e('Label', 'acwp');?></label> 487 </th> 483 488 <td> 484 489 <input type="text" name="acwp_feedback_label" value="<?php echo esc_attr( get_option('acwp_feedback_label') ); ?>" placeholder="<?php _e('Send Feedback', 'acwp');?>" /> … … 487 492 </tr> 488 493 <tr valign="top"> 489 <th scope="row"><?php _e('Link', 'acwp');?></th> 494 <th scope="row"> 495 <label for="acwp_feedback"><?php _e('Link', 'acwp');?></label> 496 </th> 490 497 <td><input type="url" name="acwp_feedback" value="<?php echo esc_attr( get_option('acwp_feedback') ); ?>" placeholder="http://" /></td> 498 </tr> 499 </table> 500 501 <h3><?php _e('Site Map', 'acwp');?></h3> 502 503 <table class="form-table"> 504 <tr valign="top"> 505 <th scope="row"> 506 <label for="acwp_sitemap_label"><?php _e('Label', 'acwp');?></label> 507 </th> 508 <td> 509 <input type="text" name="acwp_sitemap_label" value="<?php echo esc_attr( get_option('acwp_sitemap_label') ); ?>" placeholder="<?php _e('Site Map', 'acwp');?>" /> 510 <p><?php _e('Change the default label of the sitemap link. Please note that if you change the default label you will not be able to translate it into other languages', 'acwp');?></p> 511 </td> 512 </tr> 513 <tr valign="top"> 514 <th scope="row"> 515 <label for="acwp_sitemap"><?php _e('Link', 'acwp');?></label> 516 </th> 517 <td><input type="url" name="acwp_sitemap" value="<?php echo esc_attr( get_option('acwp_sitemap') ); ?>" placeholder="http://" /></td> 491 518 </tr> 492 519 </table> -
accessible-poetry/trunk/inc/toolbar.php
r2781835 r2785619 17 17 ?> 18 18 19 <button type="button" class="<?php echo $side . ' ' . $noanimation; ?>" id="acwp-toolbar-btn" tabindex="0" aria-label="<?php _e('Toggle Accessibility Toolbar', 'acwp');?>" data-side="50"> 20 <svg xmlns="http://www.w3.org/2000/svg" focusable="false" style="transform: rotate(360deg);" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 20 20"> 21 <path d="M10 2.6c.83 0 1.5.67 1.5 1.5s-.67 1.51-1.5 1.51c-.82 0-1.5-.68-1.5-1.51s.68-1.5 1.5-1.5zM3.4 7.36c0-.65 6.6-.76 6.6-.76s6.6.11 6.6.76s-4.47 1.4-4.47 1.4s1.69 8.14 1.06 8.38c-.62.24-3.19-5.19-3.19-5.19s-2.56 5.43-3.18 5.19c-.63-.24 1.06-8.38 1.06-8.38S3.4 8.01 3.4 7.36z" fill="currentColor"></path> 22 </svg> 23 </button> 19 <div id="acwp-toolbar-btn-wrap"> 20 <button type="button" class="<?php echo $side . ' ' . $noanimation; ?>" id="acwp-toolbar-btn" tabindex="0" aria-label="<?php _e('Toggle Accessibility Toolbar', 'acwp');?>" data-side="50"> 21 <svg xmlns="http://www.w3.org/2000/svg" focusable="false" style="transform: rotate(360deg);" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 20 20"> 22 <path d="M10 2.6c.83 0 1.5.67 1.5 1.5s-.67 1.51-1.5 1.51c-.82 0-1.5-.68-1.5-1.51s.68-1.5 1.5-1.5zM3.4 7.36c0-.65 6.6-.76 6.6-.76s6.6.11 6.6.76s-4.47 1.4-4.47 1.4s1.69 8.14 1.06 8.38c-.62.24-3.19-5.19-3.19-5.19s-2.56 5.43-3.18 5.19c-.63-.24 1.06-8.38 1.06-8.38S3.4 8.01 3.4 7.36z" fill="currentColor"></path> 23 </svg> 24 </button> 25 </div> 24 26 25 27 <div id="acwp-toolbar" class="acwp-toolbar <?php echo $side . ' ' . $noanimation . ' ' . $style; ?>" aria-label="<?php _e('Accessibility Toolbar Toggle View', 'acwp'); ?>"> … … 52 54 53 55 if( get_option('acwp_hide_underline') != 'yes' ) 54 acwp_toggler('underline', __(' Underline Links', 'acwp'), 'format_underlined');56 acwp_toggler('underline', __('Highlight Links & Buttons', 'acwp'), 'link'); 55 57 56 58 ?> … … 90 92 */ 91 93 function acwp_toolbar_footer() { 94 $sitemap_link = get_option('acwp_sitemap'); 95 $sitemap_text = ( get_option('acwp_sitemap_label') && get_option('acwp_sitemap_label') != '') ? get_option('acwp_sitemap_label') : __('Site Map', 'acwp'); 96 92 97 $statement_link = get_option('acwp_statement'); 93 98 $statement_text = ( get_option('acwp_statement_label') && get_option('acwp_statement_label') != '') ? get_option('acwp_statement_label') : __('Accessibility Statement', 'acwp'); 99 94 100 $feedback_link = get_option('acwp_feedback'); 95 101 $feedback_text = ( get_option('acwp_feedback_label') && get_option('acwp_feedback_label') != '') ? get_option('acwp_feedback_label') : __('Send Feedback', 'acwp'); … … 106 112 <?php if($feedback_link && $feedback_link != '') : ?> 107 113 <li><a href="<?php echo $feedback_link; ?>"><?php echo $feedback_text;?></a></li> 114 <?php endif; ?> 115 <?php if($sitemap_link && $sitemap_link != '') : ?> 116 <li><a href="<?php echo $sitemap_link; ?>"><?php echo $sitemap_text;?></a></li> 108 117 <?php endif; ?> 109 118 <li><?php _e('Powered with', 'acwp'); ?> <i class="material-icons" aria-hidden="true">favorite</i><span class="sr-only"><?php _e('Love', 'acwp');?></span> <?php _e('by', 'acwp');?> <a href="<?php echo $url;?>" target="_blank"><?php echo $cnr; ?></a></li> -
accessible-poetry/trunk/lang/acwp-he_IL.po
r2782759 r2785619 1 # Copyright (C) 2022 Amit Moreno1 # Copyright (C) 2022 Codenroll 2 2 # This file is distributed under the GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: AccessibleWP - Accessibility Toolbar 5.0.2\n" 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/trunk\n" 7 "POT-Creation-Date: 2022-09-10 14:30+0300\n" 8 "PO-Revision-Date: 2022-09-10 14:48+0300\n" 5 "Project-Id-Version: AccessibleWP - Accessibility Toolbar 5.0.3\n" 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessible-" 7 "poetry\n" 8 "POT-Creation-Date: 2022-09-15T22:04:41+00:00\n" 9 "PO-Revision-Date: 2022-09-16 01:18+0300\n" 9 10 "Last-Translator: \n" 10 11 "Language-Team: \n" … … 20 21 #. Plugin Name of the plugin 21 22 msgid "AccessibleWP - Accessibility Toolbar" 22 msgstr " AccessibleWP - תפריט נגישות"23 msgstr "תפריט נגישות - AccessibleWP" 23 24 24 25 #. Plugin URI of the plugin … … 31 32 "users with disabilities." 32 33 msgstr "" 33 "מ שדרג את הנגישות באתר שלך לאנשים עם מוגבלויות באמצעות תפריט עם כלי נגישות"34 " מקצועיים ומותאמים לאתרי וורדפרס."34 "מוסיף לאתר תפריט עם כלי נגישות מקצועיים המסייעים לאנשים עם מוגבלויות, כנדרש " 35 "בהנחיות ה-WCAG 2.1." 35 36 36 37 #. Author of the plugin 37 msgid " Amit Moreno"38 msgstr " עמית מורנו"38 msgid "Codenroll" 39 msgstr "קוד אנד רול" 39 40 40 41 #. Author URI of the plugin … … 42 43 msgstr "https://www.codenroll.co.il/" 43 44 44 #: inc/panel.php:111 45 #: inc/panel.php:27 46 msgid "AccessibleWP" 47 msgstr "נגישות" 48 49 #: inc/panel.php:114 45 50 msgid "Welcome to <span>AccessibleWP</span> Dashboard!" 46 msgstr "ברוכים הבאים אל לוח הבקרה של <span>AccessibleWP</span>!"47 48 #: inc/panel.php:11 251 msgstr "ברוכים הבאים אל לוח הבקרה של AccessibleWP!" 52 53 #: inc/panel.php:115 49 54 msgid "Accessibility solutions for websites based on the WordPress." 50 msgstr "פתרונות הנגשה לאתרי אינטרנט מבוססיםמערכת וורדפרס."51 52 #: inc/panel.php:11 455 msgstr "פתרונות נגישות לאתרי אינטרנט מבוססי מערכת וורדפרס." 56 57 #: inc/panel.php:117 53 58 msgid "Toolbar Settings" 54 msgstr "הגדרות תפריט הנגישות"55 56 #: inc/panel.php:1 1759 msgstr "הגדרות התפריט" 60 61 #: inc/panel.php:120 57 62 msgid "Who We Are?" 58 63 msgstr "מי אנחנו?" 59 64 60 #: inc/panel.php:1 1765 #: inc/panel.php:120 61 66 msgid "About The Author" 62 67 msgstr "אודות המפתח" 63 68 64 #: inc/panel.php:1 1769 #: inc/panel.php:120 65 70 msgid "W3C Accessibility Standards Overview" 66 msgstr " תקנות הנגישות"67 68 #: inc/panel.php:12 1 inc/panel.php:478 inc/panel.php:484 inc/toolbar.php:9571 msgstr "סיקור הנחיות נגישות אתרים מאת W3C (באנגלית)" 72 73 #: inc/panel.php:124 inc/panel.php:481 inc/panel.php:489 inc/toolbar.php:101 69 74 msgid "Send Feedback" 70 75 msgstr "שליחת משוב" 71 76 72 #: inc/panel.php:13 477 #: inc/panel.php:137 73 78 msgid "Toolbar Heading" 74 msgstr "כותרת תפריט הנגישות"75 76 #: inc/panel.php:1 3979 msgstr "כותרת התפריט" 80 81 #: inc/panel.php:142 77 82 msgid "Toolbar title" 78 83 msgstr "כותרת התפריט" 79 84 80 #: inc/panel.php:14 2 inc/toolbar.php:7385 #: inc/panel.php:145 inc/toolbar.php:75 81 86 msgid "Accessibility Toolbar" 82 87 msgstr "תפריט נגישות" 83 88 84 #: inc/panel.php:14 389 #: inc/panel.php:146 85 90 msgid "" 86 91 "Change the default toolbar title. Please note that if you change the title " 87 92 "you will not be able to translate it into other languages" 88 93 msgstr "" 89 "שינוי כותרת ברירת המחדל של תפריט הנגישות. נא לשים לב שאם תשנו את הכותרת לא"90 " ניתן יהיה לתרגם אותה אחר כך לשפות אחרות"91 92 #: inc/panel.php:15 3 inc/panel.php:50794 "שינוי כותרת ברירת המחדל של התפריט. נא לשים לב ששינוי כותרת ברירת המחדל תמנע " 95 "ממך את האפשרות לתרגם אותה לשפות נוספות." 96 97 #: inc/panel.php:156 inc/panel.php:534 93 98 msgid "Options" 94 99 msgstr "אפשרויות" 95 100 96 #: inc/panel.php:1 58 inc/toolbar.php:33101 #: inc/panel.php:161 inc/toolbar.php:35 97 102 msgid "Keyboard Navigation" 98 103 msgstr "ניווט מקלדת" 99 104 100 #: inc/panel.php:16 2105 #: inc/panel.php:165 101 106 msgid "Add effect to components in focus mode." 102 msgstr " מוסיףאפקט לרכיבים במצב פוקוס"103 104 #: inc/panel.php:16 3107 msgstr "הוספת אפקט לרכיבים במצב פוקוס" 108 109 #: inc/panel.php:166 105 110 msgid "Allow navigation between components using keyboard arrows & TAB." 106 msgstr "מאפשר לנווט ב ין רכיבי העמוד באמצעות לחצני המקלדת ולחצן ה-TAB."107 108 #: inc/panel.php:1 69111 msgstr "מאפשר לנווט באמצעות לחצן ה-TAB וגם באמצעות חצי המקלדת" 112 113 #: inc/panel.php:172 109 114 msgid "Disable arrows navigation" 110 msgstr "ביטול הניווט באמצעות חצים"111 112 #: inc/panel.php:17 3 inc/panel.php:188 inc/panel.php:230 inc/panel.php:266113 #: inc/panel.php:30 4 inc/panel.php:340 inc/panel.php:364115 msgstr "ביטול ניווט באמצעות חצים" 116 117 #: inc/panel.php:176 inc/panel.php:191 inc/panel.php:233 inc/panel.php:269 118 #: inc/panel.php:307 inc/panel.php:343 inc/panel.php:367 114 119 msgid "Hide option" 115 120 msgstr "הסתרת אפשרות זו" 116 121 117 #: inc/panel.php:1 79 inc/toolbar.php:36122 #: inc/panel.php:182 inc/toolbar.php:38 118 123 msgid "Disable Animations" 119 msgstr "ביטול אנימציות "120 121 #: inc/panel.php:18 3124 msgstr "ביטול אנימציות / הבהובים" 125 126 #: inc/panel.php:186 122 127 msgid "Disables CSS3 animations." 123 msgstr " ביטול אנימציות מסוג CSS3."124 125 #: inc/panel.php:19 4128 msgstr "מבטל אנימציות CSS3" 129 130 #: inc/panel.php:197 126 131 msgid "Dark Contrast" 127 msgstr "ניגודיות כהה"128 129 #: inc/panel.php: 198132 msgstr "ניגודיות גבוהה" 133 134 #: inc/panel.php:201 130 135 msgid "Changes the colors of backgrounds, texts and links." 131 msgstr "משנה את הצבעים של רקעים, טקסטים וקישורים."132 133 #: inc/panel.php: 199136 msgstr "משנה את הצבעים של הרקעים, הטקסטים והקישורים" 137 138 #: inc/panel.php:202 134 139 msgid "Disables background images." 135 msgstr "מבטל תמונות רקע ."136 137 #: inc/panel.php:20 4140 msgstr "מבטל תמונות רקע" 141 142 #: inc/panel.php:207 138 143 msgid "Use custom colors" 139 msgstr "ה שתמש בצבעים מותאמים אישית"140 141 #: inc/panel.php:2 08144 msgstr "האם להשתמש בצבעים מותאמים אישית?" 145 146 #: inc/panel.php:211 142 147 msgid "Backgrounds color" 143 148 msgstr "צבע רקע" 144 149 145 #: inc/panel.php:21 2150 #: inc/panel.php:215 146 151 msgid "Text color" 147 152 msgstr "צבע טקסט" 148 153 149 #: inc/panel.php:21 6154 #: inc/panel.php:219 150 155 msgid "Links color" 151 msgstr "צבע קישור ים"152 153 #: inc/panel.php:22 0 inc/panel.php:281 inc/panel.php:319 inc/panel.php:355156 msgstr "צבע קישור" 157 158 #: inc/panel.php:223 inc/panel.php:284 inc/panel.php:322 inc/panel.php:358 154 159 msgid "Mode" 155 160 msgstr "מצב" 156 161 157 #: inc/panel.php:22 3 inc/panel.php:284 inc/panel.php:322 inc/panel.php:358162 #: inc/panel.php:226 inc/panel.php:287 inc/panel.php:325 inc/panel.php:361 158 163 msgid "Normal CSS (default)" 159 msgstr " ברירת המחדל"160 161 #: inc/panel.php:22 4 inc/panel.php:285 inc/panel.php:323 inc/panel.php:359164 msgstr "רגיל (ברירת מחדל)" 165 166 #: inc/panel.php:227 inc/panel.php:288 inc/panel.php:326 inc/panel.php:362 162 167 msgid "Hard CSS" 163 168 msgstr "שימוש ב-important" 164 169 165 #: inc/panel.php:22 5170 #: inc/panel.php:228 166 171 msgid "JS" 167 msgstr " שימוש ב-JavaScript"168 169 #: inc/panel.php:23 6172 msgstr "JS" 173 174 #: inc/panel.php:239 170 175 msgid "Font Size" 171 msgstr "גודל גופן"172 173 #: inc/panel.php:24 0176 msgstr "גודל טקסט" 177 178 #: inc/panel.php:243 174 179 msgid "Allow users to increase or decrease font sizes." 175 msgstr "מאפשר למשתמש להגדיל או להקטין את הטקסטים באתר."176 177 #: inc/panel.php:24 5180 msgstr "מאפשר למשתמשים להגדיל או להקטין את גודל הטקסט" 181 182 #: inc/panel.php:248 178 183 msgid "By how many percent to <b>increase</b> the font size?" 179 msgstr "בכמה אחוזים ל הגדיל אתהטקסט?"180 181 #: inc/panel.php:2 49184 msgstr "בכמה אחוזים לאפשר הגדלה של הטקסט?" 185 186 #: inc/panel.php:252 182 187 msgid "By how many percent to <b>decrease</b> the font size?" 183 msgstr "בכמה אחוזים ל הקטין אתהטקסט?"184 185 #: inc/panel.php:25 3188 msgstr "בכמה אחוזים לאפשר הקטנה של הטקסט?" 189 190 #: inc/panel.php:256 186 191 msgid "Use custom tags?" 187 msgstr "ה תאמה אישית של התגיות שעליהן תכונה זו משפיעה"188 189 #: inc/panel.php:2 57192 msgstr "האם להשתמש בתגיות מותאמות אישית?" 193 194 #: inc/panel.php:260 190 195 msgid "Seperate tags with comma" 191 msgstr "" 192 "נא להפריד שמות תגית באמצעות פסיק (למשל: p,h1,h2,h3,#custom-id,section,." 193 "more)" 194 195 #: inc/panel.php:261 196 msgstr "נא להפריד תגיות באמצעות פסיק" 197 198 #: inc/panel.php:264 196 199 msgid "Disable line-height reset when font size is changing?" 197 msgstr "האם לבטל האיפוס של גובה השורה כאשר גודל הטקסט משתנה?"198 199 #: inc/panel.php:27 2 inc/toolbar.php:48200 msgstr "האם לבטל את איפוס גובה השורה בעת שינוי גודל הטקסט?" 201 202 #: inc/panel.php:275 inc/toolbar.php:50 200 203 msgid "Readable Font" 201 204 msgstr "גופן קריא" 202 205 203 #: inc/panel.php:27 6206 #: inc/panel.php:279 204 207 msgid "Change the font family of all text to readable font." 205 msgstr "משנה את משפחת הגופן של כל הטקסטים לגופן קריא." 206 207 #: inc/panel.php:290 208 msgstr "" 209 "מאפשר למשתמשים לשנות את הגופן לגופן ממשפחה נגישה (כמו למשל אריאל או טהומה)" 210 211 #: inc/panel.php:293 208 212 msgid "Choose your readable font:" 209 213 msgstr "בחירת הגופן הקריא:" 210 214 211 #: inc/panel.php:29 3215 #: inc/panel.php:296 212 216 msgid "Default (Arial)" 213 217 msgstr "אריאל (ברירת מחדל)" 214 218 215 #: inc/panel.php:29 4219 #: inc/panel.php:297 216 220 msgid "Tahoma" 217 221 msgstr "טהומה" 218 222 219 #: inc/panel.php:29 5223 #: inc/panel.php:298 220 224 msgid "Custom Family" 221 msgstr " מותאם אישית"222 223 #: inc/panel.php:30 0225 msgstr "גופן מותאם אישית" 226 227 #: inc/panel.php:303 224 228 msgid "Custom Font Family" 225 msgstr " שם הגופן המותאםאישית"226 227 #: inc/panel.php:31 0 inc/toolbar.php:51229 msgstr "משפחת גופן מותאמת אישית" 230 231 #: inc/panel.php:313 inc/toolbar.php:53 228 232 msgid "Mark Titles" 229 233 msgstr "סימון כותרות" 230 234 231 #: inc/panel.php:31 4235 #: inc/panel.php:317 232 236 msgid "Add custom background color and text color to heading components." 233 msgstr "מ דגיש כותרות באמצעות התניית צבע רקע וצבע טקסט."234 235 #: inc/panel.php:3 28237 msgstr "מאפשר להדגיש כותרות באמצעות צבע רקע וצבע טקסט" 238 239 #: inc/panel.php:331 236 240 msgid "Use custom colors?" 237 241 msgstr "האם להשתמש בצבעים מותאמים אישית?" 238 242 239 #: inc/panel.php:33 2243 #: inc/panel.php:335 240 244 msgid "Titles Background Color" 241 msgstr "צבע רקע הכותרות"242 243 #: inc/panel.php:33 6245 msgstr "צבע רקע" 246 247 #: inc/panel.php:339 244 248 msgid "Titles Text Color" 245 msgstr "צבע טקסט הכותרות"246 247 #: inc/panel.php:34 6 inc/toolbar.php:54249 msgstr "צבע טקסט" 250 251 #: inc/panel.php:349 248 252 msgid "Underline Links" 249 msgstr " קו תחתי לקישורים"250 251 #: inc/panel.php:35 0253 msgstr "הדגשת קישורים" 254 255 #: inc/panel.php:353 252 256 msgid "Add line under all link components." 253 msgstr "מ וסיף קו תחתון לתגיות קישור."254 255 #: inc/panel.php:37 4 inc/panel.php:509257 msgstr "מדגיש קישורים ולחצנים באמצעות קו תחתון וצבע רקע צהוב" 258 259 #: inc/panel.php:377 inc/panel.php:536 256 260 msgid "Settings" 257 261 msgstr "הגדרות" 258 262 259 #: inc/panel.php:38 1263 #: inc/panel.php:384 260 264 msgid "Hide the icons of the accessibility options" 261 265 msgstr "הסתרת האייקונים מתפריט הנגישות" 262 266 263 #: inc/panel.php:38 5267 #: inc/panel.php:388 264 268 msgid "Disable button dragging" 265 msgstr "ביטול האפשרות לגר ור את האייקון"266 267 #: inc/panel.php:3 89269 msgstr "ביטול האפשרות לגרירת האייקון שפותח את התפריט" 270 271 #: inc/panel.php:392 268 272 msgid "Show toolbar also on mobile devices" 269 msgstr "הצג את תפריט הנגישות גם לטלפונים חכמים"270 271 #: inc/panel.php: 399 inc/panel.php:510273 msgstr "הצגת תפריט הנגישות גם במכשירים ניידים" 274 275 #: inc/panel.php:402 inc/panel.php:537 272 276 msgid "Style" 273 277 msgstr "סגנון" 274 278 275 #: inc/panel.php:40 4279 #: inc/panel.php:407 276 280 msgid "Toolbar style" 277 msgstr "סגנון תפריט הנגישות"278 279 #: inc/panel.php:4 08281 msgstr "סגנון תפריט" 282 283 #: inc/panel.php:411 280 284 msgid "App style (default)" 281 285 msgstr "אפליקטיבי (ברירת מחדל)" 282 286 283 #: inc/panel.php:4 09287 #: inc/panel.php:412 284 288 msgid "Columns style" 285 msgstr " טורים"286 287 #: inc/panel.php:41 5289 msgstr "משבצות" 290 291 #: inc/panel.php:418 288 292 msgid "Toolbar side" 289 msgstr "צד תפריט הנגישות"290 291 #: inc/panel.php:4 18293 msgstr "צד התפריט" 294 295 #: inc/panel.php:421 292 296 msgid "Left (default)" 293 msgstr " ימין(ברירת מחדל)"294 295 #: inc/panel.php:4 19297 msgstr "שמאל (ברירת מחדל)" 298 299 #: inc/panel.php:422 296 300 msgid "Right" 297 msgstr " שמאל"298 299 #: inc/panel.php:42 5301 msgstr "ימין" 302 303 #: inc/panel.php:428 300 304 msgid "Toolbar Header Color" 301 msgstr "צבע הכותרת העליונה והאייקון"302 303 #: inc/panel.php:43 0305 msgstr "צבע כותרת התפריט ולחצן הפתיחה" 306 307 #: inc/panel.php:433 304 308 msgid "Disable toolbar animation" 305 msgstr "ביטול אנימציית ה כניסה והיציאה"306 307 #: inc/panel.php:43 6309 msgstr "ביטול אנימציית התפריט" 310 311 #: inc/panel.php:439 308 312 msgid "Toggle Button" 309 msgstr "לחצן הצגת התפריט"310 311 #: inc/panel.php:44 1313 msgstr "לחצן פתיחת התפריט" 314 315 #: inc/panel.php:444 312 316 msgid "Position from top" 313 317 msgstr "מיקום מלמעלה" 314 318 315 #: inc/panel.php:44 2 inc/panel.php:446319 #: inc/panel.php:445 inc/panel.php:449 316 320 msgid "in pixels" 317 321 msgstr "בפיקסלים" 318 322 319 #: inc/panel.php:44 5323 #: inc/panel.php:448 320 324 msgid "Position from side" 321 325 msgstr "מיקום מהצד" 322 326 323 #: inc/panel.php:45 5 inc/panel.php:508327 #: inc/panel.php:458 inc/panel.php:535 324 328 msgid "Additional Links" 325 329 msgstr "קישורים נוספים" 326 330 327 #: inc/panel.php:45 6 inc/panel.php:464 inc/toolbar.php:93331 #: inc/panel.php:459 inc/panel.php:467 inc/toolbar.php:98 328 332 msgid "Accessibility Statement" 329 333 msgstr "הצהרת נגישות" 330 334 331 #: inc/panel.php:46 1 inc/panel.php:482335 #: inc/panel.php:464 inc/panel.php:486 inc/panel.php:506 332 336 msgid "Label" 333 337 msgstr "תווית" 334 338 335 #: inc/panel.php:46 5339 #: inc/panel.php:468 336 340 msgid "" 337 341 "Change the default label of the statement link. Please note that if you " … … 339 343 "languages" 340 344 msgstr "" 341 "שינוי תווית ברירת המחדל עבור הצהרת הנגישות. נא לשים לב שאם תשנו הגדרה זו "342 " לא ניתן יהיה לתרגם את המחרוזתלשפות נוספות."343 344 #: inc/panel.php:47 0 inc/panel.php:489345 "שינוי תווית ברירת המחדל של הקישור אל הצהרת הנגישות. נא לשים לב שאם תשנו " 346 "תווית זו לא תוכלו לתרגם אותה לשפות נוספות." 347 348 #: inc/panel.php:473 inc/panel.php:495 inc/panel.php:515 345 349 msgid "Link" 346 350 msgstr "קישור" 347 351 348 #: inc/panel.php:4 85352 #: inc/panel.php:490 349 353 msgid "" 350 354 "Change the default label of the feedback link. Please note that if you " … … 352 356 "languages" 353 357 msgstr "" 354 "שינוי תווית ברירת המחדל של השארת המשוב. נא לשים לב שאם תשנו הגדרה זו לא " 355 "ניתן יהיה לתרגם את המחרוזת לשפות נוספות. " 356 357 #: inc/panel.php:500 358 "שינוי תווית ברירת המחדל של הקישור אל השארת משוב. נא לשים לב שאם תשנו תווית " 359 "זו לא תוכלו לתרגם אותה לשפות נוספות." 360 361 #: inc/panel.php:501 inc/panel.php:509 inc/toolbar.php:95 362 msgid "Site Map" 363 msgstr "מפת האתר" 364 365 #: inc/panel.php:510 366 msgid "" 367 "Change the default label of the sitemap link. Please note that if you change " 368 "the default label you will not be able to translate it into other languages" 369 msgstr "" 370 "שינוי תווית ברירת המחדל של הקישור אל מפת האתר. נא לשים לב שאם תשנו תווית זו " 371 "לא תוכלו לתרגם אותה לשפות נוספות." 372 373 #: inc/panel.php:527 358 374 msgid "AccessibleWP Accessibility Toolbar" 359 msgstr " AccessibleWP תפריט נגישות"360 361 #: inc/panel.php:5 06375 msgstr "תפריט נגישות AccessibleWP" 376 377 #: inc/panel.php:533 362 378 msgid "Heading" 363 379 msgstr "כותרת" 364 380 365 #: inc/toolbar.php: 19381 #: inc/toolbar.php:20 366 382 msgid "Toggle Accessibility Toolbar" 367 msgstr " הצגה או הסתרה של תפריט הנגישות"368 369 #: inc/toolbar.php:2 5383 msgstr "פתיחה וסגירה של תפריט הנגישות" 384 385 #: inc/toolbar.php:27 370 386 msgid "Accessibility Toolbar Toggle View" 371 msgstr " משנה את מצב התצוגה של תפריט הנגישות"372 373 #: inc/toolbar.php: 39387 msgstr "פתיחה וסגירה של תפריט הנגישות" 388 389 #: inc/toolbar.php:41 374 390 msgid "Contast" 375 msgstr "ניגודיות "376 377 #: inc/toolbar.php:4 3391 msgstr "ניגודיות גבוהה" 392 393 #: inc/toolbar.php:45 378 394 msgid "Increase Text" 379 395 msgstr "הגדלת טקסט" 380 396 381 #: inc/toolbar.php:4 4397 #: inc/toolbar.php:46 382 398 msgid "Decrease Text" 383 399 msgstr "הקטנת טקסט" 384 400 385 #: inc/toolbar.php:74 401 #: inc/toolbar.php:56 402 msgid "Highlight Links & Buttons" 403 msgstr "סימון קישורים ולחצנים" 404 405 #: inc/toolbar.php:76 386 406 msgid "Toggle the visibility of the Accessibility Toolbar" 387 msgstr " משנה את מצב התצוגה של תפריט הנגישות"388 389 #: inc/toolbar.php:1 09407 msgstr "פתיחה וסגירה של תפריט הנגישות" 408 409 #: inc/toolbar.php:118 390 410 msgid "Powered with" 391 411 msgstr "מופעל ב" 392 412 393 #: inc/toolbar.php:1 09413 #: inc/toolbar.php:118 394 414 msgid "Love" 395 415 msgstr "אהבה" 396 416 397 #: inc/toolbar.php:1 09417 #: inc/toolbar.php:118 398 418 msgid "by" 399 419 msgstr "ע״י" -
accessible-poetry/trunk/lang/acwp.pot
r2782759 r2785619 1 # Copyright (C) 2022 Amit Moreno1 # Copyright (C) 2022 Codenroll 2 2 # This file is distributed under the GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. 3 #, fuzzy4 3 msgid "" 5 4 msgstr "" 6 "Project-Id-Version: AccessibleWP - Accessibility Toolbar 5.0.2\n" 7 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/trunk\n" 8 "POT-Creation-Date: 2022-09-10 14:30+0300\n" 9 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 5 "Project-Id-Version: AccessibleWP - Accessibility Toolbar 5.0.3\n" 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessible-poetry\n" 10 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 11 8 "Language-Team: LANGUAGE <[email protected]>\n" … … 13 10 "Content-Type: text/plain; charset=UTF-8\n" 14 11 "Content-Transfer-Encoding: 8bit\n" 15 "X-Generator: Poedit 3.1.1\n" 12 "POT-Creation-Date: 2022-09-15T22:04:41+00:00\n" 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 "X-Generator: WP-CLI 2.6.0\n" 16 15 "X-Domain: acwp\n" 17 16 … … 29 28 30 29 #. Author of the plugin 31 msgid " Amit Moreno"30 msgid "Codenroll" 32 31 msgstr "" 33 32 … … 36 35 msgstr "" 37 36 38 #: inc/panel.php:111 37 #: inc/panel.php:27 38 msgid "AccessibleWP" 39 msgstr "" 40 41 #: inc/panel.php:114 39 42 msgid "Welcome to <span>AccessibleWP</span> Dashboard!" 40 43 msgstr "" 41 44 42 #: inc/panel.php:11 245 #: inc/panel.php:115 43 46 msgid "Accessibility solutions for websites based on the WordPress." 44 47 msgstr "" 45 48 46 #: inc/panel.php:11 449 #: inc/panel.php:117 47 50 msgid "Toolbar Settings" 48 51 msgstr "" 49 52 50 #: inc/panel.php:1 1753 #: inc/panel.php:120 51 54 msgid "Who We Are?" 52 55 msgstr "" 53 56 54 #: inc/panel.php:1 1757 #: inc/panel.php:120 55 58 msgid "About The Author" 56 59 msgstr "" 57 60 58 #: inc/panel.php:1 1761 #: inc/panel.php:120 59 62 msgid "W3C Accessibility Standards Overview" 60 63 msgstr "" 61 64 62 #: inc/panel.php:121 inc/panel.php:478 inc/panel.php:484 inc/toolbar.php:95 65 #: inc/panel.php:124 66 #: inc/panel.php:481 67 #: inc/panel.php:489 68 #: inc/toolbar.php:101 63 69 msgid "Send Feedback" 64 70 msgstr "" 65 71 66 #: inc/panel.php:13 472 #: inc/panel.php:137 67 73 msgid "Toolbar Heading" 68 74 msgstr "" 69 75 70 #: inc/panel.php:1 3976 #: inc/panel.php:142 71 77 msgid "Toolbar title" 72 78 msgstr "" 73 79 74 #: inc/panel.php:142 inc/toolbar.php:73 80 #: inc/panel.php:145 81 #: inc/toolbar.php:75 75 82 msgid "Accessibility Toolbar" 76 83 msgstr "" 77 84 78 #: inc/panel.php:14 385 #: inc/panel.php:146 79 86 msgid "Change the default toolbar title. Please note that if you change the title you will not be able to translate it into other languages" 80 87 msgstr "" 81 88 82 #: inc/panel.php:153 inc/panel.php:507 89 #: inc/panel.php:156 90 #: inc/panel.php:534 83 91 msgid "Options" 84 92 msgstr "" 85 93 86 #: inc/panel.php:158 inc/toolbar.php:33 94 #: inc/panel.php:161 95 #: inc/toolbar.php:35 87 96 msgid "Keyboard Navigation" 88 97 msgstr "" 89 98 90 #: inc/panel.php:16 299 #: inc/panel.php:165 91 100 msgid "Add effect to components in focus mode." 92 101 msgstr "" 93 102 94 #: inc/panel.php:16 3103 #: inc/panel.php:166 95 104 msgid "Allow navigation between components using keyboard arrows & TAB." 96 105 msgstr "" 97 106 98 #: inc/panel.php:1 69107 #: inc/panel.php:172 99 108 msgid "Disable arrows navigation" 100 109 msgstr "" 101 110 102 #: inc/panel.php:173 inc/panel.php:188 inc/panel.php:230 inc/panel.php:266 103 #: inc/panel.php:304 inc/panel.php:340 inc/panel.php:364 111 #: inc/panel.php:176 112 #: inc/panel.php:191 113 #: inc/panel.php:233 114 #: inc/panel.php:269 115 #: inc/panel.php:307 116 #: inc/panel.php:343 117 #: inc/panel.php:367 104 118 msgid "Hide option" 105 119 msgstr "" 106 120 107 #: inc/panel.php:179 inc/toolbar.php:36 121 #: inc/panel.php:182 122 #: inc/toolbar.php:38 108 123 msgid "Disable Animations" 109 124 msgstr "" 110 125 111 #: inc/panel.php:18 3126 #: inc/panel.php:186 112 127 msgid "Disables CSS3 animations." 113 128 msgstr "" 114 129 115 #: inc/panel.php:19 4130 #: inc/panel.php:197 116 131 msgid "Dark Contrast" 117 132 msgstr "" 118 133 119 #: inc/panel.php: 198134 #: inc/panel.php:201 120 135 msgid "Changes the colors of backgrounds, texts and links." 121 136 msgstr "" 122 137 123 #: inc/panel.php: 199138 #: inc/panel.php:202 124 139 msgid "Disables background images." 125 140 msgstr "" 126 141 127 #: inc/panel.php:20 4142 #: inc/panel.php:207 128 143 msgid "Use custom colors" 129 144 msgstr "" 130 145 131 #: inc/panel.php:2 08146 #: inc/panel.php:211 132 147 msgid "Backgrounds color" 133 148 msgstr "" 134 149 135 #: inc/panel.php:21 2150 #: inc/panel.php:215 136 151 msgid "Text color" 137 152 msgstr "" 138 153 139 #: inc/panel.php:21 6154 #: inc/panel.php:219 140 155 msgid "Links color" 141 156 msgstr "" 142 157 143 #: inc/panel.php:220 inc/panel.php:281 inc/panel.php:319 inc/panel.php:355 158 #: inc/panel.php:223 159 #: inc/panel.php:284 160 #: inc/panel.php:322 161 #: inc/panel.php:358 144 162 msgid "Mode" 145 163 msgstr "" 146 164 147 #: inc/panel.php:223 inc/panel.php:284 inc/panel.php:322 inc/panel.php:358 165 #: inc/panel.php:226 166 #: inc/panel.php:287 167 #: inc/panel.php:325 168 #: inc/panel.php:361 148 169 msgid "Normal CSS (default)" 149 170 msgstr "" 150 171 151 #: inc/panel.php:224 inc/panel.php:285 inc/panel.php:323 inc/panel.php:359 172 #: inc/panel.php:227 173 #: inc/panel.php:288 174 #: inc/panel.php:326 175 #: inc/panel.php:362 152 176 msgid "Hard CSS" 153 177 msgstr "" 154 178 155 #: inc/panel.php:22 5179 #: inc/panel.php:228 156 180 msgid "JS" 157 181 msgstr "" 158 182 159 #: inc/panel.php:23 6183 #: inc/panel.php:239 160 184 msgid "Font Size" 161 185 msgstr "" 162 186 163 #: inc/panel.php:24 0187 #: inc/panel.php:243 164 188 msgid "Allow users to increase or decrease font sizes." 165 189 msgstr "" 166 190 167 #: inc/panel.php:24 5191 #: inc/panel.php:248 168 192 msgid "By how many percent to <b>increase</b> the font size?" 169 193 msgstr "" 170 194 171 #: inc/panel.php:2 49195 #: inc/panel.php:252 172 196 msgid "By how many percent to <b>decrease</b> the font size?" 173 197 msgstr "" 174 198 175 #: inc/panel.php:25 3199 #: inc/panel.php:256 176 200 msgid "Use custom tags?" 177 201 msgstr "" 178 202 179 #: inc/panel.php:2 57203 #: inc/panel.php:260 180 204 msgid "Seperate tags with comma" 181 205 msgstr "" 182 206 183 #: inc/panel.php:26 1207 #: inc/panel.php:264 184 208 msgid "Disable line-height reset when font size is changing?" 185 209 msgstr "" 186 210 187 #: inc/panel.php:272 inc/toolbar.php:48 211 #: inc/panel.php:275 212 #: inc/toolbar.php:50 188 213 msgid "Readable Font" 189 214 msgstr "" 190 215 191 #: inc/panel.php:27 6216 #: inc/panel.php:279 192 217 msgid "Change the font family of all text to readable font." 193 218 msgstr "" 194 219 195 #: inc/panel.php:29 0220 #: inc/panel.php:293 196 221 msgid "Choose your readable font:" 197 222 msgstr "" 198 223 199 #: inc/panel.php:29 3224 #: inc/panel.php:296 200 225 msgid "Default (Arial)" 201 226 msgstr "" 202 227 203 #: inc/panel.php:29 4228 #: inc/panel.php:297 204 229 msgid "Tahoma" 205 230 msgstr "" 206 231 207 #: inc/panel.php:29 5232 #: inc/panel.php:298 208 233 msgid "Custom Family" 209 234 msgstr "" 210 235 211 #: inc/panel.php:30 0236 #: inc/panel.php:303 212 237 msgid "Custom Font Family" 213 238 msgstr "" 214 239 215 #: inc/panel.php:310 inc/toolbar.php:51 240 #: inc/panel.php:313 241 #: inc/toolbar.php:53 216 242 msgid "Mark Titles" 217 243 msgstr "" 218 244 219 #: inc/panel.php:31 4245 #: inc/panel.php:317 220 246 msgid "Add custom background color and text color to heading components." 221 247 msgstr "" 222 248 223 #: inc/panel.php:3 28249 #: inc/panel.php:331 224 250 msgid "Use custom colors?" 225 251 msgstr "" 226 252 227 #: inc/panel.php:33 2253 #: inc/panel.php:335 228 254 msgid "Titles Background Color" 229 255 msgstr "" 230 256 231 #: inc/panel.php:33 6257 #: inc/panel.php:339 232 258 msgid "Titles Text Color" 233 259 msgstr "" 234 260 235 #: inc/panel.php:34 6 inc/toolbar.php:54261 #: inc/panel.php:349 236 262 msgid "Underline Links" 237 263 msgstr "" 238 264 239 #: inc/panel.php:35 0265 #: inc/panel.php:353 240 266 msgid "Add line under all link components." 241 267 msgstr "" 242 268 243 #: inc/panel.php:374 inc/panel.php:509 269 #: inc/panel.php:377 270 #: inc/panel.php:536 244 271 msgid "Settings" 245 272 msgstr "" 246 273 247 #: inc/panel.php:38 1274 #: inc/panel.php:384 248 275 msgid "Hide the icons of the accessibility options" 249 276 msgstr "" 250 277 251 #: inc/panel.php:38 5278 #: inc/panel.php:388 252 279 msgid "Disable button dragging" 253 280 msgstr "" 254 281 255 #: inc/panel.php:3 89282 #: inc/panel.php:392 256 283 msgid "Show toolbar also on mobile devices" 257 284 msgstr "" 258 285 259 #: inc/panel.php:399 inc/panel.php:510 286 #: inc/panel.php:402 287 #: inc/panel.php:537 260 288 msgid "Style" 261 289 msgstr "" 262 290 263 #: inc/panel.php:40 4291 #: inc/panel.php:407 264 292 msgid "Toolbar style" 265 293 msgstr "" 266 294 267 #: inc/panel.php:4 08295 #: inc/panel.php:411 268 296 msgid "App style (default)" 269 297 msgstr "" 270 298 271 #: inc/panel.php:4 09299 #: inc/panel.php:412 272 300 msgid "Columns style" 273 301 msgstr "" 274 302 275 #: inc/panel.php:41 5303 #: inc/panel.php:418 276 304 msgid "Toolbar side" 277 305 msgstr "" 278 306 279 #: inc/panel.php:4 18307 #: inc/panel.php:421 280 308 msgid "Left (default)" 281 309 msgstr "" 282 310 283 #: inc/panel.php:4 19311 #: inc/panel.php:422 284 312 msgid "Right" 285 313 msgstr "" 286 314 287 #: inc/panel.php:42 5315 #: inc/panel.php:428 288 316 msgid "Toolbar Header Color" 289 317 msgstr "" 290 318 291 #: inc/panel.php:43 0319 #: inc/panel.php:433 292 320 msgid "Disable toolbar animation" 293 321 msgstr "" 294 322 295 #: inc/panel.php:43 6323 #: inc/panel.php:439 296 324 msgid "Toggle Button" 297 325 msgstr "" 298 326 299 #: inc/panel.php:44 1327 #: inc/panel.php:444 300 328 msgid "Position from top" 301 329 msgstr "" 302 330 303 #: inc/panel.php:442 inc/panel.php:446 331 #: inc/panel.php:445 332 #: inc/panel.php:449 304 333 msgid "in pixels" 305 334 msgstr "" 306 335 307 #: inc/panel.php:44 5336 #: inc/panel.php:448 308 337 msgid "Position from side" 309 338 msgstr "" 310 339 311 #: inc/panel.php:455 inc/panel.php:508 340 #: inc/panel.php:458 341 #: inc/panel.php:535 312 342 msgid "Additional Links" 313 343 msgstr "" 314 344 315 #: inc/panel.php:456 inc/panel.php:464 inc/toolbar.php:93 345 #: inc/panel.php:459 346 #: inc/panel.php:467 347 #: inc/toolbar.php:98 316 348 msgid "Accessibility Statement" 317 349 msgstr "" 318 350 319 #: inc/panel.php:461 inc/panel.php:482 351 #: inc/panel.php:464 352 #: inc/panel.php:486 353 #: inc/panel.php:506 320 354 msgid "Label" 321 355 msgstr "" 322 356 323 #: inc/panel.php:46 5357 #: inc/panel.php:468 324 358 msgid "Change the default label of the statement link. Please note that if you change the default label you will not be able to translate it into other languages" 325 359 msgstr "" 326 360 327 #: inc/panel.php:470 inc/panel.php:489 361 #: inc/panel.php:473 362 #: inc/panel.php:495 363 #: inc/panel.php:515 328 364 msgid "Link" 329 365 msgstr "" 330 366 331 #: inc/panel.php:4 85367 #: inc/panel.php:490 332 368 msgid "Change the default label of the feedback link. Please note that if you change the default label you will not be able to translate it into other languages" 333 369 msgstr "" 334 370 335 #: inc/panel.php:500 371 #: inc/panel.php:501 372 #: inc/panel.php:509 373 #: inc/toolbar.php:95 374 msgid "Site Map" 375 msgstr "" 376 377 #: inc/panel.php:510 378 msgid "Change the default label of the sitemap link. Please note that if you change the default label you will not be able to translate it into other languages" 379 msgstr "" 380 381 #: inc/panel.php:527 336 382 msgid "AccessibleWP Accessibility Toolbar" 337 383 msgstr "" 338 384 339 #: inc/panel.php:5 06385 #: inc/panel.php:533 340 386 msgid "Heading" 341 387 msgstr "" 342 388 343 #: inc/toolbar.php: 19389 #: inc/toolbar.php:20 344 390 msgid "Toggle Accessibility Toolbar" 345 391 msgstr "" 346 392 347 #: inc/toolbar.php:2 5393 #: inc/toolbar.php:27 348 394 msgid "Accessibility Toolbar Toggle View" 349 395 msgstr "" 350 396 351 #: inc/toolbar.php: 39397 #: inc/toolbar.php:41 352 398 msgid "Contast" 353 399 msgstr "" 354 400 355 #: inc/toolbar.php:4 3401 #: inc/toolbar.php:45 356 402 msgid "Increase Text" 357 403 msgstr "" 358 404 359 #: inc/toolbar.php:4 4405 #: inc/toolbar.php:46 360 406 msgid "Decrease Text" 361 407 msgstr "" 362 408 363 #: inc/toolbar.php:74 409 #: inc/toolbar.php:56 410 msgid "Highlight Links & Buttons" 411 msgstr "" 412 413 #: inc/toolbar.php:76 364 414 msgid "Toggle the visibility of the Accessibility Toolbar" 365 415 msgstr "" 366 416 367 #: inc/toolbar.php:1 09417 #: inc/toolbar.php:118 368 418 msgid "Powered with" 369 419 msgstr "" 370 420 371 #: inc/toolbar.php:1 09421 #: inc/toolbar.php:118 372 422 msgid "Love" 373 423 msgstr "" 374 424 375 #: inc/toolbar.php:1 09425 #: inc/toolbar.php:118 376 426 msgid "by" 377 427 msgstr "" -
accessible-poetry/trunk/readme.txt
r2784476 r2785619 1 1 === AccessibleWP - Accessibility Toolbar === 2 2 3 Contributors: digisphere, codenroll 3 Contributors: digisphere, codenroll, accessiblewp 4 4 Tags: accessibility, WCAG, a11y, Section 508, WAI, aria, accessibility widget, accessibility plugin, text size, contrast, keyboard navigation, color saturation, legible fonts, disabled, blind, visually impaired, toolbar, toolkit, tabindex, user1, web accessibility, accessible, נגישות, הנגשת אתר, נגישות אתרים 5 5 Requires at least: 5.2 6 Tested up to: 6.0 7 Stable tag: 5.0. 08 Version: 5.0. 26 Tested up to: 6.0.2 7 Stable tag: 5.0.3 8 Version: 5.0.3 9 9 License: GPLv2 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.