Plugin Directory

Changeset 2785619


Ignore:
Timestamp:
09/15/2022 10:21:22 PM (4 years ago)
Author:
digisphere
Message:

Uploading version 5.0.3

Location:
accessible-poetry
Files:
24 added
1 deleted
10 edited

Legend:

Unmodified
Added
Removed
  • accessible-poetry/trunk/accessible-wp-toolbar.php

    r2782759 r2785619  
    66 * Author: Codenroll
    77 * Author URI: https://www.codenroll.co.il/
    8  * Version: 5.0.2
     8 * Version: 5.0.3
    99 * Text Domain: acwp
    1010 * License: GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
     
    1414    return;
    1515
    16 // Define our directory
     16// Define plugin directory
    1717define('AWP_DIR', plugin_dir_url( __FILE__ ));
    1818
  • accessible-poetry/trunk/assets/css/main.css

    r2781818 r2785619  
    3131}
    3232
    33 /* Totally hide */
    34 .acwp-hide {
    35     display: none;
    36 }
    37 
    3833/* Reset box sizing for the toolbar */
    3934#acwp-toolbar * {
     
    4540}
    4641
     42/* helpers */
     43.acwp-hide {
     44    display: none;
     45}
     46
    4747/* 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}
    4862#acwp-toolbar-btn {
    4963    margin:  0;
     
    5569    background: none;
    5670    border: 0;
    57     position: fixed;
    58     z-index: 9500;
    59     margin-top: -100vh;
    60     top: 120px;
    61     left: 20px;
    6271    width: 48px;
    6372    height: 48px;
    64     background: #3c8dbc;
     73    background: #1E7AB9;
    6574    text-align: center;
    6675    color: #fff;
    6776    border: 4px solid #fff;
    6877    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);
    7983}
    8084#acwp-toolbar-btn.acwp-noanimation {
     
    9296
    9397/* Primary toggle button - Active mode */
    94 #acwp-toolbar-btn.show {
     98#acwp-toolbar-btn-wrap.show {
    9599    margin-top: 0;
    96100}
    97101
    98102/* Primary toggle button - SVG Icon */
     103body.acwp-contrast #acwp-toolbar-btn svg,
    99104#acwp-toolbar-btn svg {
    100105    height: auto;
     
    103108    top: 2px;
    104109    position: relative;
     110    background-color: transparent;
    105111}
    106112
    107113/* Primary toggle button - Right side */
    108 #acwp-toolbar-btn.acwp-right {
     114#acwp-toolbar-btn-wrap.acwp-right {
    109115    left: auto;
    110116    right: 10px
     
    262268    font-weight:400;
    263269    font-size:1em;
    264     outline:none
     270    outline:none;
     271    align-items: center;
    265272}
    266273.acwp-toggler label:hover,
     
    433440}
    434441.acwp-heading{
    435     background:#3c8dbc;
    436     color:#fff;
     442    background: #1E7AB9;
     443    color: #fff;
    437444    padding:20px
    438445}
     
    472479    animation:none !important
    473480}
    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 }
     481body.acwp-underline:not(.acwp-underline-hardcss) #acwp-close-toolbar,
     482body.acwp-underline:not(.acwp-underline-hardcss) a,
     483body.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}
     492body.acwp-underline.acwp-underline-hardcss a,
     493body.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
    480503body.acwp-marktitles:not(.acwp-titles-hardcss):not(.acwp-titles-custom) #acwp-toolbar .acwp-heading,
    481504body.acwp-marktitles:not(.acwp-titles-hardcss):not(.acwp-titles-custom) h1,
  • accessible-poetry/trunk/assets/js/functions.js

    r2781835 r2785619  
    237237   
    238238    setTimeout(function () {
    239         $('#acwp-toolbar-btn').addClass('show');
     239        $('#acwp-toolbar-btn-wrap').addClass('show');
    240240    }, 250);
    241241
     
    249249
    250250    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) {
    252252            e.preventDefault();
    253253            window.my_dragging = {};
  • accessible-poetry/trunk/assets/js/toolbar.js

    r2781835 r2785619  
    11jQuery(document).ready(function($) {
    22    $('#acwp-toolbar-btn').click(function(){
    3         $('#acwp-toolbar-btn').removeClass('show');
     3        $('#acwp-toolbar-btn-wrap').removeClass('show');
    44        $('.acwp-toolbar').addClass('acwp-toolbar-active');
    55        setTimeout(function(){
     
    88    });
    99    $('#acwp-close-toolbar').click(function(){
    10         $('#acwp-toolbar-btn').addClass('show');
     10        $('#acwp-toolbar-btn-wrap').addClass('show');
    1111        $('.acwp-toolbar').removeClass('acwp-toolbar-show');
    1212        setTimeout(function(){
  • accessible-poetry/trunk/inc/panel.php

    r2782762 r2785619  
    11<?php
    2 /**
    3  * AccessibleWP
    4  *
    5  * @author      Amitmoreno, Codenroll
    6  * @author_url  https://amitmoreno.com/, https://www.codenroll.co.il/
    7  */
    8 
    92/**
    103 * Class ACWP_AdminPanel
     
    2821    public function register_pages() {
    2922
    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 ...
    3125        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            );
    3333        }
    3434
     
    9696        register_setting('acwp', 'acwp_mobile',     array('show_in_rest' => true));
    9797
    98         // Statement & Feedback
     98        // additional links
    9999        register_setting('acwp', 'acwp_statement',  array('show_in_rest' => true));
    100100        register_setting('acwp', 'acwp_feedback',   array('show_in_rest' => true));
     101        register_setting('acwp', 'acwp_sitemap',   array('show_in_rest' => true));
     102       
    101103        register_setting('acwp', 'acwp_statement_label',  array('show_in_rest' => true));
    102104        register_setting('acwp', 'acwp_feedback_label',   array('show_in_rest' => true));
     105        register_setting('acwp', 'acwp_sitemap_label',   array('show_in_rest' => true));
    103106    }
    104107
     
    480483            <table class="form-table">
    481484                <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>
    483488                    <td>
    484489                        <input type="text" name="acwp_feedback_label" value="<?php echo esc_attr( get_option('acwp_feedback_label') ); ?>" placeholder="<?php _e('Send Feedback', 'acwp');?>" />
     
    487492                </tr>
    488493                <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>
    490497                    <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>
    491518                </tr>
    492519            </table>
  • accessible-poetry/trunk/inc/toolbar.php

    r2781835 r2785619  
    1717    ?>
    1818   
    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>
    2426   
    2527    <div id="acwp-toolbar" class="acwp-toolbar <?php echo $side . ' ' . $noanimation . ' ' . $style; ?>" aria-label="<?php _e('Accessibility Toolbar Toggle View', 'acwp'); ?>">
     
    5254               
    5355                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');
    5557               
    5658                ?>
     
    9092 */
    9193function 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   
    9297    $statement_link = get_option('acwp_statement');
    9398    $statement_text = ( get_option('acwp_statement_label') && get_option('acwp_statement_label') != '') ? get_option('acwp_statement_label') : __('Accessibility Statement', 'acwp');
     99   
    94100    $feedback_link = get_option('acwp_feedback');
    95101    $feedback_text = ( get_option('acwp_feedback_label') && get_option('acwp_feedback_label') != '') ? get_option('acwp_feedback_label') : __('Send Feedback', 'acwp');
     
    106112            <?php if($feedback_link && $feedback_link != '') : ?>
    107113            <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>
    108117            <?php endif; ?>
    109118            <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 Moreno
     1# Copyright (C) 2022 Codenroll
    22# This file is distributed under the GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
    33msgid ""
    44msgstr ""
    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"
    910"Last-Translator: \n"
    1011"Language-Team: \n"
     
    2021#. Plugin Name of the plugin
    2122msgid "AccessibleWP - Accessibility Toolbar"
    22 msgstr "‫AccessibleWP - תפריט נגישות"
     23msgstr "תפריט נגישות - AccessibleWP"
    2324
    2425#. Plugin URI of the plugin
     
    3132"users with disabilities."
    3233msgstr ""
    33 שדרג את הנגישות באתר שלך לאנשים עם מוגבלויות באמצעות תפריט עם כלי נגישות "
    34 "מקצועיים ומותאמים לאתרי וורדפרס."
     34וסיף לאתר תפריט עם כלי נגישות מקצועיים המסייעים לאנשים עם מוגבלויות, כנדרש "
     35"בהנחיות ה-WCAG 2.1."
    3536
    3637#. Author of the plugin
    37 msgid "Amit Moreno"
    38 msgstr "עמית מורנו"
     38msgid "Codenroll"
     39msgstr "קוד אנד רול"
    3940
    4041#. Author URI of the plugin
     
    4243msgstr "‫https://www.codenroll.co.il/"
    4344
    44 #: inc/panel.php:111
     45#: inc/panel.php:27
     46msgid "AccessibleWP"
     47msgstr "נגישות"
     48
     49#: inc/panel.php:114
    4550msgid "Welcome to <span>AccessibleWP</span> Dashboard!"
    46 msgstr "ברוכים הבאים אל לוח הבקרה של <span>AccessibleWP</span>!"
    47 
    48 #: inc/panel.php:112
     51msgstr "ברוכים הבאים אל לוח הבקרה של AccessibleWP!"
     52
     53#: inc/panel.php:115
    4954msgid "Accessibility solutions for websites based on the WordPress."
    50 msgstr "פתרונות הנגשה לאתרי אינטרנט מבוססים מערכת וורדפרס."
    51 
    52 #: inc/panel.php:114
     55msgstr "פתרונות נגישות לאתרי אינטרנט מבוססי מערכת וורדפרס."
     56
     57#: inc/panel.php:117
    5358msgid "Toolbar Settings"
    54 msgstr "הגדרות תפריט הנגישות"
    55 
    56 #: inc/panel.php:117
     59msgstr "הגדרות התפריט"
     60
     61#: inc/panel.php:120
    5762msgid "Who We Are?"
    5863msgstr "מי אנחנו?"
    5964
    60 #: inc/panel.php:117
     65#: inc/panel.php:120
    6166msgid "About The Author"
    6267msgstr "אודות המפתח"
    6368
    64 #: inc/panel.php:117
     69#: inc/panel.php:120
    6570msgid "W3C Accessibility Standards Overview"
    66 msgstr "תקנות הנגישות"
    67 
    68 #: inc/panel.php:121 inc/panel.php:478 inc/panel.php:484 inc/toolbar.php:95
     71msgstr "סיקור הנחיות נגישות אתרים מאת W3C (באנגלית)"
     72
     73#: inc/panel.php:124 inc/panel.php:481 inc/panel.php:489 inc/toolbar.php:101
    6974msgid "Send Feedback"
    7075msgstr "שליחת משוב"
    7176
    72 #: inc/panel.php:134
     77#: inc/panel.php:137
    7378msgid "Toolbar Heading"
    74 msgstr "כותרת תפריט הנגישות"
    75 
    76 #: inc/panel.php:139
     79msgstr "כותרת התפריט"
     80
     81#: inc/panel.php:142
    7782msgid "Toolbar title"
    7883msgstr "כותרת התפריט"
    7984
    80 #: inc/panel.php:142 inc/toolbar.php:73
     85#: inc/panel.php:145 inc/toolbar.php:75
    8186msgid "Accessibility Toolbar"
    8287msgstr "תפריט נגישות"
    8388
    84 #: inc/panel.php:143
     89#: inc/panel.php:146
    8590msgid ""
    8691"Change the default toolbar title. Please note that if you change the title "
    8792"you will not be able to translate it into other languages"
    8893msgstr ""
    89 "שינוי כותרת ברירת המחדל של תפריט הנגישות. נא לשים לב שאם תשנו את הכותרת לא "
    90 "ניתן יהיה לתרגם אותה אחר כך לשפות אחרות"
    91 
    92 #: inc/panel.php:153 inc/panel.php:507
     94"שינוי כותרת ברירת המחדל של התפריט. נא לשים לב ששינוי כותרת ברירת המחדל תמנע "
     95"ממך את האפשרות לתרגם אותה לשפות נוספות."
     96
     97#: inc/panel.php:156 inc/panel.php:534
    9398msgid "Options"
    9499msgstr "אפשרויות"
    95100
    96 #: inc/panel.php:158 inc/toolbar.php:33
     101#: inc/panel.php:161 inc/toolbar.php:35
    97102msgid "Keyboard Navigation"
    98103msgstr "ניווט מקלדת"
    99104
    100 #: inc/panel.php:162
     105#: inc/panel.php:165
    101106msgid "Add effect to components in focus mode."
    102 msgstr "מוסיף אפקט לרכיבים במצב פוקוס"
    103 
    104 #: inc/panel.php:163
     107msgstr "הוספת אפקט לרכיבים במצב פוקוס"
     108
     109#: inc/panel.php:166
    105110msgid "Allow navigation between components using keyboard arrows & TAB."
    106 msgstr "מאפשר לנווט בין רכיבי העמוד באמצעות לחצני המקלדת ולחצן ה-TAB."
    107 
    108 #: inc/panel.php:169
     111msgstr "מאפשר לנווט באמצעות לחצן ה-TAB וגם באמצעות חצי המקלדת"
     112
     113#: inc/panel.php:172
    109114msgid "Disable arrows navigation"
    110 msgstr "ביטול הניווט באמצעות חצים"
    111 
    112 #: inc/panel.php:173 inc/panel.php:188 inc/panel.php:230 inc/panel.php:266
    113 #: inc/panel.php:304 inc/panel.php:340 inc/panel.php:364
     115msgstr "ביטול ניווט באמצעות חצים"
     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
    114119msgid "Hide option"
    115120msgstr "הסתרת אפשרות זו"
    116121
    117 #: inc/panel.php:179 inc/toolbar.php:36
     122#: inc/panel.php:182 inc/toolbar.php:38
    118123msgid "Disable Animations"
    119 msgstr "ביטול אנימציות"
    120 
    121 #: inc/panel.php:183
     124msgstr "ביטול אנימציות / הבהובים"
     125
     126#: inc/panel.php:186
    122127msgid "Disables CSS3 animations."
    123 msgstr "ביטול אנימציות מסוג CSS3."
    124 
    125 #: inc/panel.php:194
     128msgstr "מבטל אנימציות CSS3"
     129
     130#: inc/panel.php:197
    126131msgid "Dark Contrast"
    127 msgstr "ניגודיות כהה"
    128 
    129 #: inc/panel.php:198
     132msgstr "ניגודיות גבוהה"
     133
     134#: inc/panel.php:201
    130135msgid "Changes the colors of backgrounds, texts and links."
    131 msgstr "משנה את הצבעים של רקעים, טקסטים וקישורים."
    132 
    133 #: inc/panel.php:199
     136msgstr "משנה את הצבעים של הרקעים, הטקסטים והקישורים"
     137
     138#: inc/panel.php:202
    134139msgid "Disables background images."
    135 msgstr "מבטל תמונות רקע."
    136 
    137 #: inc/panel.php:204
     140msgstr "מבטל תמונות רקע"
     141
     142#: inc/panel.php:207
    138143msgid "Use custom colors"
    139 msgstr "השתמש בצבעים מותאמים אישית"
    140 
    141 #: inc/panel.php:208
     144msgstr "האם להשתמש בצבעים מותאמים אישית?"
     145
     146#: inc/panel.php:211
    142147msgid "Backgrounds color"
    143148msgstr "צבע רקע"
    144149
    145 #: inc/panel.php:212
     150#: inc/panel.php:215
    146151msgid "Text color"
    147152msgstr "צבע טקסט"
    148153
    149 #: inc/panel.php:216
     154#: inc/panel.php:219
    150155msgid "Links color"
    151 msgstr "צבע קישורים"
    152 
    153 #: inc/panel.php:220 inc/panel.php:281 inc/panel.php:319 inc/panel.php:355
     156msgstr "צבע קישור"
     157
     158#: inc/panel.php:223 inc/panel.php:284 inc/panel.php:322 inc/panel.php:358
    154159msgid "Mode"
    155160msgstr "מצב"
    156161
    157 #: inc/panel.php:223 inc/panel.php:284 inc/panel.php:322 inc/panel.php:358
     162#: inc/panel.php:226 inc/panel.php:287 inc/panel.php:325 inc/panel.php:361
    158163msgid "Normal CSS (default)"
    159 msgstr "ברירת המחדל"
    160 
    161 #: inc/panel.php:224 inc/panel.php:285 inc/panel.php:323 inc/panel.php:359
     164msgstr "רגיל (ברירת מחדל)"
     165
     166#: inc/panel.php:227 inc/panel.php:288 inc/panel.php:326 inc/panel.php:362
    162167msgid "Hard CSS"
    163168msgstr "שימוש ב-important"
    164169
    165 #: inc/panel.php:225
     170#: inc/panel.php:228
    166171msgid "JS"
    167 msgstr "שימוש ב-JavaScript"
    168 
    169 #: inc/panel.php:236
     172msgstr "‫JS"
     173
     174#: inc/panel.php:239
    170175msgid "Font Size"
    171 msgstr "גודל גופן"
    172 
    173 #: inc/panel.php:240
     176msgstr "גודל טקסט"
     177
     178#: inc/panel.php:243
    174179msgid "Allow users to increase or decrease font sizes."
    175 msgstr "מאפשר למשתמש להגדיל או להקטין את הטקסטים באתר."
    176 
    177 #: inc/panel.php:245
     180msgstr "מאפשר למשתמשים להגדיל או להקטין את גודל הטקסט"
     181
     182#: inc/panel.php:248
    178183msgid "By how many percent to <b>increase</b> the font size?"
    179 msgstr "בכמה אחוזים להגדיל את הטקסט?"
    180 
    181 #: inc/panel.php:249
     184msgstr "בכמה אחוזים לאפשר הגדלה של הטקסט?"
     185
     186#: inc/panel.php:252
    182187msgid "By how many percent to <b>decrease</b> the font size?"
    183 msgstr "בכמה אחוזים להקטין את הטקסט?"
    184 
    185 #: inc/panel.php:253
     188msgstr "בכמה אחוזים לאפשר הקטנה של הטקסט?"
     189
     190#: inc/panel.php:256
    186191msgid "Use custom tags?"
    187 msgstr "התאמה אישית של התגיות שעליהן תכונה זו משפיעה"
    188 
    189 #: inc/panel.php:257
     192msgstr "האם להשתמש בתגיות מותאמות אישית?"
     193
     194#: inc/panel.php:260
    190195msgid "Seperate tags with comma"
    191 msgstr ""
    192 "נא להפריד שמות תגית באמצעות פסיק (למשל: p,h1,h2,h3,#custom-id,section,."
    193 "more)"
    194 
    195 #: inc/panel.php:261
     196msgstr "נא להפריד תגיות באמצעות פסיק"
     197
     198#: inc/panel.php:264
    196199msgid "Disable line-height reset when font size is changing?"
    197 msgstr "האם לבטל האיפוס של גובה השורה כאשר גודל הטקסט משתנה?"
    198 
    199 #: inc/panel.php:272 inc/toolbar.php:48
     200msgstr "האם לבטל את איפוס גובה השורה בעת שינוי גודל הטקסט?"
     201
     202#: inc/panel.php:275 inc/toolbar.php:50
    200203msgid "Readable Font"
    201204msgstr "גופן קריא"
    202205
    203 #: inc/panel.php:276
     206#: inc/panel.php:279
    204207msgid "Change the font family of all text to readable font."
    205 msgstr "משנה את משפחת הגופן של כל הטקסטים לגופן קריא."
    206 
    207 #: inc/panel.php:290
     208msgstr ""
     209"מאפשר למשתמשים לשנות את הגופן לגופן ממשפחה נגישה (כמו למשל אריאל או טהומה)"
     210
     211#: inc/panel.php:293
    208212msgid "Choose your readable font:"
    209213msgstr "בחירת הגופן הקריא:"
    210214
    211 #: inc/panel.php:293
     215#: inc/panel.php:296
    212216msgid "Default (Arial)"
    213217msgstr "אריאל (ברירת מחדל)"
    214218
    215 #: inc/panel.php:294
     219#: inc/panel.php:297
    216220msgid "Tahoma"
    217221msgstr "טהומה"
    218222
    219 #: inc/panel.php:295
     223#: inc/panel.php:298
    220224msgid "Custom Family"
    221 msgstr "מותאם אישית"
    222 
    223 #: inc/panel.php:300
     225msgstr "גופן מותאם אישית"
     226
     227#: inc/panel.php:303
    224228msgid "Custom Font Family"
    225 msgstr "שם הגופן המותאם אישית"
    226 
    227 #: inc/panel.php:310 inc/toolbar.php:51
     229msgstr "משפחת גופן מותאמת אישית"
     230
     231#: inc/panel.php:313 inc/toolbar.php:53
    228232msgid "Mark Titles"
    229233msgstr "סימון כותרות"
    230234
    231 #: inc/panel.php:314
     235#: inc/panel.php:317
    232236msgid "Add custom background color and text color to heading components."
    233 msgstr "מדגיש כותרות באמצעות התניית צבע רקע וצבע טקסט."
    234 
    235 #: inc/panel.php:328
     237msgstr "מאפשר להדגיש כותרות באמצעות צבע רקע וצבע טקסט"
     238
     239#: inc/panel.php:331
    236240msgid "Use custom colors?"
    237241msgstr "האם להשתמש בצבעים מותאמים אישית?"
    238242
    239 #: inc/panel.php:332
     243#: inc/panel.php:335
    240244msgid "Titles Background Color"
    241 msgstr "צבע רקע הכותרות"
    242 
    243 #: inc/panel.php:336
     245msgstr "צבע רקע"
     246
     247#: inc/panel.php:339
    244248msgid "Titles Text Color"
    245 msgstr "צבע טקסט הכותרות"
    246 
    247 #: inc/panel.php:346 inc/toolbar.php:54
     249msgstr "צבע טקסט"
     250
     251#: inc/panel.php:349
    248252msgid "Underline Links"
    249 msgstr "קו תחתי לקישורים"
    250 
    251 #: inc/panel.php:350
     253msgstr "הדגשת קישורים"
     254
     255#: inc/panel.php:353
    252256msgid "Add line under all link components."
    253 msgstr "מוסיף קו תחתון לתגיות קישור."
    254 
    255 #: inc/panel.php:374 inc/panel.php:509
     257msgstr "מדגיש קישורים ולחצנים באמצעות קו תחתון וצבע רקע צהוב"
     258
     259#: inc/panel.php:377 inc/panel.php:536
    256260msgid "Settings"
    257261msgstr "הגדרות"
    258262
    259 #: inc/panel.php:381
     263#: inc/panel.php:384
    260264msgid "Hide the icons of the accessibility options"
    261265msgstr "הסתרת האייקונים מתפריט הנגישות"
    262266
    263 #: inc/panel.php:385
     267#: inc/panel.php:388
    264268msgid "Disable button dragging"
    265 msgstr "ביטול האפשרות לגרור את האייקון"
    266 
    267 #: inc/panel.php:389
     269msgstr "ביטול האפשרות לגרירת האייקון שפותח את התפריט"
     270
     271#: inc/panel.php:392
    268272msgid "Show toolbar also on mobile devices"
    269 msgstr "הצג את תפריט הנגישות גם לטלפונים חכמים"
    270 
    271 #: inc/panel.php:399 inc/panel.php:510
     273msgstr "הצגת תפריט הנגישות גם במכשירים ניידים"
     274
     275#: inc/panel.php:402 inc/panel.php:537
    272276msgid "Style"
    273277msgstr "סגנון"
    274278
    275 #: inc/panel.php:404
     279#: inc/panel.php:407
    276280msgid "Toolbar style"
    277 msgstr "סגנון תפריט הנגישות"
    278 
    279 #: inc/panel.php:408
     281msgstr "סגנון תפריט"
     282
     283#: inc/panel.php:411
    280284msgid "App style (default)"
    281285msgstr "אפליקטיבי (ברירת מחדל)"
    282286
    283 #: inc/panel.php:409
     287#: inc/panel.php:412
    284288msgid "Columns style"
    285 msgstr "טורים"
    286 
    287 #: inc/panel.php:415
     289msgstr "משבצות"
     290
     291#: inc/panel.php:418
    288292msgid "Toolbar side"
    289 msgstr "צד תפריט הנגישות"
    290 
    291 #: inc/panel.php:418
     293msgstr "צד התפריט"
     294
     295#: inc/panel.php:421
    292296msgid "Left (default)"
    293 msgstr "ימין (ברירת מחדל)"
    294 
    295 #: inc/panel.php:419
     297msgstr "שמאל (ברירת מחדל)"
     298
     299#: inc/panel.php:422
    296300msgid "Right"
    297 msgstr "שמאל"
    298 
    299 #: inc/panel.php:425
     301msgstr "ימין"
     302
     303#: inc/panel.php:428
    300304msgid "Toolbar Header Color"
    301 msgstr "צבע הכותרת העליונה והאייקון"
    302 
    303 #: inc/panel.php:430
     305msgstr "צבע כותרת התפריט ולחצן הפתיחה"
     306
     307#: inc/panel.php:433
    304308msgid "Disable toolbar animation"
    305 msgstr "ביטול אנימציית הכניסה והיציאה"
    306 
    307 #: inc/panel.php:436
     309msgstr "ביטול אנימציית התפריט"
     310
     311#: inc/panel.php:439
    308312msgid "Toggle Button"
    309 msgstr "לחצן הצגת התפריט"
    310 
    311 #: inc/panel.php:441
     313msgstr "לחצן פתיחת התפריט"
     314
     315#: inc/panel.php:444
    312316msgid "Position from top"
    313317msgstr "מיקום מלמעלה"
    314318
    315 #: inc/panel.php:442 inc/panel.php:446
     319#: inc/panel.php:445 inc/panel.php:449
    316320msgid "in pixels"
    317321msgstr "בפיקסלים"
    318322
    319 #: inc/panel.php:445
     323#: inc/panel.php:448
    320324msgid "Position from side"
    321325msgstr "מיקום מהצד"
    322326
    323 #: inc/panel.php:455 inc/panel.php:508
     327#: inc/panel.php:458 inc/panel.php:535
    324328msgid "Additional Links"
    325329msgstr "קישורים נוספים"
    326330
    327 #: inc/panel.php:456 inc/panel.php:464 inc/toolbar.php:93
     331#: inc/panel.php:459 inc/panel.php:467 inc/toolbar.php:98
    328332msgid "Accessibility Statement"
    329333msgstr "הצהרת נגישות"
    330334
    331 #: inc/panel.php:461 inc/panel.php:482
     335#: inc/panel.php:464 inc/panel.php:486 inc/panel.php:506
    332336msgid "Label"
    333337msgstr "תווית"
    334338
    335 #: inc/panel.php:465
     339#: inc/panel.php:468
    336340msgid ""
    337341"Change the default label of the statement link. Please note that if you "
     
    339343"languages"
    340344msgstr ""
    341 "שינוי תווית ברירת המחדל עבור הצהרת הנגישות. נא לשים לב שאם תשנו הגדרה זו "
    342 "לא ניתן יהיה לתרגם את המחרוזת לשפות נוספות."
    343 
    344 #: inc/panel.php:470 inc/panel.php:489
     345"שינוי תווית ברירת המחדל של הקישור אל הצהרת הנגישות. נא לשים לב שאם תשנו "
     346"תווית זו לא תוכלו לתרגם אותה לשפות נוספות."
     347
     348#: inc/panel.php:473 inc/panel.php:495 inc/panel.php:515
    345349msgid "Link"
    346350msgstr "קישור"
    347351
    348 #: inc/panel.php:485
     352#: inc/panel.php:490
    349353msgid ""
    350354"Change the default label of the feedback link. Please note that if you "
     
    352356"languages"
    353357msgstr ""
    354 "שינוי תווית ברירת המחדל של השארת המשוב. נא לשים לב שאם תשנו הגדרה זו לא "
    355 "ניתן יהיה לתרגם את המחרוזת לשפות נוספות. "
    356 
    357 #: inc/panel.php:500
     358"שינוי תווית ברירת המחדל של הקישור אל השארת משוב. נא לשים לב שאם תשנו תווית "
     359"זו לא תוכלו לתרגם אותה לשפות נוספות."
     360
     361#: inc/panel.php:501 inc/panel.php:509 inc/toolbar.php:95
     362msgid "Site Map"
     363msgstr "מפת האתר"
     364
     365#: inc/panel.php:510
     366msgid ""
     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"
     369msgstr ""
     370"שינוי תווית ברירת המחדל של הקישור אל מפת האתר. נא לשים לב שאם תשנו תווית זו "
     371"לא תוכלו לתרגם אותה לשפות נוספות."
     372
     373#: inc/panel.php:527
    358374msgid "AccessibleWP Accessibility Toolbar"
    359 msgstr "‫AccessibleWP תפריט נגישות"
    360 
    361 #: inc/panel.php:506
     375msgstr "תפריט נגישות AccessibleWP"
     376
     377#: inc/panel.php:533
    362378msgid "Heading"
    363379msgstr "כותרת"
    364380
    365 #: inc/toolbar.php:19
     381#: inc/toolbar.php:20
    366382msgid "Toggle Accessibility Toolbar"
    367 msgstr "הצגה או הסתרה של תפריט הנגישות"
    368 
    369 #: inc/toolbar.php:25
     383msgstr "פתיחה וסגירה של תפריט הנגישות"
     384
     385#: inc/toolbar.php:27
    370386msgid "Accessibility Toolbar Toggle View"
    371 msgstr "משנה את מצב התצוגה של תפריט הנגישות"
    372 
    373 #: inc/toolbar.php:39
     387msgstr "פתיחה וסגירה של תפריט הנגישות"
     388
     389#: inc/toolbar.php:41
    374390msgid "Contast"
    375 msgstr "ניגודיות"
    376 
    377 #: inc/toolbar.php:43
     391msgstr "ניגודיות גבוהה"
     392
     393#: inc/toolbar.php:45
    378394msgid "Increase Text"
    379395msgstr "הגדלת טקסט"
    380396
    381 #: inc/toolbar.php:44
     397#: inc/toolbar.php:46
    382398msgid "Decrease Text"
    383399msgstr "הקטנת טקסט"
    384400
    385 #: inc/toolbar.php:74
     401#: inc/toolbar.php:56
     402msgid "Highlight Links & Buttons"
     403msgstr "סימון קישורים ולחצנים"
     404
     405#: inc/toolbar.php:76
    386406msgid "Toggle the visibility of the Accessibility Toolbar"
    387 msgstr "משנה את מצב התצוגה של תפריט הנגישות"
    388 
    389 #: inc/toolbar.php:109
     407msgstr "פתיחה וסגירה של תפריט הנגישות"
     408
     409#: inc/toolbar.php:118
    390410msgid "Powered with"
    391411msgstr "מופעל ב"
    392412
    393 #: inc/toolbar.php:109
     413#: inc/toolbar.php:118
    394414msgid "Love"
    395415msgstr "אהבה"
    396416
    397 #: inc/toolbar.php:109
     417#: inc/toolbar.php:118
    398418msgid "by"
    399419msgstr "ע״י"
  • accessible-poetry/trunk/lang/acwp.pot

    r2782759 r2785619  
    1 # Copyright (C) 2022 Amit Moreno
     1# Copyright (C) 2022 Codenroll
    22# This file is distributed under the GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
    3 #, fuzzy
    43msgid ""
    54msgstr ""
    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"
    107"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    118"Language-Team: LANGUAGE <[email protected]>\n"
     
    1310"Content-Type: text/plain; charset=UTF-8\n"
    1411"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"
    1615"X-Domain: acwp\n"
    1716
     
    2928
    3029#. Author of the plugin
    31 msgid "Amit Moreno"
     30msgid "Codenroll"
    3231msgstr ""
    3332
     
    3635msgstr ""
    3736
    38 #: inc/panel.php:111
     37#: inc/panel.php:27
     38msgid "AccessibleWP"
     39msgstr ""
     40
     41#: inc/panel.php:114
    3942msgid "Welcome to <span>AccessibleWP</span> Dashboard!"
    4043msgstr ""
    4144
    42 #: inc/panel.php:112
     45#: inc/panel.php:115
    4346msgid "Accessibility solutions for websites based on the WordPress."
    4447msgstr ""
    4548
    46 #: inc/panel.php:114
     49#: inc/panel.php:117
    4750msgid "Toolbar Settings"
    4851msgstr ""
    4952
    50 #: inc/panel.php:117
     53#: inc/panel.php:120
    5154msgid "Who We Are?"
    5255msgstr ""
    5356
    54 #: inc/panel.php:117
     57#: inc/panel.php:120
    5558msgid "About The Author"
    5659msgstr ""
    5760
    58 #: inc/panel.php:117
     61#: inc/panel.php:120
    5962msgid "W3C Accessibility Standards Overview"
    6063msgstr ""
    6164
    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
    6369msgid "Send Feedback"
    6470msgstr ""
    6571
    66 #: inc/panel.php:134
     72#: inc/panel.php:137
    6773msgid "Toolbar Heading"
    6874msgstr ""
    6975
    70 #: inc/panel.php:139
     76#: inc/panel.php:142
    7177msgid "Toolbar title"
    7278msgstr ""
    7379
    74 #: inc/panel.php:142 inc/toolbar.php:73
     80#: inc/panel.php:145
     81#: inc/toolbar.php:75
    7582msgid "Accessibility Toolbar"
    7683msgstr ""
    7784
    78 #: inc/panel.php:143
     85#: inc/panel.php:146
    7986msgid "Change the default toolbar title. Please note that if you change the title you will not be able to translate it into other languages"
    8087msgstr ""
    8188
    82 #: inc/panel.php:153 inc/panel.php:507
     89#: inc/panel.php:156
     90#: inc/panel.php:534
    8391msgid "Options"
    8492msgstr ""
    8593
    86 #: inc/panel.php:158 inc/toolbar.php:33
     94#: inc/panel.php:161
     95#: inc/toolbar.php:35
    8796msgid "Keyboard Navigation"
    8897msgstr ""
    8998
    90 #: inc/panel.php:162
     99#: inc/panel.php:165
    91100msgid "Add effect to components in focus mode."
    92101msgstr ""
    93102
    94 #: inc/panel.php:163
     103#: inc/panel.php:166
    95104msgid "Allow navigation between components using keyboard arrows & TAB."
    96105msgstr ""
    97106
    98 #: inc/panel.php:169
     107#: inc/panel.php:172
    99108msgid "Disable arrows navigation"
    100109msgstr ""
    101110
    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
    104118msgid "Hide option"
    105119msgstr ""
    106120
    107 #: inc/panel.php:179 inc/toolbar.php:36
     121#: inc/panel.php:182
     122#: inc/toolbar.php:38
    108123msgid "Disable Animations"
    109124msgstr ""
    110125
    111 #: inc/panel.php:183
     126#: inc/panel.php:186
    112127msgid "Disables CSS3 animations."
    113128msgstr ""
    114129
    115 #: inc/panel.php:194
     130#: inc/panel.php:197
    116131msgid "Dark Contrast"
    117132msgstr ""
    118133
    119 #: inc/panel.php:198
     134#: inc/panel.php:201
    120135msgid "Changes the colors of backgrounds, texts and links."
    121136msgstr ""
    122137
    123 #: inc/panel.php:199
     138#: inc/panel.php:202
    124139msgid "Disables background images."
    125140msgstr ""
    126141
    127 #: inc/panel.php:204
     142#: inc/panel.php:207
    128143msgid "Use custom colors"
    129144msgstr ""
    130145
    131 #: inc/panel.php:208
     146#: inc/panel.php:211
    132147msgid "Backgrounds color"
    133148msgstr ""
    134149
    135 #: inc/panel.php:212
     150#: inc/panel.php:215
    136151msgid "Text color"
    137152msgstr ""
    138153
    139 #: inc/panel.php:216
     154#: inc/panel.php:219
    140155msgid "Links color"
    141156msgstr ""
    142157
    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
    144162msgid "Mode"
    145163msgstr ""
    146164
    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
    148169msgid "Normal CSS (default)"
    149170msgstr ""
    150171
    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
    152176msgid "Hard CSS"
    153177msgstr ""
    154178
    155 #: inc/panel.php:225
     179#: inc/panel.php:228
    156180msgid "JS"
    157181msgstr ""
    158182
    159 #: inc/panel.php:236
     183#: inc/panel.php:239
    160184msgid "Font Size"
    161185msgstr ""
    162186
    163 #: inc/panel.php:240
     187#: inc/panel.php:243
    164188msgid "Allow users to increase or decrease font sizes."
    165189msgstr ""
    166190
    167 #: inc/panel.php:245
     191#: inc/panel.php:248
    168192msgid "By how many percent to <b>increase</b> the font size?"
    169193msgstr ""
    170194
    171 #: inc/panel.php:249
     195#: inc/panel.php:252
    172196msgid "By how many percent to <b>decrease</b> the font size?"
    173197msgstr ""
    174198
    175 #: inc/panel.php:253
     199#: inc/panel.php:256
    176200msgid "Use custom tags?"
    177201msgstr ""
    178202
    179 #: inc/panel.php:257
     203#: inc/panel.php:260
    180204msgid "Seperate tags with comma"
    181205msgstr ""
    182206
    183 #: inc/panel.php:261
     207#: inc/panel.php:264
    184208msgid "Disable line-height reset when font size is changing?"
    185209msgstr ""
    186210
    187 #: inc/panel.php:272 inc/toolbar.php:48
     211#: inc/panel.php:275
     212#: inc/toolbar.php:50
    188213msgid "Readable Font"
    189214msgstr ""
    190215
    191 #: inc/panel.php:276
     216#: inc/panel.php:279
    192217msgid "Change the font family of all text to readable font."
    193218msgstr ""
    194219
    195 #: inc/panel.php:290
     220#: inc/panel.php:293
    196221msgid "Choose your readable font:"
    197222msgstr ""
    198223
    199 #: inc/panel.php:293
     224#: inc/panel.php:296
    200225msgid "Default (Arial)"
    201226msgstr ""
    202227
    203 #: inc/panel.php:294
     228#: inc/panel.php:297
    204229msgid "Tahoma"
    205230msgstr ""
    206231
    207 #: inc/panel.php:295
     232#: inc/panel.php:298
    208233msgid "Custom Family"
    209234msgstr ""
    210235
    211 #: inc/panel.php:300
     236#: inc/panel.php:303
    212237msgid "Custom Font Family"
    213238msgstr ""
    214239
    215 #: inc/panel.php:310 inc/toolbar.php:51
     240#: inc/panel.php:313
     241#: inc/toolbar.php:53
    216242msgid "Mark Titles"
    217243msgstr ""
    218244
    219 #: inc/panel.php:314
     245#: inc/panel.php:317
    220246msgid "Add custom background color and text color to heading components."
    221247msgstr ""
    222248
    223 #: inc/panel.php:328
     249#: inc/panel.php:331
    224250msgid "Use custom colors?"
    225251msgstr ""
    226252
    227 #: inc/panel.php:332
     253#: inc/panel.php:335
    228254msgid "Titles Background Color"
    229255msgstr ""
    230256
    231 #: inc/panel.php:336
     257#: inc/panel.php:339
    232258msgid "Titles Text Color"
    233259msgstr ""
    234260
    235 #: inc/panel.php:346 inc/toolbar.php:54
     261#: inc/panel.php:349
    236262msgid "Underline Links"
    237263msgstr ""
    238264
    239 #: inc/panel.php:350
     265#: inc/panel.php:353
    240266msgid "Add line under all link components."
    241267msgstr ""
    242268
    243 #: inc/panel.php:374 inc/panel.php:509
     269#: inc/panel.php:377
     270#: inc/panel.php:536
    244271msgid "Settings"
    245272msgstr ""
    246273
    247 #: inc/panel.php:381
     274#: inc/panel.php:384
    248275msgid "Hide the icons of the accessibility options"
    249276msgstr ""
    250277
    251 #: inc/panel.php:385
     278#: inc/panel.php:388
    252279msgid "Disable button dragging"
    253280msgstr ""
    254281
    255 #: inc/panel.php:389
     282#: inc/panel.php:392
    256283msgid "Show toolbar also on mobile devices"
    257284msgstr ""
    258285
    259 #: inc/panel.php:399 inc/panel.php:510
     286#: inc/panel.php:402
     287#: inc/panel.php:537
    260288msgid "Style"
    261289msgstr ""
    262290
    263 #: inc/panel.php:404
     291#: inc/panel.php:407
    264292msgid "Toolbar style"
    265293msgstr ""
    266294
    267 #: inc/panel.php:408
     295#: inc/panel.php:411
    268296msgid "App style (default)"
    269297msgstr ""
    270298
    271 #: inc/panel.php:409
     299#: inc/panel.php:412
    272300msgid "Columns style"
    273301msgstr ""
    274302
    275 #: inc/panel.php:415
     303#: inc/panel.php:418
    276304msgid "Toolbar side"
    277305msgstr ""
    278306
    279 #: inc/panel.php:418
     307#: inc/panel.php:421
    280308msgid "Left (default)"
    281309msgstr ""
    282310
    283 #: inc/panel.php:419
     311#: inc/panel.php:422
    284312msgid "Right"
    285313msgstr ""
    286314
    287 #: inc/panel.php:425
     315#: inc/panel.php:428
    288316msgid "Toolbar Header Color"
    289317msgstr ""
    290318
    291 #: inc/panel.php:430
     319#: inc/panel.php:433
    292320msgid "Disable toolbar animation"
    293321msgstr ""
    294322
    295 #: inc/panel.php:436
     323#: inc/panel.php:439
    296324msgid "Toggle Button"
    297325msgstr ""
    298326
    299 #: inc/panel.php:441
     327#: inc/panel.php:444
    300328msgid "Position from top"
    301329msgstr ""
    302330
    303 #: inc/panel.php:442 inc/panel.php:446
     331#: inc/panel.php:445
     332#: inc/panel.php:449
    304333msgid "in pixels"
    305334msgstr ""
    306335
    307 #: inc/panel.php:445
     336#: inc/panel.php:448
    308337msgid "Position from side"
    309338msgstr ""
    310339
    311 #: inc/panel.php:455 inc/panel.php:508
     340#: inc/panel.php:458
     341#: inc/panel.php:535
    312342msgid "Additional Links"
    313343msgstr ""
    314344
    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
    316348msgid "Accessibility Statement"
    317349msgstr ""
    318350
    319 #: inc/panel.php:461 inc/panel.php:482
     351#: inc/panel.php:464
     352#: inc/panel.php:486
     353#: inc/panel.php:506
    320354msgid "Label"
    321355msgstr ""
    322356
    323 #: inc/panel.php:465
     357#: inc/panel.php:468
    324358msgid "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"
    325359msgstr ""
    326360
    327 #: inc/panel.php:470 inc/panel.php:489
     361#: inc/panel.php:473
     362#: inc/panel.php:495
     363#: inc/panel.php:515
    328364msgid "Link"
    329365msgstr ""
    330366
    331 #: inc/panel.php:485
     367#: inc/panel.php:490
    332368msgid "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"
    333369msgstr ""
    334370
    335 #: inc/panel.php:500
     371#: inc/panel.php:501
     372#: inc/panel.php:509
     373#: inc/toolbar.php:95
     374msgid "Site Map"
     375msgstr ""
     376
     377#: inc/panel.php:510
     378msgid "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"
     379msgstr ""
     380
     381#: inc/panel.php:527
    336382msgid "AccessibleWP Accessibility Toolbar"
    337383msgstr ""
    338384
    339 #: inc/panel.php:506
     385#: inc/panel.php:533
    340386msgid "Heading"
    341387msgstr ""
    342388
    343 #: inc/toolbar.php:19
     389#: inc/toolbar.php:20
    344390msgid "Toggle Accessibility Toolbar"
    345391msgstr ""
    346392
    347 #: inc/toolbar.php:25
     393#: inc/toolbar.php:27
    348394msgid "Accessibility Toolbar Toggle View"
    349395msgstr ""
    350396
    351 #: inc/toolbar.php:39
     397#: inc/toolbar.php:41
    352398msgid "Contast"
    353399msgstr ""
    354400
    355 #: inc/toolbar.php:43
     401#: inc/toolbar.php:45
    356402msgid "Increase Text"
    357403msgstr ""
    358404
    359 #: inc/toolbar.php:44
     405#: inc/toolbar.php:46
    360406msgid "Decrease Text"
    361407msgstr ""
    362408
    363 #: inc/toolbar.php:74
     409#: inc/toolbar.php:56
     410msgid "Highlight Links & Buttons"
     411msgstr ""
     412
     413#: inc/toolbar.php:76
    364414msgid "Toggle the visibility of the Accessibility Toolbar"
    365415msgstr ""
    366416
    367 #: inc/toolbar.php:109
     417#: inc/toolbar.php:118
    368418msgid "Powered with"
    369419msgstr ""
    370420
    371 #: inc/toolbar.php:109
     421#: inc/toolbar.php:118
    372422msgid "Love"
    373423msgstr ""
    374424
    375 #: inc/toolbar.php:109
     425#: inc/toolbar.php:118
    376426msgid "by"
    377427msgstr ""
  • accessible-poetry/trunk/readme.txt

    r2784476 r2785619  
    11=== AccessibleWP - Accessibility Toolbar ===
    22
    3 Contributors: digisphere, codenroll
     3Contributors: digisphere, codenroll, accessiblewp
    44Tags: 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, נגישות, הנגשת אתר, נגישות אתרים
    55Requires at least: 5.2
    6 Tested up to: 6.0
    7 Stable tag: 5.0.0
    8 Version: 5.0.2
     6Tested up to: 6.0.2
     7Stable tag: 5.0.3
     8Version: 5.0.3
    99License: GPLv2
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.