Plugin Directory

Changeset 3378438


Ignore:
Timestamp:
10/14/2025 09:00:43 PM (6 months ago)
Author:
meacodes
Message:

Release 1.1.4 - banner over loading issue

Location:
meacodes-accessibility-tools
Files:
70 added
29 edited

Legend:

Unmodified
Added
Removed
  • meacodes-accessibility-tools/trunk/assets/admin/admin-theme.php

    r3378044 r3378438  
    5555      <a href="#" class="meaAccessibility_nav-tab"><?php esc_html_e('Style', 'meacodes-accessibility-tools'); ?></a>
    5656    </h1>
    57    
    58     <!-- Airdrop Campaign Banner -->
    59     <div class="meaAccessibility_airdrop_banner">
    60       <div class="meaAccessibility_airdrop_content">
    61         <span class="meaAccessibility_airdrop_icon">🎉</span>
    62         <span class="meaAccessibility_airdrop_text">
    63           <strong><?php esc_html_e('Airdrop Campaign Active!', 'meacodes-accessibility-tools'); ?></strong>
    64           <?php esc_html_e('Join our exclusive airdrop and earn rewards. Limited time offer!', 'meacodes-accessibility-tools'); ?>
    65         </span>
    66         <a href="https://meacodes.com" target="_blank" rel="noopener noreferrer" class="meaAccessibility_airdrop_button">
    67           <?php esc_html_e('Join Now', 'meacodes-accessibility-tools'); ?>
    68         </a>
    69       </div>
    70     </div>
    7157   
    7258    <!-- Attention Banner (Cache notice) -->
  • meacodes-accessibility-tools/trunk/assets/admin/css/meacodes-banner.css

    r3376802 r3378438  
    3232.meacodes-banner-content {
    3333    display: flex;
    34     align-items: flex-start;
     34    align-items: center;
    3535    gap: 20px;
    3636    margin: 0 auto;
    3737    position: relative;
    3838    padding: 0 40px;
     39    min-height: 200px;
    3940}
    4041
     
    9697}
    9798
    98 /* Features Grid */
    99 .meacodes-features-grid {
     99/* Features List */
     100.meacodes-banner-message ul {
    100101    margin: 15px 0;
    101     display: flex;
    102     flex-direction: column;
    103     gap: 8px;
    104 }
    105 
    106 .meacodes-feature-row {
    107     display: flex;
    108     gap: 20px;
    109     align-items: center;
    110 }
    111 
    112 .meacodes-feature-item {
    113     flex: 1;
     102    padding-left: 20px;
     103    list-style: none;
     104}
     105
     106.meacodes-banner-message li {
    114107    position: relative;
    115108    padding-left: 20px;
    116     font-size: 13px;
    117     line-height: 1.4;
    118     color: #ffffff;
    119     display: flex;
    120     align-items: center;
    121 }
    122 
    123 .meacodes-feature-item:before {
     109    font-size: 14px;
     110    line-height: 1.5;
     111    color: #ffffff;
     112    margin-bottom: 8px;
     113}
     114
     115.meacodes-banner-message li:before {
    124116    content: "✓";
    125117    position: absolute;
     
    129121    font-weight: bold;
    130122    font-size: 14px;
     123}
     124
     125.meacodes-banner-message small {
     126    font-size: 12px;
     127    color: #cccccc;
     128    font-style: italic;
    131129}
    132130
     
    168166
    169167.meacodes-banner-image img {
    170     width: 420px;
     168    width: 320px;
    171169    height: auto;
    172170    border-radius: 8px;
     
    185183        text-align: center;
    186184        gap: 15px;
     185        align-items: center;
     186        min-height: 250px;
    187187    }
    188188   
     
    208208    .meacodes-banner-content {
    209209        gap: 10px;
     210        min-height: 200px;
     211        align-items: center;
    210212    }
    211213   
     
    223225    }
    224226   
    225     .meacodes-feature-item {
     227    .meacodes-banner-message li {
    226228        font-size: 12px;
    227     }
    228    
    229     .meacodes-feature-row {
    230         flex-direction: column;
    231         gap: 5px;
    232         align-items: flex-start;
    233229    }
    234230   
     
    257253    }
    258254   
    259     .meacodes-feature-item {
     255    .meacodes-banner-message li {
    260256        font-size: 11px;
    261257        padding-left: 18px;
    262258    }
    263259   
    264     .meacodes-feature-item:before {
     260    .meacodes-banner-message li:before {
    265261        font-size: 12px;
    266262    }
  • meacodes-accessibility-tools/trunk/assets/admin/css/meacodes_acc_admin-rtl.css

    r3377731 r3378438  
    256256}
    257257
    258 /* Airdrop Campaign Banner */
    259 .meaAccessibility_airdrop_banner {
    260     background: linear-gradient(-135deg, var(--primary-color), var(--primary-dark));
    261     border-radius: 12px;
    262     margin-bottom: 30px;
    263     box-shadow: 0 8px 25px rgba(129, 195, 68, 0.3);
    264     border: 1px solid rgba(255, 255, 255, 0.2);
    265     overflow: hidden;
    266     position: relative;
    267 }
    268 
    269 .meaAccessibility_airdrop_banner::before {
    270     content: '';
    271     position: absolute;
    272     top: 0;
    273     right: 0;
    274     left: 0;
    275     bottom: 0;
    276     background: linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    277     pointer-events: none;
    278 }
    279 
    280 .meaAccessibility_airdrop_content {
    281     display: flex;
    282     align-items: center;
    283     gap: 15px;
    284     padding: 15px 20px;
    285     position: relative;
    286     z-index: 1;
    287 }
    288 
    289 .meaAccessibility_airdrop_icon {
    290     font-size: 24px;
    291     animation: bounce 2s infinite;
    292 }
    293 
    294 @keyframes bounce {
    295     0%, 20%, 50%, 80%, 100% {
    296         transform: translateY(0);
    297     }
    298     40% {
    299         transform: translateY(-5px);
    300     }
    301     60% {
    302         transform: translateY(-3px);
    303     }
    304 }
    305 
    306 .meaAccessibility_airdrop_text {
    307     flex: 1;
    308     color: #ffffff;
    309     font-size: 14px;
    310     line-height: 1.4;
    311 }
    312 
    313 .meaAccessibility_airdrop_text strong {
    314     font-weight: 600;
    315     display: block;
    316     margin-bottom: 2px;
    317 }
    318 
    319 .meaAccessibility_airdrop_button {
    320     background: rgba(255, 255, 255, 0.2);
    321     color: #ffffff;
    322     text-decoration: none;
    323     padding: 8px 16px;
    324     border-radius: 20px;
    325     font-size: 13px;
    326     font-weight: 600;
    327     border: 1px solid rgba(255, 255, 255, 0.3);
    328     transition: all 0.3s ease;
    329     white-space: nowrap;
    330 }
    331 
    332 .meaAccessibility_airdrop_button:hover {
    333     background: rgba(255, 255, 255, 0.3);
    334     color: #ffffff;
    335     text-decoration: none;
    336     transform: translateY(-1px);
    337     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    338 }
    339 
    340 /* Responsive Airdrop Banner */
    341 @media screen and (max-width: 768px) {
    342     .meaAccessibility_airdrop_content {
    343         flex-direction: column;
    344         text-align: center;
    345         gap: 10px;
    346     }
    347    
    348     .meaAccessibility_airdrop_text {
    349         text-align: center;
    350     }
    351    
    352     .meaAccessibility_airdrop_button {
    353         align-self: center;
    354     }
    355 }
     258
    356259
    357260.meaAccessibility_admin .meaAccessibility_tab-content {
     
    636539    }
    637540}
     541
     542/* RTL Banner Styles */
     543.meacodes-banner {
     544    margin: 20px 0 20px 20px !important;
     545}
  • meacodes-accessibility-tools/trunk/assets/admin/css/meacodes_acc_admin.css

    r3378044 r3378438  
    255255}
    256256
    257 /* Airdrop Campaign Banner */
    258 .meaAccessibility_airdrop_banner {
    259     background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    260     border-radius: 12px;
    261     margin-bottom: 30px;
    262     box-shadow: 0 8px 25px rgba(129, 195, 68, 0.3);
    263     border: 1px solid rgba(255, 255, 255, 0.2);
    264     overflow: hidden;
    265     position: relative;
    266 }
    267 
    268 .meaAccessibility_airdrop_banner::before {
    269     content: '';
    270     position: absolute;
    271     top: 0;
    272     left: 0;
    273     right: 0;
    274     bottom: 0;
    275     background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    276     pointer-events: none;
    277 }
    278 
    279 .meaAccessibility_airdrop_content {
    280     display: flex;
    281     align-items: center;
    282     gap: 15px;
    283     padding: 15px 20px;
    284     position: relative;
    285     z-index: 1;
    286 }
    287 
    288 .meaAccessibility_airdrop_icon {
    289     font-size: 24px;
    290     animation: bounce 2s infinite;
    291 }
    292 
    293 @keyframes bounce {
    294     0%, 20%, 50%, 80%, 100% {
    295         transform: translateY(0);
    296     }
    297     40% {
    298         transform: translateY(-5px);
    299     }
    300     60% {
    301         transform: translateY(-3px);
    302     }
    303 }
    304 
    305 .meaAccessibility_airdrop_text {
    306     flex: 1;
    307     color: #ffffff;
    308     font-size: 14px;
    309     line-height: 1.4;
    310 }
    311 
    312 .meaAccessibility_airdrop_text strong {
    313     font-weight: 600;
    314     display: block;
    315     margin-bottom: 2px;
    316 }
    317 
    318 .meaAccessibility_airdrop_button {
    319     background: rgba(255, 255, 255, 0.2);
    320     color: #ffffff;
    321     text-decoration: none;
    322     padding: 8px 16px;
    323     border-radius: 20px;
    324     font-size: 13px;
    325     font-weight: 600;
    326     border: 1px solid rgba(255, 255, 255, 0.3);
    327     transition: all 0.3s ease;
    328     white-space: nowrap;
    329 }
    330 
    331 .meaAccessibility_airdrop_button:hover {
    332     background: rgba(255, 255, 255, 0.3);
    333     color: #ffffff;
    334     text-decoration: none;
    335     transform: translateY(-1px);
    336     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    337 }
    338257
    339258/* Attention Banner */
     
    369288}
    370289
    371 /* Responsive Airdrop Banner */
    372 @media screen and (max-width: 768px) {
    373     .meaAccessibility_airdrop_content {
    374         flex-direction: column;
    375         text-align: center;
    376         gap: 10px;
    377     }
    378    
    379     .meaAccessibility_airdrop_text {
    380         text-align: center;
    381     }
    382    
    383     .meaAccessibility_airdrop_button {
    384         align-self: center;
    385     }
    386 }
    387290
    388291.meaAccessibility_admin .meaAccessibility_tab-content {
  • meacodes-accessibility-tools/trunk/includes/class-admin-banner.php

    r3377739 r3378438  
    5454     */
    5555    public function enqueue_assets($hook) {
    56         // Only load on admin pages
    57         if (!is_admin()) {
     56        // Only load on our plugin's admin page
     57        if ($hook !== 'toplevel_page_meaAccessibility_settings_page') {
    5858            return;
    5959        }
     
    104104     */
    105105    public function maybe_display_banner() {
     106        // Only show on our plugin's admin page
     107        $current_screen = get_current_screen();
     108        if (!$current_screen || $current_screen->id !== 'toplevel_page_meaAccessibility_settings_page') {
     109            return;
     110        }
     111
    106112        if (!$this->should_display_banner()) {
    107113            return;
     
    131137                        printf(
    132138                            /* translators: %s: Plugin name */
    133                             esc_html__('Because you\'re using the %s plugin, you\'ve earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!', 'meacodes-accessibility-tools'),
    134                             '<strong>Meacodes Accessibility Tools</strong>'
     139                            esc_html__('You\'ve been recognized as an %s of Meacodes Accessibility Tools.', 'meacodes-accessibility-tools'),
     140                            '<strong>Early Supporter</strong>'
    135141                        );
    136142                        ?>
    137143                    </p>
    138144                   
    139                     <p><strong><?php esc_html_e('The upcoming version introduces advanced features like:', 'meacodes-accessibility-tools'); ?></strong></p>
    140                    
    141                     <div class="meacodes-features-grid">
    142                         <div class="meacodes-feature-row">
    143                             <span class="meacodes-feature-item"><?php esc_html_e('Modern Mobile First Responsive Design', 'meacodes-accessibility-tools'); ?></span>
    144                             <span class="meacodes-feature-item"><?php esc_html_e('Smart Site Search Engine', 'meacodes-accessibility-tools'); ?></span>
    145                         </div>
    146                         <div class="meacodes-feature-row">
    147                             <span class="meacodes-feature-item"><?php esc_html_e('Professional Keyboard Navigation', 'meacodes-accessibility-tools'); ?></span>
    148                             <span class="meacodes-feature-item"><?php esc_html_e('Page Structure Overview', 'meacodes-accessibility-tools'); ?></span>
    149                         </div>
    150                         <div class="meacodes-feature-row">
    151                             <span class="meacodes-feature-item"><?php esc_html_e('Smart Screen Reader Integration', 'meacodes-accessibility-tools'); ?></span>
    152                             <span class="meacodes-feature-item"><?php esc_html_e('Auto Translate – Seamless Multilingual Experience', 'meacodes-accessibility-tools'); ?></span>
    153                         </div>
    154                         <div class="meacodes-feature-row">
    155                             <span class="meacodes-feature-item"><?php esc_html_e('Flexible Fonts — Google & Custom Options', 'meacodes-accessibility-tools'); ?></span>
    156                             <span class="meacodes-feature-item"><?php esc_html_e('Endless Customization', 'meacodes-accessibility-tools'); ?></span>
    157                         </div>
    158                         <div class="meacodes-feature-row">
    159                             <span class="meacodes-feature-item"><?php esc_html_e('Fully Customizable Appearance & Theme Control', 'meacodes-accessibility-tools'); ?></span>
    160                             <span class="meacodes-feature-item"><?php esc_html_e('Effortless Dark & Light Mode Customization', 'meacodes-accessibility-tools'); ?></span>
    161                         </div>
    162                         <div class="meacodes-feature-row">
    163                             <span class="meacodes-feature-item"><?php esc_html_e('Personalized Accessibility Profiles for Every User', 'meacodes-accessibility-tools'); ?></span>
    164                             <span class="meacodes-feature-item"><?php esc_html_e('Advanced Analytics & Accessibility Insights', 'meacodes-accessibility-tools'); ?></span>
    165                         </div>
    166                         <div class="meacodes-feature-row">
    167                             <span class="meacodes-feature-item"><?php esc_html_e('Comprehensive WCAG 2.1 Issue Detection & Solutions', 'meacodes-accessibility-tools'); ?></span>
    168                             <span class="meacodes-feature-item"><?php esc_html_e('Complete Accessibility Issue Summary for Your Website', 'meacodes-accessibility-tools'); ?></span>
    169                         </div>
    170                         <div class="meacodes-feature-row">
    171                             <span class="meacodes-feature-item"><?php esc_html_e('WordPress Performance & Security Score', 'meacodes-accessibility-tools'); ?></span>
    172                             <span class="meacodes-feature-item"><?php esc_html_e('Real-Time Website Performance Analysis', 'meacodes-accessibility-tools'); ?></span>
    173                         </div>
    174                     </div>
    175                    
    176145                    <p>
    177                         <strong><?php esc_html_e('💎 Register your website now in our Airdrop Campaign to claim your exclusive rewards and upcoming discounts!', 'meacodes-accessibility-tools'); ?></strong>
     146                        <?php
     147                        printf(
     148                            /* translators: %s: Pro Version 2, %s: Early Supporter Badge */
     149                            esc_html__('As part of the upcoming %s rollout, early supporters will receive an exclusive %s and extended Pro access privileges.', 'meacodes-accessibility-tools'),
     150                            '<strong>Pro Version 2</strong>',
     151                            '<strong>Early Supporter Badge</strong>'
     152                        );
     153                        ?>
    178154                    </p>
    179155                   
    180156                    <p>
    181                         <a href="<?php echo esc_url($campaign_url); ?>" class="meacodes-banner-button" target="_blank" rel="noopener noreferrer">
    182                             <?php esc_html_e('👉 Join Campaign at Meacodes.com', 'meacodes-accessibility-tools'); ?>
    183                         </a>
     157                        <?php esc_html_e('To learn how the badge system works and how sites are verified,', 'meacodes-accessibility-tools'); ?><br>
     158                        <a href="https://meacodes.com" target="_blank" rel="noopener noreferrer"><?php esc_html_e('👉 visit meacodes.com', 'meacodes-accessibility-tools'); ?></a>
    184159                    </p>
     160                   
     161                    <p><small><?php esc_html_e('This notice will hide for 24 hours once dismissed.', 'meacodes-accessibility-tools'); ?></small></p>
    185162                </div>
    186163               
  • meacodes-accessibility-tools/trunk/languages/meacodes-accessibility-tools-ar.l10n.php

    r3378044 r3378438  
    11<?php
    22// generated by Poedit from meacodes-accessibility-tools-ar.po, do not edit directly
    3 return ['domain'=>NULL,'plural-forms'=>'nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);','language'=>'ar','pot-creation-date'=>'2024-06-07 06:53-0700','po-revision-date'=>'2025-10-14 12:25+0330','translation-revision-date'=>'2025-10-14 12:25+0330','project-id-version'=>'Meacodes Accessibility Plugin','x-generator'=>'Poedit 3.7','messages'=>['Accessibility'=>'إمكانية الوصول','Drag and move the accessibility box'=>'اسحب وأعد تحريك مربع إمكانية الوصول','Open/Close Accessibility Options'=>'فتح/إغلاق خيارات إمكانية الوصول','Click to read GDPR Notice'=>'اضغط لقراءة إشعار الخصوصية','Font Size'=>'حجم الخط','‌Normal'=>'عادي','Line Height'=>'ارتفاع السطر','Normal'=>'عادي','Letter Spacing'=>'تباعد الأحرف','Dyslexia Mask'=>'تنقية عسر القراءة','Grayscale Page'=>'صفحة تدرج الرمادي','Contrast'=>'التباين','Negative'=>'سلبي','Underlined Links'=>'ارتباطات التشعبية المسطرة','Highlight Links'=>'تظليل الروابط','Grayscale Images'=>'صور تدرج الرمادي','Black and white'=>'أبيض وأسود','Developed by '=>'تم تطويره بواسطة ','Reset'=>'إعادة ضبط','Close'=>'أخفِ','GDPR Notice:'=>'إشعار لائحة حماية البيانات العامة:','This plugin uses cookies to enhance your experience and provide personalized accessibility settings. These cookies are stored in your browser and allow us to remember your preferences for font size, color schemes, and other accessibility features. By using this plugin, you consent to the use of cookies for these purposes. You can delete or block cookies in your browser settings at any time. Please note that doing so may affect your experience on the site.'=>'يستخدم هذا البرنامج النصي ملفات تعريف الارتباط لتحسين تجربتك وتوفير إعدادات إمكانية وصول شخصية. يتم تخزين ملفات تعريف الارتباط هذه في المستعرض الخاص بك وتسمح لنا بتذكر تفضيلاتك لحجم الخط وأنماط الألوان وميزات إمكانية الوصول الأخرى. باستخدام هذا البرنامج النصي ، فإنك توافق على استخدام ملفات تعريف الارتباط لهذه الأغراض. يمكنك حذف أو منع ملفات تعريف الارتباط في إعدادات المستعرض الخاص بك في أي وقت. يرجى ملاحظة أن القيام بذلك قد يؤثر على تجربتك في الموقع.','jQuery is not loaded!'=>'jQuery is not loaded!','General'=>'عام','Features'=>'مميزات','Style'=>'المظهر','Documentation'=>'مستندات','Support'=>'مُساعَدةٌ','Donation'=>'تبرع','changelog'=>'سجل التغييرات','General Settings'=>'إعدادات العام','Enable or Disable Meacodes Accessibility Tools:'=>'تفعيل أو تعطيل أدوات مساعدة الوصول من مئاکدز:','Plugin Name:'=>'اسم المكون الإضافي:','This means that the plugin name is a default and automatic translation of the word Accessibility.'=>'هذا يعني أن اسم الإضافة هو ترجمة آلية افتراضية لكلمة "إمكانية الوصول".','This name will be displayed opposite the plugin icon in the header section when the accessibility plugin is opened by the user on your website.'=>'سيظهر هذا الاسم مقابل أيقونة الإضافة في قسم الرأس (الهيدر) عند قيام المستخدم بفتح إضافة إمكانية الوصول على موقع الويب الخاص بك.','If you do not want any text to be displayed in that section, Clear default name and save changes.'=>'إذا لم ترغب في ظهور أي نص في هذا القسم، فأخفِ الاسم الافتراضي واحفظ التغييرات.','If your site is multilingual (using Polylang), keep in mind that if you change this name, the name you choose will be displayed without translation and fixed in all languages unless you rebuild the plugins language file with Polylang and enter the translation of the chosen name. Also, if you want the chosen name to revert to the default name and be displayed translated in any language, reset settings once.'=>'إذا كان موقعك متعدد اللغات (باستخدام Polylang)، فضع في اعتبارك أنه إذا قمت بتغيير هذا الاسم، فسيظهر الاسم الذي تختاره بدون ترجمة وسيظل ثابتًا بجميع اللغات إلا إذا قمت بإعادة بناء ملف لغة الإضافات باستخدام Polylang وأدخلت ترجمة الاسم الذي اخترته. أيضًا، إذا كنت ترغب في عودة الاسم إلى الاسم الافتراضي وترجمته في أي لغة، فما عليك سوى إعادة ضبط الإعدادات مرة واحدة.','Enable or Disable GDPR Notice:'=>'تفعيل / تعطيل إشعار الخصوصية:','Developed by label:'=>'تم تطويره بواسطة العلامة:','Enable "Developed by" label'=>'تفعيل تم تطويره "بواسطة" العلامة','Please turn the Developed by label on to support us and help the project move forward. '=>'من فضلك، قم بتشغيل تسمية "تم التطوير بواسطة" لدعمنا ومساعدة المشروع على المضي قدمًا. ','You can also buy us a coffee on the'=>'يمكنك أيضًا دعمنا بشراء كوب من القهوة من خلال','Donation page.'=>'صفحة التبرعات.','Thanks for your supports. '=>'نشكركم على دعمكم. ','The Accessibility plugin provides a set of tools and features to create an easier and more inclusive user experience for users with various needs. You can enable or disable each of these features individually.'=>'يوفر إضِافة إمكانية الوصول مجموعة من الأدوات والميزات لإنشاء تجربة مستخدم أسهل وأكثر شمولًا للمستخدمين ذوي الاحتياجات المختلفة. يُمكنك تفعيل أو إلغاء تفعيل كل من هذه الميزات بشكل فردي.','To find out which plugin features are used to solve which accessibility issues for your site, you can refer to the '=>'لاستكشاف ميزات الإضافات التي تُستخدم لحل مشكلات إمكانية الوصول لموقعك، يمكنك الرجوع إلى ','Documentation.'=>'مستندات.','Font Size Feature:'=>'ميزة حجم الخط:','Line Height Feature:'=>'ميزة ارتفاع السطر:','Letter Spacing Feature:'=>'ميزة تباعد الأحرف:','Dyslexia Mask Feature:'=>'ميزة تنقية عسر القراءة:','Grayscale Page Feature:'=>'ميزة صفحة تدرج الرمادي:','Contrast Feature:'=>'ميزة التباين:','Negative Feature:'=>'ميزة سلبي:','Underlined Links Feature:'=>'ميزة ارتباطات التشعبية المسطرة:','Highlight Links Feature:'=>'ميزة تظليل الروابط:','Grayscale Images Feature:'=>'ميزة صور تدرج الرمادي:','Black and white Feature:'=>'ميزة أبيض وأسود:','Style Settings'=>'إعدادات المظهر','Customize the plugins appearance to match your taste and needs using the style settings. For more information on each appearance variable, refer to the'=>'قم بتخصيص مظهر الإضافات لتتناسب مع ذوقك واحتياجاتك باستخدام إعدادات الأنماط. للحصول على مزيد من المعلومات حول كل متغير من مظهر الإضافة, يمكنك الرجوع إلى','Positionable by User:'=>'للمستخدم التحكم بموضعه:','Enabling this option allows users to freely move the accessibility plugin around the page on desktop devices. Please note that this feature is not available on mobile devices.'=>'تتيح هذه الميزة للمستخدمين تحريك إِضافة إمكانية الوصول بحرية حول الصفحة على أجهزة الكمبيوتر المكتبية. يرجى ملاحظة أن هذه الميزة غير متوفرة على الأجهزة المحمولة.','Plugin Position:'=>'موضع الإضافة:','Bottom Left Corner'=>'يسار أسفل','Bottom Right Corner'=>'اليمين أسفل','Top Left Corner'=>'اليسار أعلى','Top Right Corner'=>'يمين أعلى','Background Color: '=>'لون الخلفية: ','Background color of plugin and logo border.'=>'لون خلفية الإضافة وحد حدود الشعار.','Labels Color: '=>'لون الملصقات: ','Color of the labels or name of each feature and Plugin name to.'=>'لون الملصقات واسم كل ميزة واسم الإضافة إلى.','Divider Line Color: '=>'لون خط الفاصل: ','Color of plugin header & features section divider.'=>'لون رأس ترويسة الإضافة وفاصل قسم الميزات.','Plugin Logo Color: '=>'لون شعار الإضافة: ','Color Scheme for Plugin Logo.'=>'مخطط ألوان شعار الإضافة.','Accent Color: '=>'لون التظليل: ','Color scheme for:'=>'لوحة ألوان لـ:','Active features and their toggle buttons on hover.'=>'المميزات الفعالة وأزرار تشغيلها/إيقافها عند التمرير.','Dyslexia reading mask bars'=>'قضبان قراءة عسر القراءة','‌Buttons Color (Reset/Close):'=>'‌لون الأزرار (إعادة ضبط/أخفِ):','Buttons Hover Color (Reset/Close): '=>'لون تمرير الأزرار (إعادة ضبط/أخفِ): ','Reset settings'=>'استعادة الإعدادات الافتراضية','Accessibility Tools Version: '=>'إصدار أدوات مساعدة الوصول: ','Developed by'=>'تم تطويره بواسطة','Meacodes Accessibility Tools'=>'أدوات إمكانية وصول مئاکدز','Mea Accessibility'=>'ميأ لإمكانية الوصول','Settings'=>'الإعدادات','https://www.meacodes.com/accessibility'=>'https://www.meacodes.com/accessibility','This is an accessibility tools for people with disabilities to use the web easily.'=>'هذا إضافة لإمكانية الوصول يساعد الأشخاص ذوي الإعاقة على استخدام الإنترنت.','Meacodes'=>'Meacodes','https://www.meacodes.com'=>'https://www.meacodes.com','Advanced Analytics & Accessibility Insights'=>'التحليلات المتقدمة ورؤى إمكانية الوصول','Airdrop Campaign Active!'=>'حملة الإنزال الطائر نشطة!','Auto Translate – Seamless Multilingual Experience'=>'الترجمة التلقائية - تجربة سلسة متعددة اللغات','Banner dismissed successfully'=>'تم رفض اللافتة بنجاح','Close banner'=>'إغلاق اللافتة','Complete Accessibility Issue Summary for Your Website'=>'ملخص مشكلة إمكانية الوصول الكامل لموقعك الإلكتروني','Comprehensive WCAG 2.1 Issue Detection & Solutions'=>'الكشف الشامل عن مشكلات WCAG 2.1 وحلولها','Effortless Dark & Light Mode Customization'=>'تخصيص وضع الإضاءة والظلام دون عناء','Endless Customization'=>'تخصيص لا نهائي','Flexible Fonts — Google & Custom Options'=>'خطوط مرنة — خيارات Google والمخصصة','Fully Customizable Appearance & Theme Control'=>'مظهر قابل للتخصيص بالكامل وتحكم في المظهر','Insufficient permissions'=>'صلاحيات غير كافية','Join Now'=>'انضم الآن','Join our exclusive airdrop and earn rewards. Limited time offer!'=>'انضم إلى حملة الإسقاط الجوي الحصرية الخاصة بنا واكسب المكافآت. عرض لفترة محدودة!','Meacodes Development Solutions'=>'حلول تطوير Meacodes','Meacodes Pro Badge'=>'شارة Meacodes Pro','Modern Mobile First Responsive Design'=>'تصميم متجاوب حديث للأجهزة المحمولة أولاً','Page Structure Overview'=>'نظرة عامة على هيكل الصفحة','Personalized Accessibility Profiles for Every User'=>'ملفات تعريف إمكانية الوصول الشخصية لكل مستخدم','Plugin Button Border Radius:'=>'نصف قطر حدود زر المكون الإضافي:','Plugin Button Icon Size:'=>'حجم أيقونة زر المكون الإضافي:','Plugin Button Margin:'=>'هامش زر المكون الإضافي:','Plugin Button Size:'=>'حجم زر المكون الإضافي:','Plugin button Color: '=>'لون زر المكون الإضافي: ','Professional Keyboard Navigation'=>'التنقل بلوحة المفاتيح المهنية','Real-Time Website Performance Analysis'=>'تحليل أداء الموقع في الوقت الفعلي','Security check failed'=>'فشل فحص الأمان','Smart Screen Reader Integration'=>'تكامل ذكي مع قارئ الشاشة','Smart Site Search Engine'=>'محرك بحث ذكي للموقع','The upcoming version introduces advanced features like:'=>'الإصدار القادم يقدم ميزات متقدمة مثل:','WordPress Performance & Security Score'=>'درجة أداء وأمان WordPress','🎉 Congratulations!'=>'🎉 تهانينا!','👉 Join Campaign at Meacodes.com'=>'👉 انضم إلى الحملة في Meacodes.com','Attention'=>'تنبيه','We updated the plugin button logic to enable more customization. If after updating it does not work on your site, this is likely a cache issue. Please clear your server and browser cache, then refresh the page.'=>'لقد قمنا بتحديث منطق زر المكون الإضافي لتمكين المزيد من التخصيص. إذا لم يعمل على موقعك بعد التحديث، فهذه مشكلة ذاكرة التخزين المؤقت. يرجى مسح ذاكرة التخزين المؤقت للخادم والمتصفح، ثم تحديث الصفحة.','💎 Register your website now in our Airdrop Campaign to claim your exclusive rewards and upcoming discounts!'=>'💎 سجل موقعك الآن في حملة الإسقاط الجوي الخاصة بنا للحصول على مكافآتك الحصرية والخصومات القادمة!','Because you\'re using the %s plugin, you\'ve earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!'=>'لأنك تستخدم مكون أدوات إمكانية الوصول من Meacodes الإضافي، لقد حصلت على شارة حصرية لاشتراك Pro Version 2 لمدة 3 أشهر — قريبًا!']];
     3return ['domain'=>NULL,'plural-forms'=>'nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);','language'=>'ar','pot-creation-date'=>'2024-06-07 06:53-0700','po-revision-date'=>'2025-10-14 12:25+0330','translation-revision-date'=>'2025-10-14 12:25+0330','project-id-version'=>'Meacodes Accessibility Plugin','x-generator'=>'Poedit 3.7','messages'=>['Accessibility'=>'إمكانية الوصول','Drag and move the accessibility box'=>'اسحب وأعد تحريك مربع إمكانية الوصول','Open/Close Accessibility Options'=>'فتح/إغلاق خيارات إمكانية الوصول','Click to read GDPR Notice'=>'اضغط لقراءة إشعار الخصوصية','Font Size'=>'حجم الخط','‌Normal'=>'عادي','Line Height'=>'ارتفاع السطر','Normal'=>'عادي','Letter Spacing'=>'تباعد الأحرف','Dyslexia Mask'=>'تنقية عسر القراءة','Grayscale Page'=>'صفحة تدرج الرمادي','Contrast'=>'التباين','Negative'=>'سلبي','Underlined Links'=>'ارتباطات التشعبية المسطرة','Highlight Links'=>'تظليل الروابط','Grayscale Images'=>'صور تدرج الرمادي','Black and white'=>'أبيض وأسود','Developed by '=>'تم تطويره بواسطة ','Reset'=>'إعادة ضبط','Close'=>'أخفِ','GDPR Notice:'=>'إشعار لائحة حماية البيانات العامة:','This plugin uses cookies to enhance your experience and provide personalized accessibility settings. These cookies are stored in your browser and allow us to remember your preferences for font size, color schemes, and other accessibility features. By using this plugin, you consent to the use of cookies for these purposes. You can delete or block cookies in your browser settings at any time. Please note that doing so may affect your experience on the site.'=>'يستخدم هذا البرنامج النصي ملفات تعريف الارتباط لتحسين تجربتك وتوفير إعدادات إمكانية وصول شخصية. يتم تخزين ملفات تعريف الارتباط هذه في المستعرض الخاص بك وتسمح لنا بتذكر تفضيلاتك لحجم الخط وأنماط الألوان وميزات إمكانية الوصول الأخرى. باستخدام هذا البرنامج النصي ، فإنك توافق على استخدام ملفات تعريف الارتباط لهذه الأغراض. يمكنك حذف أو منع ملفات تعريف الارتباط في إعدادات المستعرض الخاص بك في أي وقت. يرجى ملاحظة أن القيام بذلك قد يؤثر على تجربتك في الموقع.','jQuery is not loaded!'=>'jQuery is not loaded!','General'=>'عام','Features'=>'مميزات','Style'=>'المظهر','Documentation'=>'مستندات','Support'=>'مُساعَدةٌ','Donation'=>'تبرع','changelog'=>'سجل التغييرات','General Settings'=>'إعدادات العام','Enable or Disable Meacodes Accessibility Tools:'=>'تفعيل أو تعطيل أدوات مساعدة الوصول من مئاکدز:','Plugin Name:'=>'اسم المكون الإضافي:','This means that the plugin name is a default and automatic translation of the word Accessibility.'=>'هذا يعني أن اسم الإضافة هو ترجمة آلية افتراضية لكلمة "إمكانية الوصول".','This name will be displayed opposite the plugin icon in the header section when the accessibility plugin is opened by the user on your website.'=>'سيظهر هذا الاسم مقابل أيقونة الإضافة في قسم الرأس (الهيدر) عند قيام المستخدم بفتح إضافة إمكانية الوصول على موقع الويب الخاص بك.','If you do not want any text to be displayed in that section, Clear default name and save changes.'=>'إذا لم ترغب في ظهور أي نص في هذا القسم، فأخفِ الاسم الافتراضي واحفظ التغييرات.','If your site is multilingual (using Polylang), keep in mind that if you change this name, the name you choose will be displayed without translation and fixed in all languages unless you rebuild the plugins language file with Polylang and enter the translation of the chosen name. Also, if you want the chosen name to revert to the default name and be displayed translated in any language, reset settings once.'=>'إذا كان موقعك متعدد اللغات (باستخدام Polylang)، فضع في اعتبارك أنه إذا قمت بتغيير هذا الاسم، فسيظهر الاسم الذي تختاره بدون ترجمة وسيظل ثابتًا بجميع اللغات إلا إذا قمت بإعادة بناء ملف لغة الإضافات باستخدام Polylang وأدخلت ترجمة الاسم الذي اخترته. أيضًا، إذا كنت ترغب في عودة الاسم إلى الاسم الافتراضي وترجمته في أي لغة، فما عليك سوى إعادة ضبط الإعدادات مرة واحدة.','Enable or Disable GDPR Notice:'=>'تفعيل / تعطيل إشعار الخصوصية:','Developed by label:'=>'تم تطويره بواسطة العلامة:','Enable "Developed by" label'=>'تفعيل تم تطويره "بواسطة" العلامة','Please turn the Developed by label on to support us and help the project move forward. '=>'من فضلك، قم بتشغيل تسمية "تم التطوير بواسطة" لدعمنا ومساعدة المشروع على المضي قدمًا. ','You can also buy us a coffee on the'=>'يمكنك أيضًا دعمنا بشراء كوب من القهوة من خلال','Donation page.'=>'صفحة التبرعات.','Thanks for your supports. '=>'نشكركم على دعمكم. ','The Accessibility plugin provides a set of tools and features to create an easier and more inclusive user experience for users with various needs. You can enable or disable each of these features individually.'=>'يوفر إضِافة إمكانية الوصول مجموعة من الأدوات والميزات لإنشاء تجربة مستخدم أسهل وأكثر شمولًا للمستخدمين ذوي الاحتياجات المختلفة. يُمكنك تفعيل أو إلغاء تفعيل كل من هذه الميزات بشكل فردي.','To find out which plugin features are used to solve which accessibility issues for your site, you can refer to the '=>'لاستكشاف ميزات الإضافات التي تُستخدم لحل مشكلات إمكانية الوصول لموقعك، يمكنك الرجوع إلى ','Documentation.'=>'مستندات.','Font Size Feature:'=>'ميزة حجم الخط:','Line Height Feature:'=>'ميزة ارتفاع السطر:','Letter Spacing Feature:'=>'ميزة تباعد الأحرف:','Dyslexia Mask Feature:'=>'ميزة تنقية عسر القراءة:','Grayscale Page Feature:'=>'ميزة صفحة تدرج الرمادي:','Contrast Feature:'=>'ميزة التباين:','Negative Feature:'=>'ميزة سلبي:','Underlined Links Feature:'=>'ميزة ارتباطات التشعبية المسطرة:','Highlight Links Feature:'=>'ميزة تظليل الروابط:','Grayscale Images Feature:'=>'ميزة صور تدرج الرمادي:','Black and white Feature:'=>'ميزة أبيض وأسود:','Style Settings'=>'إعدادات المظهر','Customize the plugins appearance to match your taste and needs using the style settings. For more information on each appearance variable, refer to the'=>'قم بتخصيص مظهر الإضافات لتتناسب مع ذوقك واحتياجاتك باستخدام إعدادات الأنماط. للحصول على مزيد من المعلومات حول كل متغير من مظهر الإضافة, يمكنك الرجوع إلى','Positionable by User:'=>'للمستخدم التحكم بموضعه:','Enabling this option allows users to freely move the accessibility plugin around the page on desktop devices. Please note that this feature is not available on mobile devices.'=>'تتيح هذه الميزة للمستخدمين تحريك إِضافة إمكانية الوصول بحرية حول الصفحة على أجهزة الكمبيوتر المكتبية. يرجى ملاحظة أن هذه الميزة غير متوفرة على الأجهزة المحمولة.','Plugin Position:'=>'موضع الإضافة:','Bottom Left Corner'=>'يسار أسفل','Bottom Right Corner'=>'اليمين أسفل','Top Left Corner'=>'اليسار أعلى','Top Right Corner'=>'يمين أعلى','Background Color: '=>'لون الخلفية: ','Background color of plugin and logo border.'=>'لون خلفية الإضافة وحد حدود الشعار.','Labels Color: '=>'لون الملصقات: ','Color of the labels or name of each feature and Plugin name to.'=>'لون الملصقات واسم كل ميزة واسم الإضافة إلى.','Divider Line Color: '=>'لون خط الفاصل: ','Color of plugin header & features section divider.'=>'لون رأس ترويسة الإضافة وفاصل قسم الميزات.','Plugin Logo Color: '=>'لون شعار الإضافة: ','Color Scheme for Plugin Logo.'=>'مخطط ألوان شعار الإضافة.','Accent Color: '=>'لون التظليل: ','Color scheme for:'=>'لوحة ألوان لـ:','Active features and their toggle buttons on hover.'=>'المميزات الفعالة وأزرار تشغيلها/إيقافها عند التمرير.','Dyslexia reading mask bars'=>'قضبان قراءة عسر القراءة','‌Buttons Color (Reset/Close):'=>'‌لون الأزرار (إعادة ضبط/أخفِ):','Buttons Hover Color (Reset/Close): '=>'لون تمرير الأزرار (إعادة ضبط/أخفِ): ','Reset settings'=>'استعادة الإعدادات الافتراضية','Accessibility Tools Version: '=>'إصدار أدوات مساعدة الوصول: ','Developed by'=>'تم تطويره بواسطة','Meacodes Accessibility Tools'=>'أدوات إمكانية وصول مئاکدز','Mea Accessibility'=>'ميأ لإمكانية الوصول','Settings'=>'الإعدادات','https://www.meacodes.com/accessibility'=>'https://www.meacodes.com/accessibility','This is an accessibility tools for people with disabilities to use the web easily.'=>'هذا إضافة لإمكانية الوصول يساعد الأشخاص ذوي الإعاقة على استخدام الإنترنت.','Meacodes'=>'Meacodes','https://www.meacodes.com'=>'https://www.meacodes.com','Advanced Analytics & Accessibility Insights'=>'التحليلات المتقدمة ورؤى إمكانية الوصول','Auto Translate – Seamless Multilingual Experience'=>'الترجمة التلقائية - تجربة سلسة متعددة اللغات','Banner dismissed successfully'=>'تم رفض اللافتة بنجاح','Close banner'=>'إغلاق اللافتة','Complete Accessibility Issue Summary for Your Website'=>'ملخص مشكلة إمكانية الوصول الكامل لموقعك الإلكتروني','Comprehensive WCAG 2.1 Issue Detection & Solutions'=>'الكشف الشامل عن مشكلات WCAG 2.1 وحلولها','Effortless Dark & Light Mode Customization'=>'تخصيص وضع الإضاءة والظلام دون عناء','Endless Customization'=>'تخصيص لا نهائي','Flexible Fonts — Google & Custom Options'=>'خطوط مرنة — خيارات Google والمخصصة','Fully Customizable Appearance & Theme Control'=>'مظهر قابل للتخصيص بالكامل وتحكم في المظهر','Insufficient permissions'=>'صلاحيات غير كافية','Meacodes Development Solutions'=>'حلول تطوير Meacodes','Meacodes Pro Badge'=>'شارة Meacodes Pro','Modern Mobile First Responsive Design'=>'تصميم متجاوب حديث للأجهزة المحمولة أولاً','Page Structure Overview'=>'نظرة عامة على هيكل الصفحة','Personalized Accessibility Profiles for Every User'=>'ملفات تعريف إمكانية الوصول الشخصية لكل مستخدم','Plugin Button Border Radius:'=>'نصف قطر حدود زر المكون الإضافي:','Plugin Button Icon Size:'=>'حجم أيقونة زر المكون الإضافي:','Plugin Button Margin:'=>'هامش زر المكون الإضافي:','Plugin Button Size:'=>'حجم زر المكون الإضافي:','Plugin button Color: '=>'لون زر المكون الإضافي: ','Professional Keyboard Navigation'=>'التنقل بلوحة المفاتيح المهنية','Real-Time Website Performance Analysis'=>'تحليل أداء الموقع في الوقت الفعلي','Security check failed'=>'فشل فحص الأمان','Smart Screen Reader Integration'=>'تكامل ذكي مع قارئ الشاشة','Smart Site Search Engine'=>'محرك بحث ذكي للموقع','The upcoming version introduces advanced features like:'=>'الإصدار القادم يقدم ميزات متقدمة مثل:','WordPress Performance & Security Score'=>'درجة أداء وأمان WordPress','🎉 Congratulations!'=>'🎉 تهانينا!','👉 Join Campaign at Meacodes.com'=>'👉 انضم إلى الحملة في Meacodes.com','Attention'=>'تنبيه','We updated the plugin button logic to enable more customization. If after updating it does not work on your site, this is likely a cache issue. Please clear your server and browser cache, then refresh the page.'=>'لقد قمنا بتحديث منطق زر المكون الإضافي لتمكين المزيد من التخصيص. إذا لم يعمل على موقعك بعد التحديث، فهذه مشكلة ذاكرة التخزين المؤقت. يرجى مسح ذاكرة التخزين المؤقت للخادم والمتصفح، ثم تحديث الصفحة.','💎 Register your website now in our Airdrop Campaign to claim your exclusive rewards and upcoming discounts!'=>'💎 سجل موقعك الآن في حملة الإسقاط الجوي الخاصة بنا للحصول على مكافآتك الحصرية والخصومات القادمة!','Because you\'re using the %s plugin, you\'ve earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!'=>'لأنك تستخدم مكون أدوات إمكانية الوصول من Meacodes الإضافي، لقد حصلت على شارة حصرية لاشتراك Pro Version 2 لمدة 3 أشهر — قريبًا!','You\'ve been recognized as an Early Supporter of Meacodes Accessibility Tools — a special thank-you to everyone helping us build a more accessible web 🌍'=>'لقد تم الاعتراف بك كداعم مبكر لأدوات إمكانية الوصول من Meacodes — شكر خاص لكل من يساعدنا في بناء ويب أكثر إمكانية للوصول 🌍','With the upcoming Pro Version 2, you\'ll unlock early-access privileges such as:'=>'مع الإصدار Pro Version 2 القادم، ستفتح امتيازات الوصول المبكر مثل:','Modern mobile-first responsive design'=>'تصميم متجاوب حديث يركز على الهاتف المحمول','Smart accessibility enhancements'=>'تحسينات ذكية لإمكانية الوصول','WCAG 2.1 issue detection & analytics'=>'كشف مشاكل WCAG 2.1 والتحليلات','Deep customization options'=>'خيارات تخصيص عميقة','Your Early Supporter Badge will be verified automatically during the Pro 2 rollout. Stay tuned and learn more about the upcoming release at'=>'ستتم مراجعة شارة الداعم المبكر تلقائياً أثناء إطلاق Pro 2. ابق متابعاً وتعلم المزيد عن الإصدار القادم في','👉 meacodes.com'=>'👉 meacodes.com','This notice will hide for 24 hours once dismissed.'=>'سيتم إخفاء هذا الإشعار لمدة 24 ساعة بمجرد رفضه.','You\'ve been recognized as an %s of Meacodes Accessibility Tools.'=>'لقد تم الاعتراف بك كـ %s لأدوات إمكانية الوصول من Meacodes.','As part of the upcoming %s rollout, early supporters will receive an exclusive %s and extended Pro access privileges.'=>'كجزء من إطلاق %s القادم، سيتلقى الداعمون الأوائل %s حصري وامتيازات وصول Pro ممتدة.','To learn how the badge system works and how sites are verified,'=>'لمعرفة كيفية عمل نظام الشارات وكيفية التحقق من المواقع،','👉 visit meacodes.com/early-supporter'=>'👉 زر meacodes.com/early-supporter']];
  • meacodes-accessibility-tools/trunk/languages/meacodes-accessibility-tools-ar.po

    r3378044 r3378438  
    449449msgstr "التحليلات المتقدمة ورؤى إمكانية الوصول"
    450450
    451 msgid "Airdrop Campaign Active!"
    452 msgstr "حملة الإنزال الطائر نشطة!"
    453451
    454452msgid "Auto Translate – Seamless Multilingual Experience"
     
    482480msgstr "صلاحيات غير كافية"
    483481
    484 msgid "Join Now"
    485 msgstr "انضم الآن"
    486 
    487 msgid "Join our exclusive airdrop and earn rewards. Limited time offer!"
    488 msgstr "انضم إلى حملة الإسقاط الجوي الحصرية الخاصة بنا واكسب المكافآت. عرض لفترة محدودة!"
     482
    489483
    490484msgid "Meacodes Development Solutions"
     
    867861msgid "Because you're using the %s plugin, you've earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!"
    868862msgstr "لأنك تستخدم مكون أدوات إمكانية الوصول من Meacodes الإضافي، لقد حصلت على شارة حصرية لاشتراك Pro Version 2 لمدة 3 أشهر — قريبًا!"
     863
     864msgid "You've been recognized as an Early Supporter of Meacodes Accessibility Tools — a special thank-you to everyone helping us build a more accessible web 🌍"
     865msgstr "لقد تم الاعتراف بك كداعم مبكر لأدوات إمكانية الوصول من Meacodes — شكر خاص لكل من يساعدنا في بناء ويب أكثر إمكانية للوصول 🌍"
     866
     867msgid "With the upcoming Pro Version 2, you'll unlock early-access privileges such as:"
     868msgstr "مع الإصدار Pro Version 2 القادم، ستفتح امتيازات الوصول المبكر مثل:"
     869
     870msgid "Modern mobile-first responsive design"
     871msgstr "تصميم متجاوب حديث يركز على الهاتف المحمول"
     872
     873msgid "Smart accessibility enhancements"
     874msgstr "تحسينات ذكية لإمكانية الوصول"
     875
     876msgid "WCAG 2.1 issue detection & analytics"
     877msgstr "كشف مشاكل WCAG 2.1 والتحليلات"
     878
     879msgid "Deep customization options"
     880msgstr "خيارات تخصيص عميقة"
     881
     882msgid "Your Early Supporter Badge will be verified automatically during the Pro 2 rollout. Stay tuned and learn more about the upcoming release at"
     883msgstr "ستتم مراجعة شارة الداعم المبكر تلقائياً أثناء إطلاق Pro 2. ابق متابعاً وتعلم المزيد عن الإصدار القادم في"
     884
     885msgid "👉 meacodes.com"
     886msgstr "👉 meacodes.com"
     887
     888msgid "This notice will hide for 24 hours once dismissed."
     889msgstr "سيتم إخفاء هذا الإشعار لمدة 24 ساعة بمجرد رفضه."
     890
     891msgid "You've been recognized as an %s of Meacodes Accessibility Tools."
     892msgstr "لقد تم الاعتراف بك كـ %s لأدوات إمكانية الوصول من Meacodes."
     893
     894msgid "As part of the upcoming %s rollout, early supporters will receive an exclusive %s and extended Pro access privileges."
     895msgstr "كجزء من إطلاق %s القادم، سيتلقى الداعمون الأوائل %s حصري وامتيازات وصول Pro ممتدة."
     896
     897msgid "To learn how the badge system works and how sites are verified,"
     898msgstr "لمعرفة كيفية عمل نظام الشارات وكيفية التحقق من المواقع،"
     899
     900msgid "👉 visit meacodes.com/early-supporter"
     901msgstr "👉 زر meacodes.com/early-supporter"
  • meacodes-accessibility-tools/trunk/languages/meacodes-accessibility-tools-de_DE.l10n.php

    r3378044 r3378438  
    11<?php
    22// generated by Poedit from meacodes-accessibility-tools-de_DE.po, do not edit directly
    3 return ['domain'=>NULL,'plural-forms'=>'nplurals=2; plural=(n != 1);','language'=>'de_DE','pot-creation-date'=>'2024-06-07 06:53-0700','po-revision-date'=>'2024-06-07 17:30+0330','translation-revision-date'=>'2024-06-07 17:30+0330','project-id-version'=>'Meacodes Accessibility Plugin','x-generator'=>'Poedit 3.7','messages'=>['Accessibility'=>'Barrierefreiheit','Drag and move the accessibility box'=>'Ziehen Sie die Eingabehilfe Box und verschieben Sie sie','Open/Close Accessibility Options'=>'Öffne/Schließe Barrierefreiheit seinstellungen','Click to read GDPR Notice'=>'Klicken Sie hier, um den GDPR Hinweis zu lesen','Font Size'=>'Schriftgröße','‌Normal'=>'Normal','Line Height'=>'Zeilenabstand','Normal'=>'Normal','Letter Spacing'=>'Buchstabenabstand','Dyslexia Mask'=>'Dyslexie Kompensation','Grayscale Page'=>'Graustufen Seite','Contrast'=>'Kontrast','Negative'=>'Negativ','Underlined Links'=>'Unterstrichene Links','Highlight Links'=>'Links hervorheben','Grayscale Images'=>'Graustufenbilder','Black and white'=>'Schwarz Weiß','Developed by '=>'Entwickelt von ','Reset'=>'Zurücksetzen','Close'=>'Schließen','GDPR Notice:'=>'DSGVO-Hinweis:','This plugin uses cookies to enhance your experience and provide personalized accessibility settings. These cookies are stored in your browser and allow us to remember your preferences for font size, color schemes, and other accessibility features. By using this plugin, you consent to the use of cookies for these purposes. You can delete or block cookies in your browser settings at any time. Please note that doing so may affect your experience on the site.'=>'Dieses Plugin verwendet Cookies, um Ihre Benutzererfahrung zu verbessern und personalisierte Zugänglichkeitseinstellungen bereitzustellen. Diese Cookies werden in Ihrem Browser gespeichert und ermöglichen es uns, uns an Ihre Einstellungen für Schriftgröße, Farbschema und andere Zugänglichkeitsfunktionen zu erinnern. Durch die Nutzung dieses Plugins stimmen Sie der Verwendung von Cookies für diese Zwecke zu. Sie können Cookies jederzeit in Ihren Browsereinstellungen löschen oder blockieren. Bitte beachten Sie, dass dies Ihre Erfahrung auf der Website beeinträchtigen kann.','jQuery is not loaded!'=>'jQuery ist nicht geladen!','General'=>'Allgemein','Features'=>'Funktionen','Style'=>'Stil','Documentation'=>'Dokumentation','Support'=>'Unterstützung','Donation'=>'Spende','changelog'=>'changelog','General Settings'=>'Allgemeine Einstellungen','Enable or Disable Meacodes Accessibility Tools:'=>'Meacodes Barrierefreiheit Tools aktivieren oder deaktivieren:','Plugin Name:'=>'Plugin Name:','This means that the plugin name is a default and automatic translation of the word Accessibility.'=>'Das bedeutet, dass der Plugin Name eine standardmäßige und automatische Übersetzung des Wortes "Barrierefreiheit" ist.','This name will be displayed opposite the plugin icon in the header section when the accessibility plugin is opened by the user on your website.'=>'Dieser Name wird neben dem Plugin Symbol im Headerbereich angezeigt, wenn das Benutzerzugriffsplatz Plugin auf Ihrer Website geöffnet wird.','If you do not want any text to be displayed in that section, Clear default name and save changes.'=>'Wenn in diesem Abschnitt kein Text angezeigt werden soll, löschen Sie den Standardnamen und speichern Sie die Änderungen.','If your site is multilingual (using Polylang), keep in mind that if you change this name, the name you choose will be displayed without translation and fixed in all languages unless you rebuild the plugins language file with Polylang and enter the translation of the chosen name. Also, if you want the chosen name to revert to the default name and be displayed translated in any language, reset settings once.'=>'Falls Ihre Website mehrsprachig ist (mit Polylang), beachten Sie bitte: Ändern Sie diesen Namen, wird der neue Name ohne Übersetzung und in allen Sprachen gleich angezeigt. Sie müssten dann die Sprachdatei des Plugins mit Polylang neu erstellen und die Übersetzung des gewählten Namens hinzufügen. Um den Namen wieder auf den Standardwert zurückzusetzen und in allen Sprachen übersetzt anzuzeigen, können Sie einfach die Einstellungen einmal zurücksetzen.','Enable or Disable GDPR Notice:'=>'Aktivieren oder Deaktivieren des Datenschutzhinweises:','Developed by label:'=>'Entwickelt von label:','Enable "Developed by" label'=>'Aktivieren Sie "Entwickelt von" label','Please turn the Developed by label on to support us and help the project move forward. '=>'Bitte aktivieren Sie die Entwickelt von Kennzeichnung, um uns zu unterstützen und das Projekt voranzubringen. ','You can also buy us a coffee on the'=>'Wir würden uns auch über einen Kaffee freuen','Donation page.'=>'Spenden Seite.','Thanks for your supports. '=>'Vielen Dank für Ihre Unterstützung. ','The Accessibility plugin provides a set of tools and features to create an easier and more inclusive user experience for users with various needs. You can enable or disable each of these features individually.'=>'Das Barrierefreiheit Plugin bietet eine Reihe von Werkzeugen und Funktionen, um Benutzern mit unterschiedlichen Bedürfnissen eine einfachere und integrativere Benutzererfahrung zu bieten. Sie können jede dieser Funktionen einzeln aktivieren oder deaktivieren.','To find out which plugin features are used to solve which accessibility issues for your site, you can refer to the '=>'Um herauszufinden, welche Plugin-Funktionen verwendet werden, um welche Barrierefreiheitsprobleme für Ihre Website zu lösen, können Sie die Dokumentation der Plugins konsultieren ','Documentation.'=>'Dokumentation.','Font Size Feature:'=>'Schriftgröße Funktion:','Line Height Feature:'=>'Zeilenabstands Funktion:','Letter Spacing Feature:'=>'Buchstabenabstand Funktion:','Dyslexia Mask Feature:'=>'Dyslexie Kompensation Funktion:','Grayscale Page Feature:'=>'Graustufen Seite Funktiont:','Contrast Feature:'=>'Kontrast Funktion:','Negative Feature:'=>'Negativ Funktion:','Underlined Links Feature:'=>'Unterstrichene Links Funktion:','Highlight Links Feature:'=>'Links hervorheben Funktion:','Grayscale Images Feature:'=>'Graustufenbilder Funktion:','Black and white Feature:'=>'Schwarz Weiß Funktion:','Style Settings'=>'Formatierungs optionen','Customize the plugins appearance to match your taste and needs using the style settings. For more information on each appearance variable, refer to the'=>'Passen Sie das Erscheinungsbild des Plugins Ihren Wünschen und Bedürfnissen mithilfe der Stileinstellungen an. Weitere Informationen zu den einzelnen Aussehen-Variablen finden Sie auf der','Positionable by User:'=>'Vom Benutzer positionierbar:','Enabling this option allows users to freely move the accessibility plugin around the page on desktop devices. Please note that this feature is not available on mobile devices.'=>'Durch Aktivieren dieser Option können Benutzer das Barrierefreiheit Plugin auf Desktop Geräten frei auf der Seite verschieben. Bitte beachten Sie, dass diese Funktion auf Mobilgeräten nicht verfügbar ist.','Plugin Position:'=>'Platzierung des Plugin:','Bottom Left Corner'=>'Untere linke Ecke','Bottom Right Corner'=>'Untere rechte Ecke','Top Left Corner'=>'Obere linke Ecke','Top Right Corner'=>'Obere rechte Ecke','Background Color: '=>'Hintergrund farbe: ','Background color of plugin and logo border.'=>'Hintergrundfarbe des Plugin und Logorahmen.','Labels Color: '=>'Etiketten farbe: ','Color of the labels or name of each feature and Plugin name to.'=>'Farbe der Beschriftungen oder Name jeder Funktion und Plugin Name zu.','Divider Line Color: '=>'Trennungslinien farbe: ','Color of plugin header & features section divider.'=>'Farbe der Plugin Kopfzeile & Trennlinie des Funktionsbereichs.','Plugin Logo Color: '=>'Plugin Logo Farbe: ','Color Scheme for Plugin Logo.'=>'Farbschema für Plugin Logo.','Accent Color: '=>'Akzentfarbe: ','Color scheme for:'=>'Farbschema für:','Active features and their toggle buttons on hover.'=>'Aktive Funktionen und ihre Umschalt Schaltflächen beim Hovern.','Dyslexia reading mask bars'=>'Lesehilfsmittel für Legastheniker mit farbigen Markierungsbalken','‌Buttons Color (Reset/Close):'=>'Schaltflächen farbe (Zurücksetzen/Schließen):','Buttons Hover Color (Reset/Close): '=>'Schaltflächen Hover Farbe (Zurücksetzen/Schließen): ','Reset settings'=>'Einstellungen zurücksetzen','Accessibility Tools Version: '=>'Barrierefreiheit Tools Version: ','Developed by'=>'Entwickelt von','Meacodes Accessibility Tools'=>'Meacodes Barrierefreiheit Tools','Mea Accessibility'=>'Mea Accessibility','Settings'=>'Einstellungs','https://www.meacodes.com/accessibility'=>'https://www.meacodes.com/accessibility','This is an accessibility tools for people with disabilities to use the web easily.'=>'Dies ist ein Barrierefreiheit-Plugin, das Menschen mit Behinderungen die einfache Nutzung des Internets ermöglicht.','Meacodes'=>'Meacodes','https://www.meacodes.com'=>'https://www.meacodes.com','Advanced Analytics & Accessibility Insights'=>'Erweiterte Analysen & Barrierefreiheits-Einblicke','Airdrop Campaign Active!'=>'Airdrop-Kampagne aktiv!','Auto Translate – Seamless Multilingual Experience'=>'Auto-Übersetzung – Nahtlose mehrsprachige Erfahrung','Banner dismissed successfully'=>'Banner erfolgreich verworfen','Close banner'=>'Banner schließen','Complete Accessibility Issue Summary for Your Website'=>'Vollständige Barrierefreiheits-Problem-Zusammenfassung für Ihre Website','Comprehensive WCAG 2.1 Issue Detection & Solutions'=>'Umfassende WCAG 2.1 Problem-Erkennung & Lösungen','Effortless Dark & Light Mode Customization'=>'Mühelose Dunkel- & Hell-Modus-Anpassung','Endless Customization'=>'Endlose Anpassung','Flexible Fonts — Google & Custom Options'=>'Flexible Schriftarten — Google & benutzerdefinierte Optionen','Fully Customizable Appearance & Theme Control'=>'Vollständig anpassbares Erscheinungsbild & Theme-Kontrolle','Insufficient permissions'=>'Unzureichende Berechtigungen','Join Now'=>'Jetzt teilnehmen','Join our exclusive airdrop and earn rewards. Limited time offer!'=>'Nehmen Sie an unserem exklusiven Airdrop teil und verdienen Sie Belohnungen. Zeitlich begrenztes Angebot!','Meacodes Development Solutions'=>'Meacodes Entwicklungslösungen','Meacodes Pro Badge'=>'Meacodes Pro Abzeichen','Modern Mobile First Responsive Design'=>'Modernes Mobile-First Responsive Design','Page Structure Overview'=>'Seitenstruktur-Übersicht','Personalized Accessibility Profiles for Every User'=>'Personalisierte Barrierefreiheits-Profile für jeden Benutzer','Plugin Button Border Radius:'=>'Plugin-Button-Rahmenradius:','Plugin Button Icon Size:'=>'Plugin-Button-Symbol-Größe:','Plugin Button Margin:'=>'Plugin-Button-Rand:','Plugin Button Size:'=>'Plugin-Button-Größe:','Plugin button Color: '=>'Plugin-Button-Farbe: ','Professional Keyboard Navigation'=>'Professionelle Tastaturnavigation','Real-Time Website Performance Analysis'=>'Echtzeit-Website-Performance-Analyse','Security check failed'=>'Sicherheitsprüfung fehlgeschlagen','Smart Screen Reader Integration'=>'Intelligente Screen-Reader-Integration','Smart Site Search Engine'=>'Intelligente Website-Suchmaschine','The upcoming version introduces advanced features like:'=>'Die kommende Version führt erweiterte Funktionen ein wie:','WordPress Performance & Security Score'=>'WordPress Performance & Sicherheits-Score','🎉 Congratulations!'=>'🎉 Herzlichen Glückwunsch!','👉 Join Campaign at Meacodes.com'=>'👉 Kampagne bei Meacodes.com beitreten','Attention'=>'Achtung','We updated the plugin button logic to enable more customization. If after updating it does not work on your site, this is likely a cache issue. Please clear your server and browser cache, then refresh the page.'=>'Wir haben die Plugin-Button-Logik aktualisiert, um mehr Anpassungen zu ermöglichen. Falls es nach dem Update auf Ihrer Website nicht funktioniert, ist dies wahrscheinlich ein Cache-Problem. Bitte leeren Sie Ihren Server- und Browser-Cache und aktualisieren Sie dann die Seite.','💎 Register your website now in our Airdrop Campaign to claim your exclusive rewards and upcoming discounts!'=>'💎 Registrieren Sie Ihre Website jetzt in unserer Airdrop-Kampagne, um Ihre exklusiven Belohnungen und kommenden Rabatte zu erhalten!','Because you\'re using the %s plugin, you\'ve earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!'=>'Weil Sie das Meacodes Barrierefreiheits-Tools Plugin verwenden, haben Sie eine exklusive Auszeichnung für ein 3-monatiges Pro Version 2 Abonnement verdient — startet bald!']];
     3return ['domain'=>NULL,'plural-forms'=>'nplurals=2; plural=(n != 1);','language'=>'de_DE','pot-creation-date'=>'2024-06-07 06:53-0700','po-revision-date'=>'2024-06-07 17:30+0330','translation-revision-date'=>'2024-06-07 17:30+0330','project-id-version'=>'Meacodes Accessibility Plugin','x-generator'=>'Poedit 3.7','messages'=>['Accessibility'=>'Barrierefreiheit','Drag and move the accessibility box'=>'Ziehen Sie die Eingabehilfe Box und verschieben Sie sie','Open/Close Accessibility Options'=>'Öffne/Schließe Barrierefreiheit seinstellungen','Click to read GDPR Notice'=>'Klicken Sie hier, um den GDPR Hinweis zu lesen','Font Size'=>'Schriftgröße','‌Normal'=>'Normal','Line Height'=>'Zeilenabstand','Normal'=>'Normal','Letter Spacing'=>'Buchstabenabstand','Dyslexia Mask'=>'Dyslexie Kompensation','Grayscale Page'=>'Graustufen Seite','Contrast'=>'Kontrast','Negative'=>'Negativ','Underlined Links'=>'Unterstrichene Links','Highlight Links'=>'Links hervorheben','Grayscale Images'=>'Graustufenbilder','Black and white'=>'Schwarz Weiß','Developed by '=>'Entwickelt von ','Reset'=>'Zurücksetzen','Close'=>'Schließen','GDPR Notice:'=>'DSGVO-Hinweis:','This plugin uses cookies to enhance your experience and provide personalized accessibility settings. These cookies are stored in your browser and allow us to remember your preferences for font size, color schemes, and other accessibility features. By using this plugin, you consent to the use of cookies for these purposes. You can delete or block cookies in your browser settings at any time. Please note that doing so may affect your experience on the site.'=>'Dieses Plugin verwendet Cookies, um Ihre Benutzererfahrung zu verbessern und personalisierte Zugänglichkeitseinstellungen bereitzustellen. Diese Cookies werden in Ihrem Browser gespeichert und ermöglichen es uns, uns an Ihre Einstellungen für Schriftgröße, Farbschema und andere Zugänglichkeitsfunktionen zu erinnern. Durch die Nutzung dieses Plugins stimmen Sie der Verwendung von Cookies für diese Zwecke zu. Sie können Cookies jederzeit in Ihren Browsereinstellungen löschen oder blockieren. Bitte beachten Sie, dass dies Ihre Erfahrung auf der Website beeinträchtigen kann.','jQuery is not loaded!'=>'jQuery ist nicht geladen!','General'=>'Allgemein','Features'=>'Funktionen','Style'=>'Stil','Documentation'=>'Dokumentation','Support'=>'Unterstützung','Donation'=>'Spende','changelog'=>'changelog','General Settings'=>'Allgemeine Einstellungen','Enable or Disable Meacodes Accessibility Tools:'=>'Meacodes Barrierefreiheit Tools aktivieren oder deaktivieren:','Plugin Name:'=>'Plugin Name:','This means that the plugin name is a default and automatic translation of the word Accessibility.'=>'Das bedeutet, dass der Plugin Name eine standardmäßige und automatische Übersetzung des Wortes "Barrierefreiheit" ist.','This name will be displayed opposite the plugin icon in the header section when the accessibility plugin is opened by the user on your website.'=>'Dieser Name wird neben dem Plugin Symbol im Headerbereich angezeigt, wenn das Benutzerzugriffsplatz Plugin auf Ihrer Website geöffnet wird.','If you do not want any text to be displayed in that section, Clear default name and save changes.'=>'Wenn in diesem Abschnitt kein Text angezeigt werden soll, löschen Sie den Standardnamen und speichern Sie die Änderungen.','If your site is multilingual (using Polylang), keep in mind that if you change this name, the name you choose will be displayed without translation and fixed in all languages unless you rebuild the plugins language file with Polylang and enter the translation of the chosen name. Also, if you want the chosen name to revert to the default name and be displayed translated in any language, reset settings once.'=>'Falls Ihre Website mehrsprachig ist (mit Polylang), beachten Sie bitte: Ändern Sie diesen Namen, wird der neue Name ohne Übersetzung und in allen Sprachen gleich angezeigt. Sie müssten dann die Sprachdatei des Plugins mit Polylang neu erstellen und die Übersetzung des gewählten Namens hinzufügen. Um den Namen wieder auf den Standardwert zurückzusetzen und in allen Sprachen übersetzt anzuzeigen, können Sie einfach die Einstellungen einmal zurücksetzen.','Enable or Disable GDPR Notice:'=>'Aktivieren oder Deaktivieren des Datenschutzhinweises:','Developed by label:'=>'Entwickelt von label:','Enable "Developed by" label'=>'Aktivieren Sie "Entwickelt von" label','Please turn the Developed by label on to support us and help the project move forward. '=>'Bitte aktivieren Sie die Entwickelt von Kennzeichnung, um uns zu unterstützen und das Projekt voranzubringen. ','You can also buy us a coffee on the'=>'Wir würden uns auch über einen Kaffee freuen','Donation page.'=>'Spenden Seite.','Thanks for your supports. '=>'Vielen Dank für Ihre Unterstützung. ','The Accessibility plugin provides a set of tools and features to create an easier and more inclusive user experience for users with various needs. You can enable or disable each of these features individually.'=>'Das Barrierefreiheit Plugin bietet eine Reihe von Werkzeugen und Funktionen, um Benutzern mit unterschiedlichen Bedürfnissen eine einfachere und integrativere Benutzererfahrung zu bieten. Sie können jede dieser Funktionen einzeln aktivieren oder deaktivieren.','To find out which plugin features are used to solve which accessibility issues for your site, you can refer to the '=>'Um herauszufinden, welche Plugin-Funktionen verwendet werden, um welche Barrierefreiheitsprobleme für Ihre Website zu lösen, können Sie die Dokumentation der Plugins konsultieren ','Documentation.'=>'Dokumentation.','Font Size Feature:'=>'Schriftgröße Funktion:','Line Height Feature:'=>'Zeilenabstands Funktion:','Letter Spacing Feature:'=>'Buchstabenabstand Funktion:','Dyslexia Mask Feature:'=>'Dyslexie Kompensation Funktion:','Grayscale Page Feature:'=>'Graustufen Seite Funktiont:','Contrast Feature:'=>'Kontrast Funktion:','Negative Feature:'=>'Negativ Funktion:','Underlined Links Feature:'=>'Unterstrichene Links Funktion:','Highlight Links Feature:'=>'Links hervorheben Funktion:','Grayscale Images Feature:'=>'Graustufenbilder Funktion:','Black and white Feature:'=>'Schwarz Weiß Funktion:','Style Settings'=>'Formatierungs optionen','Customize the plugins appearance to match your taste and needs using the style settings. For more information on each appearance variable, refer to the'=>'Passen Sie das Erscheinungsbild des Plugins Ihren Wünschen und Bedürfnissen mithilfe der Stileinstellungen an. Weitere Informationen zu den einzelnen Aussehen-Variablen finden Sie auf der','Positionable by User:'=>'Vom Benutzer positionierbar:','Enabling this option allows users to freely move the accessibility plugin around the page on desktop devices. Please note that this feature is not available on mobile devices.'=>'Durch Aktivieren dieser Option können Benutzer das Barrierefreiheit Plugin auf Desktop Geräten frei auf der Seite verschieben. Bitte beachten Sie, dass diese Funktion auf Mobilgeräten nicht verfügbar ist.','Plugin Position:'=>'Platzierung des Plugin:','Bottom Left Corner'=>'Untere linke Ecke','Bottom Right Corner'=>'Untere rechte Ecke','Top Left Corner'=>'Obere linke Ecke','Top Right Corner'=>'Obere rechte Ecke','Background Color: '=>'Hintergrund farbe: ','Background color of plugin and logo border.'=>'Hintergrundfarbe des Plugin und Logorahmen.','Labels Color: '=>'Etiketten farbe: ','Color of the labels or name of each feature and Plugin name to.'=>'Farbe der Beschriftungen oder Name jeder Funktion und Plugin Name zu.','Divider Line Color: '=>'Trennungslinien farbe: ','Color of plugin header & features section divider.'=>'Farbe der Plugin Kopfzeile & Trennlinie des Funktionsbereichs.','Plugin Logo Color: '=>'Plugin Logo Farbe: ','Color Scheme for Plugin Logo.'=>'Farbschema für Plugin Logo.','Accent Color: '=>'Akzentfarbe: ','Color scheme for:'=>'Farbschema für:','Active features and their toggle buttons on hover.'=>'Aktive Funktionen und ihre Umschalt Schaltflächen beim Hovern.','Dyslexia reading mask bars'=>'Lesehilfsmittel für Legastheniker mit farbigen Markierungsbalken','‌Buttons Color (Reset/Close):'=>'Schaltflächen farbe (Zurücksetzen/Schließen):','Buttons Hover Color (Reset/Close): '=>'Schaltflächen Hover Farbe (Zurücksetzen/Schließen): ','Reset settings'=>'Einstellungen zurücksetzen','Accessibility Tools Version: '=>'Barrierefreiheit Tools Version: ','Developed by'=>'Entwickelt von','Meacodes Accessibility Tools'=>'Meacodes Barrierefreiheit Tools','Mea Accessibility'=>'Mea Accessibility','Settings'=>'Einstellungs','https://www.meacodes.com/accessibility'=>'https://www.meacodes.com/accessibility','This is an accessibility tools for people with disabilities to use the web easily.'=>'Dies ist ein Barrierefreiheit-Plugin, das Menschen mit Behinderungen die einfache Nutzung des Internets ermöglicht.','Meacodes'=>'Meacodes','https://www.meacodes.com'=>'https://www.meacodes.com','Advanced Analytics & Accessibility Insights'=>'Erweiterte Analysen & Barrierefreiheits-Einblicke','Auto Translate – Seamless Multilingual Experience'=>'Auto-Übersetzung – Nahtlose mehrsprachige Erfahrung','Banner dismissed successfully'=>'Banner erfolgreich verworfen','Close banner'=>'Banner schließen','Complete Accessibility Issue Summary for Your Website'=>'Vollständige Barrierefreiheits-Problem-Zusammenfassung für Ihre Website','Comprehensive WCAG 2.1 Issue Detection & Solutions'=>'Umfassende WCAG 2.1 Problem-Erkennung & Lösungen','Effortless Dark & Light Mode Customization'=>'Mühelose Dunkel- & Hell-Modus-Anpassung','Endless Customization'=>'Endlose Anpassung','Flexible Fonts — Google & Custom Options'=>'Flexible Schriftarten — Google & benutzerdefinierte Optionen','Fully Customizable Appearance & Theme Control'=>'Vollständig anpassbares Erscheinungsbild & Theme-Kontrolle','Insufficient permissions'=>'Unzureichende Berechtigungen','Meacodes Development Solutions'=>'Meacodes Entwicklungslösungen','Meacodes Pro Badge'=>'Meacodes Pro Abzeichen','Modern Mobile First Responsive Design'=>'Modernes Mobile-First Responsive Design','Page Structure Overview'=>'Seitenstruktur-Übersicht','Personalized Accessibility Profiles for Every User'=>'Personalisierte Barrierefreiheits-Profile für jeden Benutzer','Plugin Button Border Radius:'=>'Plugin-Button-Rahmenradius:','Plugin Button Icon Size:'=>'Plugin-Button-Symbol-Größe:','Plugin Button Margin:'=>'Plugin-Button-Rand:','Plugin Button Size:'=>'Plugin-Button-Größe:','Plugin button Color: '=>'Plugin-Button-Farbe: ','Professional Keyboard Navigation'=>'Professionelle Tastaturnavigation','Real-Time Website Performance Analysis'=>'Echtzeit-Website-Performance-Analyse','Security check failed'=>'Sicherheitsprüfung fehlgeschlagen','Smart Screen Reader Integration'=>'Intelligente Screen-Reader-Integration','Smart Site Search Engine'=>'Intelligente Website-Suchmaschine','The upcoming version introduces advanced features like:'=>'Die kommende Version führt erweiterte Funktionen ein wie:','WordPress Performance & Security Score'=>'WordPress Performance & Sicherheits-Score','🎉 Congratulations!'=>'🎉 Herzlichen Glückwunsch!','👉 Join Campaign at Meacodes.com'=>'👉 Kampagne bei Meacodes.com beitreten','Attention'=>'Achtung','We updated the plugin button logic to enable more customization. If after updating it does not work on your site, this is likely a cache issue. Please clear your server and browser cache, then refresh the page.'=>'Wir haben die Plugin-Button-Logik aktualisiert, um mehr Anpassungen zu ermöglichen. Falls es nach dem Update auf Ihrer Website nicht funktioniert, ist dies wahrscheinlich ein Cache-Problem. Bitte leeren Sie Ihren Server- und Browser-Cache und aktualisieren Sie dann die Seite.','💎 Register your website now in our Airdrop Campaign to claim your exclusive rewards and upcoming discounts!'=>'💎 Registrieren Sie Ihre Website jetzt in unserer Airdrop-Kampagne, um Ihre exklusiven Belohnungen und kommenden Rabatte zu erhalten!','Because you\'re using the %s plugin, you\'ve earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!'=>'Weil Sie das Meacodes Barrierefreiheits-Tools Plugin verwenden, haben Sie eine exklusive Auszeichnung für ein 3-monatiges Pro Version 2 Abonnement verdient — startet bald!','You\'ve been recognized as an Early Supporter of Meacodes Accessibility Tools — a special thank-you to everyone helping us build a more accessible web 🌍'=>'Sie wurden als Early Supporter der Meacodes Accessibility Tools anerkannt — ein besonderer Dank an alle, die uns beim Aufbau eines zugänglicheren Webs helfen 🌍','With the upcoming Pro Version 2, you\'ll unlock early-access privileges such as:'=>'Mit der kommenden Pro Version 2 entsperren Sie Early-Access-Privilegien wie:','Modern mobile-first responsive design'=>'Modernes mobile-first responsives Design','Smart accessibility enhancements'=>'Intelligente Barrierefreiheits-Verbesserungen','WCAG 2.1 issue detection & analytics'=>'WCAG 2.1 Problem-Erkennung & Analytics','Deep customization options'=>'Tiefgreifende Anpassungsoptionen','Your Early Supporter Badge will be verified automatically during the Pro 2 rollout. Stay tuned and learn more about the upcoming release at'=>'Ihr Early Supporter Badge wird automatisch während des Pro 2 Rollouts verifiziert. Bleiben Sie dran und erfahren Sie mehr über die kommende Veröffentlichung bei','👉 meacodes.com'=>'👉 meacodes.com','This notice will hide for 24 hours once dismissed.'=>'Diese Benachrichtigung wird 24 Stunden lang ausgeblendet, sobald sie abgelehnt wird.','You\'ve been recognized as an %s of Meacodes Accessibility Tools.'=>'Sie wurden als %s der Meacodes Accessibility Tools anerkannt.','As part of the upcoming %s rollout, early supporters will receive an exclusive %s and extended Pro access privileges.'=>'Als Teil des kommenden %s Rollouts erhalten Early Supporter ein exklusives %s und erweiterte Pro-Zugangsprivilegien.','To learn how the badge system works and how sites are verified,'=>'Um zu erfahren, wie das Badge-System funktioniert und wie Websites verifiziert werden,','👉 visit meacodes.com/early-supporter'=>'👉 besuchen Sie meacodes.com/early-supporter']];
  • meacodes-accessibility-tools/trunk/languages/meacodes-accessibility-tools-de_DE.po

    r3378044 r3378438  
    789789msgstr "Erweiterte Analysen & Barrierefreiheits-Einblicke"
    790790
    791 msgid "Airdrop Campaign Active!"
    792 msgstr "Airdrop-Kampagne aktiv!"
    793791
    794792msgid "Auto Translate – Seamless Multilingual Experience"
     
    822820msgstr "Unzureichende Berechtigungen"
    823821
    824 msgid "Join Now"
    825 msgstr "Jetzt teilnehmen"
    826 
    827 msgid "Join our exclusive airdrop and earn rewards. Limited time offer!"
    828 msgstr "Nehmen Sie an unserem exklusiven Airdrop teil und verdienen Sie Belohnungen. Zeitlich begrenztes Angebot!"
     822
    829823
    830824msgid "Meacodes Development Solutions"
     
    896890msgid "Because you're using the %s plugin, you've earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!"
    897891msgstr "Weil Sie das Meacodes Barrierefreiheits-Tools Plugin verwenden, haben Sie eine exklusive Auszeichnung für ein 3-monatiges Pro Version 2 Abonnement verdient — startet bald!"
     892
     893msgid "You've been recognized as an Early Supporter of Meacodes Accessibility Tools — a special thank-you to everyone helping us build a more accessible web 🌍"
     894msgstr "Sie wurden als Early Supporter der Meacodes Accessibility Tools anerkannt — ein besonderer Dank an alle, die uns beim Aufbau eines zugänglicheren Webs helfen 🌍"
     895
     896msgid "With the upcoming Pro Version 2, you'll unlock early-access privileges such as:"
     897msgstr "Mit der kommenden Pro Version 2 entsperren Sie Early-Access-Privilegien wie:"
     898
     899msgid "Modern mobile-first responsive design"
     900msgstr "Modernes mobile-first responsives Design"
     901
     902msgid "Smart accessibility enhancements"
     903msgstr "Intelligente Barrierefreiheits-Verbesserungen"
     904
     905msgid "WCAG 2.1 issue detection & analytics"
     906msgstr "WCAG 2.1 Problem-Erkennung & Analytics"
     907
     908msgid "Deep customization options"
     909msgstr "Tiefgreifende Anpassungsoptionen"
     910
     911msgid "Your Early Supporter Badge will be verified automatically during the Pro 2 rollout. Stay tuned and learn more about the upcoming release at"
     912msgstr "Ihr Early Supporter Badge wird automatisch während des Pro 2 Rollouts verifiziert. Bleiben Sie dran und erfahren Sie mehr über die kommende Veröffentlichung bei"
     913
     914msgid "👉 meacodes.com"
     915msgstr "👉 meacodes.com"
     916
     917msgid "This notice will hide for 24 hours once dismissed."
     918msgstr "Diese Benachrichtigung wird 24 Stunden lang ausgeblendet, sobald sie abgelehnt wird."
     919
     920msgid "You've been recognized as an %s of Meacodes Accessibility Tools."
     921msgstr "Sie wurden als %s der Meacodes Accessibility Tools anerkannt."
     922
     923msgid "As part of the upcoming %s rollout, early supporters will receive an exclusive %s and extended Pro access privileges."
     924msgstr "Als Teil des kommenden %s Rollouts erhalten Early Supporter ein exklusives %s und erweiterte Pro-Zugangsprivilegien."
     925
     926msgid "To learn how the badge system works and how sites are verified,"
     927msgstr "Um zu erfahren, wie das Badge-System funktioniert und wie Websites verifiziert werden,"
     928
     929msgid "👉 visit meacodes.com/early-supporter"
     930msgstr "👉 besuchen Sie meacodes.com/early-supporter"
  • meacodes-accessibility-tools/trunk/languages/meacodes-accessibility-tools-es_ES.l10n.php

    r3378044 r3378438  
    11<?php
    22// generated by Poedit from meacodes-accessibility-tools-es_ES.po, do not edit directly
    3 return ['domain'=>NULL,'plural-forms'=>'nplurals=2; plural=(n != 1);','language'=>'es_ES','pot-creation-date'=>'2024-06-07 06:53-0700','po-revision-date'=>'2025-10-14 13:03+0330','translation-revision-date'=>'2025-10-14 13:03+0330','project-id-version'=>'Meacodes Accessibility Plugin','x-generator'=>'Poedit 3.7','messages'=>['Accessibility'=>'Accesibilidad','Drag and move the accessibility box'=>'Drague y mueva la casilla de accesibilidad','Open/Close Accessibility Options'=>'Abrir/Cerrar Opciones de Accesibilidad','Click to read GDPR Notice'=>'Haga clic para leer el Aviso de RGPD','Font Size'=>'Tamaño de fuente','‌Normal'=>'Normal','Line Height'=>'Altura de línea','Normal'=>'Normal','Letter Spacing'=>'Espaciado entre letras','Dyslexia Mask'=>'Máscara para la dislexia','Grayscale Page'=>'Página en escala de grises','Contrast'=>'Contraste','Negative'=>'Negativo','Underlined Links'=>'Enlaces subrayados','Highlight Links'=>'Resaltar enlaces','Grayscale Images'=>'Imágenes en escala de grises','Black and white'=>'Blanco y negro','Developed by '=>'Desarrollado por ','Reset'=>'Restablecer','Close'=>'Cerrar','GDPR Notice:'=>'Aviso de RGPD:','This plugin uses cookies to enhance your experience and provide personalized accessibility settings. These cookies are stored in your browser and allow us to remember your preferences for font size, color schemes, and other accessibility features. By using this plugin, you consent to the use of cookies for these purposes. You can delete or block cookies in your browser settings at any time. Please note that doing so may affect your experience on the site.'=>'Este plugin utiliza cookies para mejorar su experiencia y ofrecer ajustes personalizados de accesibilidad. Estas cookies se almacenan en su navegador y nos permiten recordar sus preferencias de tamaño de fuente, esquemas de color y otras funciones de accesibilidad. Al utilizar este plugin, usted da su consentimiento para el uso de cookies para estos fines. Puede eliminar o bloquear las cookies en la configuración de su navegador en cualquier momento. Tenga en cuenta que hacerlo podría afectar su experiencia en el sitio.','jQuery is not loaded!'=>'¡jQuery no está cargado!','General'=>'General','Features'=>'Características','Style'=>'Estilo','Documentation'=>'Documentación','Support'=>'Soporte','Donation'=>'Donación','changelog'=>'registro de cambios','General Settings'=>'Ajustes Generales','Enable or Disable Meacodes Accessibility Tools:'=>'Habilitar o Deshabilitar las Herramientas de Accesibilidad Meacodes:','Plugin Name:'=>'Nombre del plugin:','This means that the plugin name is a default and automatic translation of the word Accessibility.'=>'Esto significa que el nombre del plugin es una traducción predeterminada y automática de la palabra "Accesibilidad".','This name will be displayed opposite the plugin icon in the header section when the accessibility plugin is opened by the user on your website.'=>'Este nombre se mostrará al lado del icono del plugin en la sección del encabezado cuando el usuario abra el plugin de accesibilidad en su sitio web.','If you do not want any text to be displayed in that section, Clear default name and save changes.'=>'Si no desea que se muestre ningún texto en esa sección, elimine el nombre predeterminado y guarde los cambios.','If your site is multilingual (using Polylang), keep in mind that if you change this name, the name you choose will be displayed without translation and fixed in all languages unless you rebuild the plugins language file with Polylang and enter the translation of the chosen name. Also, if you want the chosen name to revert to the default name and be displayed translated in any language, reset settings once.'=>'Si su sitio web es multilingüe (usando Polylang), tenga en cuenta que si cambia este nombre, el nombre que elija se mostrará sin traducción y se fijará en todos los idiomas a menos que vuelva a generar el archivo de idioma del complemento con Polylang e ingrese la traducción del nombre elegido. Además, si desea que el nombre elegido vuelva al nombre predeterminado y se muestre traducido en cualquier idioma, restablezca la configuración una vez.','Enable or Disable GDPR Notice:'=>'Habilitar o Deshabilitar Aviso RGPD:','Developed by label:'=>'Desarrollado por etiqueta:','Enable "Developed by" label'=>'Habilitar "Desarrollado por" etiqueta','Please turn the Developed by label on to support us and help the project move forward. '=>'Activa la etiqueta Desarrollado por para apoyarnos y ayudar al proyecto a seguir adelante. ','You can also buy us a coffee on the'=>'También puedes invitarnos a un café en','Donation page.'=>'Página de donación.','Thanks for your supports. '=>'Gracias por su apoyo. ','The Accessibility plugin provides a set of tools and features to create an easier and more inclusive user experience for users with various needs. You can enable or disable each of these features individually.'=>'El plugin de accesibilidad proporciona un conjunto de herramientas y funciones para crear una experiencia de usuario más fácil e inclusiva para personas con diversas necesidades. Puede habilitar o deshabilitar cada una de estas funciones individualmente.','To find out which plugin features are used to solve which accessibility issues for your site, you can refer to the '=>'Para saber qué funciones del plugin se utilizan para resolver problemas específicos de accesibilidad en su sitio, puede consultar el ','Documentation.'=>'Documentación.','Font Size Feature:'=>'Función de tamaño de fuente:','Line Height Feature:'=>'Función de altura de línea:','Letter Spacing Feature:'=>'Función de espaciado entre letras:','Dyslexia Mask Feature:'=>'Función de la máscara de dislexia:','Grayscale Page Feature:'=>'Función de página en escala de grises:','Contrast Feature:'=>'Función de contraste:','Negative Feature:'=>'Función negativa:','Underlined Links Feature:'=>'Función de enlaces subrayados:','Highlight Links Feature:'=>'Función de enlaces destacados:','Grayscale Images Feature:'=>'Función de imágenes en escala de grises:','Black and white Feature:'=>'Función en blanco y negro:','Style Settings'=>'Configuración de estilo','Customize the plugins appearance to match your taste and needs using the style settings. For more information on each appearance variable, refer to the'=>'Personalice la apariencia de los Plugin para que coincida con sus gustos y necesidades utilizando la configuración de estilo. Para obtener más información sobre cada variable de apariencia, consulte la','Positionable by User:'=>'Posicionable por el usuario:','Enabling this option allows users to freely move the accessibility plugin around the page on desktop devices. Please note that this feature is not available on mobile devices.'=>'Al habilitar esta opción, los usuarios podrán mover libremente el plugin de accesibilidad por la página en dispositivos de escritorio. Ten en cuenta que esta función no está disponible en dispositivos móviles.','Plugin Position:'=>'Posición del Plugin:','Bottom Left Corner'=>'Esquina inferior izquierda','Bottom Right Corner'=>'Esquina inferior derecha','Top Left Corner'=>'Esquina superior izquierda','Top Right Corner'=>'Esquina superior derecha','Background Color: '=>'Color de fondo: ','Background color of plugin and logo border.'=>'Color de fondo del plugin y borde del logo.','Labels Color: '=>'Etiquetas Color: ','Color of the labels or name of each feature and Plugin name to.'=>'Color de las etiquetas o nombre de cada función y nombre del plugin a.','Divider Line Color: '=>'Color de la Línea Divisoria: ','Color of plugin header & features section divider.'=>'Color del encabezado del plugin y divisor de la sección de funciones.','Plugin Logo Color: '=>'Color del logotipo del plugin: ','Color Scheme for Plugin Logo.'=>'Esquema de colores para el logo del plugin.','Accent Color: '=>'Color de acento: ','Color scheme for:'=>'Esquema de color para:','Active features and their toggle buttons on hover.'=>'Características activas y sus botones de alternancia al pasar el cursor.Funciones activas y sus botones de activación/desactivación al pasar el cursor.','Dyslexia reading mask bars'=>'Barras superiores e inferiores','‌Buttons Color (Reset/Close):'=>'Color de Botones (Reiniciar/Cerrar):','Buttons Hover Color (Reset/Close): '=>'Color al pasar el mouse sobre los botones (Reiniciar/Cerrar): ','Reset settings'=>'Restablecer configuración','Accessibility Tools Version: '=>'Versión de las herramientas de accesibilidad: ','Developed by'=>'Desarrollado por','Meacodes Accessibility Tools'=>'Herramientas de Accesibilidad Meacodes','Mea Accessibility'=>'Accesibilidad Mea','Settings'=>'Configuración','https://www.meacodes.com/accessibility'=>'https://www.meacodes.com/accessibility','This is an accessibility tools for people with disabilities to use the web easily.'=>'Este es un plugin de accesibilidad para que las personas con discapacidad puedan usar la web fácilmente.','Meacodes'=>'Meacodes','https://www.meacodes.com'=>'https://www.meacodes.com','Advanced Analytics & Accessibility Insights'=>'Analíticas Avanzadas y Perspectivas de Accesibilidad','Airdrop Campaign Active!'=>'¡Campaña Airdrop Activa!','Auto Translate – Seamless Multilingual Experience'=>'Traducción Automática – Experiencia Multilingüe Perfecta','Banner dismissed successfully'=>'Banner descartado exitosamente','Close banner'=>'Cerrar banner','Complete Accessibility Issue Summary for Your Website'=>'Resumen Completo de Problemas de Accesibilidad para Tu Sitio Web','Comprehensive WCAG 2.1 Issue Detection & Solutions'=>'Detección y Soluciones Integrales de Problemas WCAG 2.1','Effortless Dark & Light Mode Customization'=>'Personalización de Modo Oscuro y Claro Sin Esfuerzo','Endless Customization'=>'Personalización Infinita','Flexible Fonts — Google & Custom Options'=>'Fuentes Flexibles — Opciones de Google y Personalizadas','Fully Customizable Appearance & Theme Control'=>'Apariencia Completamente Personalizable y Control de Tema','Insufficient permissions'=>'Permisos insuficientes','Join Now'=>'Únete Ahora','Join our exclusive airdrop and earn rewards. Limited time offer!'=>'Únete a nuestro airdrop exclusivo y gana recompensas. ¡Oferta por tiempo limitado!','Meacodes Development Solutions'=>'Soluciones de Desarrollo Meacodes','Meacodes Pro Badge'=>'Insignia Meacodes Pro','Modern Mobile First Responsive Design'=>'Diseño Responsivo Moderno Mobile First','Page Structure Overview'=>'Resumen de Estructura de Página','Personalized Accessibility Profiles for Every User'=>'Perfiles de Accesibilidad Personalizados para Cada Usuario','Plugin Button Border Radius:'=>'Radio del Borde del Botón del Plugin:','Plugin Button Icon Size:'=>'Tamaño del Icono del Botón del Plugin:','Plugin Button Margin:'=>'Margen del Botón del Plugin:','Plugin Button Size:'=>'Tamaño del Botón del Plugin:','Plugin button Color: '=>'Color del Botón del Plugin: ','Professional Keyboard Navigation'=>'Navegación Profesional por Teclado','Real-Time Website Performance Analysis'=>'Análisis de Rendimiento del Sitio Web en Tiempo Real','Security check failed'=>'Verificación de seguridad falló','Smart Screen Reader Integration'=>'Integración Inteligente de Lector de Pantalla','Smart Site Search Engine'=>'Motor de Búsqueda Inteligente del Sitio','The upcoming version introduces advanced features like:'=>'La próxima versión introduce características avanzadas como:','WordPress Performance & Security Score'=>'Puntuación de Rendimiento y Seguridad de WordPress','🎉 Congratulations!'=>'🎉 ¡Felicidades!','👉 Join Campaign at Meacodes.com'=>'👉 Únete a la Campaña en Meacodes.com','Attention'=>'Atención','We updated the plugin button logic to enable more customization. If after updating it does not work on your site, this is likely a cache issue. Please clear your server and browser cache, then refresh the page.'=>'Actualizamos la lógica del botón del plugin para permitir más personalización. Si después de actualizar no funciona en tu sitio, esto es probablemente un problema de caché. Por favor, borra la caché de tu servidor y navegador, luego actualiza la página.','💎 Register your website now in our Airdrop Campaign to claim your exclusive rewards and upcoming discounts!'=>'💎 ¡Registra tu sitio web ahora en nuestra Campaña Airdrop para reclamar tus recompensas exclusivas y descuentos próximos!','Because you\'re using the %s plugin, you\'ve earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!'=>'¡Porque estás usando el plugin de Herramientas de Accesibilidad Meacodes, has ganado una insignia exclusiva para una suscripción Pro Version 2 de 3 meses — ¡próximamente!']];
     3return ['domain'=>NULL,'plural-forms'=>'nplurals=2; plural=(n != 1);','language'=>'es_ES','pot-creation-date'=>'2024-06-07 06:53-0700','po-revision-date'=>'2025-10-14 13:03+0330','translation-revision-date'=>'2025-10-14 13:03+0330','project-id-version'=>'Meacodes Accessibility Plugin','x-generator'=>'Poedit 3.7','messages'=>['Accessibility'=>'Accesibilidad','Drag and move the accessibility box'=>'Drague y mueva la casilla de accesibilidad','Open/Close Accessibility Options'=>'Abrir/Cerrar Opciones de Accesibilidad','Click to read GDPR Notice'=>'Haga clic para leer el Aviso de RGPD','Font Size'=>'Tamaño de fuente','‌Normal'=>'Normal','Line Height'=>'Altura de línea','Normal'=>'Normal','Letter Spacing'=>'Espaciado entre letras','Dyslexia Mask'=>'Máscara para la dislexia','Grayscale Page'=>'Página en escala de grises','Contrast'=>'Contraste','Negative'=>'Negativo','Underlined Links'=>'Enlaces subrayados','Highlight Links'=>'Resaltar enlaces','Grayscale Images'=>'Imágenes en escala de grises','Black and white'=>'Blanco y negro','Developed by '=>'Desarrollado por ','Reset'=>'Restablecer','Close'=>'Cerrar','GDPR Notice:'=>'Aviso de RGPD:','This plugin uses cookies to enhance your experience and provide personalized accessibility settings. These cookies are stored in your browser and allow us to remember your preferences for font size, color schemes, and other accessibility features. By using this plugin, you consent to the use of cookies for these purposes. You can delete or block cookies in your browser settings at any time. Please note that doing so may affect your experience on the site.'=>'Este plugin utiliza cookies para mejorar su experiencia y ofrecer ajustes personalizados de accesibilidad. Estas cookies se almacenan en su navegador y nos permiten recordar sus preferencias de tamaño de fuente, esquemas de color y otras funciones de accesibilidad. Al utilizar este plugin, usted da su consentimiento para el uso de cookies para estos fines. Puede eliminar o bloquear las cookies en la configuración de su navegador en cualquier momento. Tenga en cuenta que hacerlo podría afectar su experiencia en el sitio.','jQuery is not loaded!'=>'¡jQuery no está cargado!','General'=>'General','Features'=>'Características','Style'=>'Estilo','Documentation'=>'Documentación','Support'=>'Soporte','Donation'=>'Donación','changelog'=>'registro de cambios','General Settings'=>'Ajustes Generales','Enable or Disable Meacodes Accessibility Tools:'=>'Habilitar o Deshabilitar las Herramientas de Accesibilidad Meacodes:','Plugin Name:'=>'Nombre del plugin:','This means that the plugin name is a default and automatic translation of the word Accessibility.'=>'Esto significa que el nombre del plugin es una traducción predeterminada y automática de la palabra "Accesibilidad".','This name will be displayed opposite the plugin icon in the header section when the accessibility plugin is opened by the user on your website.'=>'Este nombre se mostrará al lado del icono del plugin en la sección del encabezado cuando el usuario abra el plugin de accesibilidad en su sitio web.','If you do not want any text to be displayed in that section, Clear default name and save changes.'=>'Si no desea que se muestre ningún texto en esa sección, elimine el nombre predeterminado y guarde los cambios.','If your site is multilingual (using Polylang), keep in mind that if you change this name, the name you choose will be displayed without translation and fixed in all languages unless you rebuild the plugins language file with Polylang and enter the translation of the chosen name. Also, if you want the chosen name to revert to the default name and be displayed translated in any language, reset settings once.'=>'Si su sitio web es multilingüe (usando Polylang), tenga en cuenta que si cambia este nombre, el nombre que elija se mostrará sin traducción y se fijará en todos los idiomas a menos que vuelva a generar el archivo de idioma del complemento con Polylang e ingrese la traducción del nombre elegido. Además, si desea que el nombre elegido vuelva al nombre predeterminado y se muestre traducido en cualquier idioma, restablezca la configuración una vez.','Enable or Disable GDPR Notice:'=>'Habilitar o Deshabilitar Aviso RGPD:','Developed by label:'=>'Desarrollado por etiqueta:','Enable "Developed by" label'=>'Habilitar "Desarrollado por" etiqueta','Please turn the Developed by label on to support us and help the project move forward. '=>'Activa la etiqueta Desarrollado por para apoyarnos y ayudar al proyecto a seguir adelante. ','You can also buy us a coffee on the'=>'También puedes invitarnos a un café en','Donation page.'=>'Página de donación.','Thanks for your supports. '=>'Gracias por su apoyo. ','The Accessibility plugin provides a set of tools and features to create an easier and more inclusive user experience for users with various needs. You can enable or disable each of these features individually.'=>'El plugin de accesibilidad proporciona un conjunto de herramientas y funciones para crear una experiencia de usuario más fácil e inclusiva para personas con diversas necesidades. Puede habilitar o deshabilitar cada una de estas funciones individualmente.','To find out which plugin features are used to solve which accessibility issues for your site, you can refer to the '=>'Para saber qué funciones del plugin se utilizan para resolver problemas específicos de accesibilidad en su sitio, puede consultar el ','Documentation.'=>'Documentación.','Font Size Feature:'=>'Función de tamaño de fuente:','Line Height Feature:'=>'Función de altura de línea:','Letter Spacing Feature:'=>'Función de espaciado entre letras:','Dyslexia Mask Feature:'=>'Función de la máscara de dislexia:','Grayscale Page Feature:'=>'Función de página en escala de grises:','Contrast Feature:'=>'Función de contraste:','Negative Feature:'=>'Función negativa:','Underlined Links Feature:'=>'Función de enlaces subrayados:','Highlight Links Feature:'=>'Función de enlaces destacados:','Grayscale Images Feature:'=>'Función de imágenes en escala de grises:','Black and white Feature:'=>'Función en blanco y negro:','Style Settings'=>'Configuración de estilo','Customize the plugins appearance to match your taste and needs using the style settings. For more information on each appearance variable, refer to the'=>'Personalice la apariencia de los Plugin para que coincida con sus gustos y necesidades utilizando la configuración de estilo. Para obtener más información sobre cada variable de apariencia, consulte la','Positionable by User:'=>'Posicionable por el usuario:','Enabling this option allows users to freely move the accessibility plugin around the page on desktop devices. Please note that this feature is not available on mobile devices.'=>'Al habilitar esta opción, los usuarios podrán mover libremente el plugin de accesibilidad por la página en dispositivos de escritorio. Ten en cuenta que esta función no está disponible en dispositivos móviles.','Plugin Position:'=>'Posición del Plugin:','Bottom Left Corner'=>'Esquina inferior izquierda','Bottom Right Corner'=>'Esquina inferior derecha','Top Left Corner'=>'Esquina superior izquierda','Top Right Corner'=>'Esquina superior derecha','Background Color: '=>'Color de fondo: ','Background color of plugin and logo border.'=>'Color de fondo del plugin y borde del logo.','Labels Color: '=>'Etiquetas Color: ','Color of the labels or name of each feature and Plugin name to.'=>'Color de las etiquetas o nombre de cada función y nombre del plugin a.','Divider Line Color: '=>'Color de la Línea Divisoria: ','Color of plugin header & features section divider.'=>'Color del encabezado del plugin y divisor de la sección de funciones.','Plugin Logo Color: '=>'Color del logotipo del plugin: ','Color Scheme for Plugin Logo.'=>'Esquema de colores para el logo del plugin.','Accent Color: '=>'Color de acento: ','Color scheme for:'=>'Esquema de color para:','Active features and their toggle buttons on hover.'=>'Características activas y sus botones de alternancia al pasar el cursor.Funciones activas y sus botones de activación/desactivación al pasar el cursor.','Dyslexia reading mask bars'=>'Barras superiores e inferiores','‌Buttons Color (Reset/Close):'=>'Color de Botones (Reiniciar/Cerrar):','Buttons Hover Color (Reset/Close): '=>'Color al pasar el mouse sobre los botones (Reiniciar/Cerrar): ','Reset settings'=>'Restablecer configuración','Accessibility Tools Version: '=>'Versión de las herramientas de accesibilidad: ','Developed by'=>'Desarrollado por','Meacodes Accessibility Tools'=>'Herramientas de Accesibilidad Meacodes','Mea Accessibility'=>'Accesibilidad Mea','Settings'=>'Configuración','https://www.meacodes.com/accessibility'=>'https://www.meacodes.com/accessibility','This is an accessibility tools for people with disabilities to use the web easily.'=>'Este es un plugin de accesibilidad para que las personas con discapacidad puedan usar la web fácilmente.','Meacodes'=>'Meacodes','https://www.meacodes.com'=>'https://www.meacodes.com','Advanced Analytics & Accessibility Insights'=>'Analíticas Avanzadas y Perspectivas de Accesibilidad','Auto Translate – Seamless Multilingual Experience'=>'Traducción Automática – Experiencia Multilingüe Perfecta','Banner dismissed successfully'=>'Banner descartado exitosamente','Close banner'=>'Cerrar banner','Complete Accessibility Issue Summary for Your Website'=>'Resumen Completo de Problemas de Accesibilidad para Tu Sitio Web','Comprehensive WCAG 2.1 Issue Detection & Solutions'=>'Detección y Soluciones Integrales de Problemas WCAG 2.1','Effortless Dark & Light Mode Customization'=>'Personalización de Modo Oscuro y Claro Sin Esfuerzo','Endless Customization'=>'Personalización Infinita','Flexible Fonts — Google & Custom Options'=>'Fuentes Flexibles — Opciones de Google y Personalizadas','Fully Customizable Appearance & Theme Control'=>'Apariencia Completamente Personalizable y Control de Tema','Insufficient permissions'=>'Permisos insuficientes','Meacodes Development Solutions'=>'Soluciones de Desarrollo Meacodes','Meacodes Pro Badge'=>'Insignia Meacodes Pro','Modern Mobile First Responsive Design'=>'Diseño Responsivo Moderno Mobile First','Page Structure Overview'=>'Resumen de Estructura de Página','Personalized Accessibility Profiles for Every User'=>'Perfiles de Accesibilidad Personalizados para Cada Usuario','Plugin Button Border Radius:'=>'Radio del Borde del Botón del Plugin:','Plugin Button Icon Size:'=>'Tamaño del Icono del Botón del Plugin:','Plugin Button Margin:'=>'Margen del Botón del Plugin:','Plugin Button Size:'=>'Tamaño del Botón del Plugin:','Plugin button Color: '=>'Color del Botón del Plugin: ','Professional Keyboard Navigation'=>'Navegación Profesional por Teclado','Real-Time Website Performance Analysis'=>'Análisis de Rendimiento del Sitio Web en Tiempo Real','Security check failed'=>'Verificación de seguridad falló','Smart Screen Reader Integration'=>'Integración Inteligente de Lector de Pantalla','Smart Site Search Engine'=>'Motor de Búsqueda Inteligente del Sitio','The upcoming version introduces advanced features like:'=>'La próxima versión introduce características avanzadas como:','WordPress Performance & Security Score'=>'Puntuación de Rendimiento y Seguridad de WordPress','🎉 Congratulations!'=>'🎉 ¡Felicidades!','👉 Join Campaign at Meacodes.com'=>'👉 Únete a la Campaña en Meacodes.com','Attention'=>'Atención','We updated the plugin button logic to enable more customization. If after updating it does not work on your site, this is likely a cache issue. Please clear your server and browser cache, then refresh the page.'=>'Actualizamos la lógica del botón del plugin para permitir más personalización. Si después de actualizar no funciona en tu sitio, esto es probablemente un problema de caché. Por favor, borra la caché de tu servidor y navegador, luego actualiza la página.','💎 Register your website now in our Airdrop Campaign to claim your exclusive rewards and upcoming discounts!'=>'💎 ¡Registra tu sitio web ahora en nuestra Campaña Airdrop para reclamar tus recompensas exclusivas y descuentos próximos!','Because you\'re using the %s plugin, you\'ve earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!'=>'¡Porque estás usando el plugin de Herramientas de Accesibilidad Meacodes, has ganado una insignia exclusiva para una suscripción Pro Version 2 de 3 meses — ¡próximamente!','You\'ve been recognized as an Early Supporter of Meacodes Accessibility Tools — a special thank-you to everyone helping us build a more accessible web 🌍'=>'Has sido reconocido como Early Supporter de Meacodes Accessibility Tools — un agradecimiento especial a todos los que nos ayudan a construir una web más accesible 🌍','With the upcoming Pro Version 2, you\'ll unlock early-access privileges such as:'=>'Con la próxima Pro Version 2, desbloquearás privilegios de acceso temprano como:','Modern mobile-first responsive design'=>'Diseño responsivo moderno mobile-first','Smart accessibility enhancements'=>'Mejoras inteligentes de accesibilidad','WCAG 2.1 issue detection & analytics'=>'Detección de problemas WCAG 2.1 y análisis','Deep customization options'=>'Opciones de personalización profunda','Your Early Supporter Badge will be verified automatically during the Pro 2 rollout. Stay tuned and learn more about the upcoming release at'=>'Tu Badge de Early Supporter será verificado automáticamente durante el lanzamiento de Pro 2. Mantente atento y aprende más sobre el próximo lanzamiento en','👉 meacodes.com'=>'👉 meacodes.com','This notice will hide for 24 hours once dismissed.'=>'Este aviso se ocultará durante 24 horas una vez descartado.','You\'ve been recognized as an %s of Meacodes Accessibility Tools.'=>'Has sido reconocido como %s de Meacodes Accessibility Tools.','As part of the upcoming %s rollout, early supporters will receive an exclusive %s and extended Pro access privileges.'=>'Como parte del próximo lanzamiento de %s, los early supporters recibirán un %s exclusivo y privilegios de acceso Pro extendidos.','To learn how the badge system works and how sites are verified,'=>'Para aprender cómo funciona el sistema de insignias y cómo se verifican los sitios,','👉 visit meacodes.com/early-supporter'=>'👉 visita meacodes.com/early-supporter']];
  • meacodes-accessibility-tools/trunk/languages/meacodes-accessibility-tools-es_ES.po

    r3378044 r3378438  
    453453msgstr "Analíticas Avanzadas y Perspectivas de Accesibilidad"
    454454
    455 msgid "Airdrop Campaign Active!"
    456 msgstr "¡Campaña Airdrop Activa!"
    457455
    458456msgid "Auto Translate – Seamless Multilingual Experience"
     
    486484msgstr "Permisos insuficientes"
    487485
    488 msgid "Join Now"
    489 msgstr "Únete Ahora"
    490 
    491 msgid "Join our exclusive airdrop and earn rewards. Limited time offer!"
    492 msgstr "Únete a nuestro airdrop exclusivo y gana recompensas. ¡Oferta por tiempo limitado!"
     486
    493487
    494488msgid "Meacodes Development Solutions"
     
    822816msgid "Because you're using the %s plugin, you've earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!"
    823817msgstr "¡Porque estás usando el plugin de Herramientas de Accesibilidad Meacodes, has ganado una insignia exclusiva para una suscripción Pro Version 2 de 3 meses — ¡próximamente!"
     818
     819msgid "You've been recognized as an Early Supporter of Meacodes Accessibility Tools — a special thank-you to everyone helping us build a more accessible web 🌍"
     820msgstr "Has sido reconocido como Early Supporter de Meacodes Accessibility Tools — un agradecimiento especial a todos los que nos ayudan a construir una web más accesible 🌍"
     821
     822msgid "With the upcoming Pro Version 2, you'll unlock early-access privileges such as:"
     823msgstr "Con la próxima Pro Version 2, desbloquearás privilegios de acceso temprano como:"
     824
     825msgid "Modern mobile-first responsive design"
     826msgstr "Diseño responsivo moderno mobile-first"
     827
     828msgid "Smart accessibility enhancements"
     829msgstr "Mejoras inteligentes de accesibilidad"
     830
     831msgid "WCAG 2.1 issue detection & analytics"
     832msgstr "Detección de problemas WCAG 2.1 y análisis"
     833
     834msgid "Deep customization options"
     835msgstr "Opciones de personalización profunda"
     836
     837msgid "Your Early Supporter Badge will be verified automatically during the Pro 2 rollout. Stay tuned and learn more about the upcoming release at"
     838msgstr "Tu Badge de Early Supporter será verificado automáticamente durante el lanzamiento de Pro 2. Mantente atento y aprende más sobre el próximo lanzamiento en"
     839
     840msgid "👉 meacodes.com"
     841msgstr "👉 meacodes.com"
     842
     843msgid "This notice will hide for 24 hours once dismissed."
     844msgstr "Este aviso se ocultará durante 24 horas una vez descartado."
     845
     846msgid "You've been recognized as an %s of Meacodes Accessibility Tools."
     847msgstr "Has sido reconocido como %s de Meacodes Accessibility Tools."
     848
     849msgid "As part of the upcoming %s rollout, early supporters will receive an exclusive %s and extended Pro access privileges."
     850msgstr "Como parte del próximo lanzamiento de %s, los early supporters recibirán un %s exclusivo y privilegios de acceso Pro extendidos."
     851
     852msgid "To learn how the badge system works and how sites are verified,"
     853msgstr "Para aprender cómo funciona el sistema de insignias y cómo se verifican los sitios,"
     854
     855msgid "👉 visit meacodes.com/early-supporter"
     856msgstr "👉 visita meacodes.com/early-supporter"
  • meacodes-accessibility-tools/trunk/languages/meacodes-accessibility-tools-fa_IR.l10n.php

    r3378044 r3378438  
    11<?php
    22// generated by Poedit from meacodes-accessibility-tools-fa_IR.po, do not edit directly
    3 return ['domain'=>NULL,'plural-forms'=>'nplurals=2; plural=(n==0 || n==1);','language'=>'fa_IR','pot-creation-date'=>'2024-06-07 06:53-0700','po-revision-date'=>'2024-06-07 20:42+0330','translation-revision-date'=>'2024-06-07 20:42+0330','project-id-version'=>'Meacodes Accessibility Plugin','x-generator'=>'Poedit 3.7','messages'=>['Accessibility'=>'دسترس پذیری','Drag and move the accessibility box'=>'منوی دسترس پذیری را بکشید و هرجایی که دوست دارید قرار دهید','Open/Close Accessibility Options'=>'باز/بسته کردن دسترس پذیری','Click to read GDPR Notice'=>'برای خواندن اطلاعیه حریم خصوصی کلیک کنید','Font Size'=>'سایز نوشته ها','‌Normal'=>'عادی','Line Height'=>'فاصله بین خطوط','Normal'=>'عادی','Letter Spacing'=>'فاصله بین حروف','Dyslexia Mask'=>'ماسک خوانش پریشی','Grayscale Page'=>'صفحه در مقیاس خاکستری','Contrast'=>'کنتراست','Negative'=>'نگاتیو','Underlined Links'=>'لینک های زیر خط دار','Highlight Links'=>'لینک های برجسته','Grayscale Images'=>'تصاویر در مقیاس خاکستری','Black and white'=>'سیاه و سفید','Developed by '=>'توسعه یافته توسط ','Reset'=>'بازنشانی','Close'=>'بستن','GDPR Notice:'=>'اطلاعیه حریم خصوصی:','This plugin uses cookies to enhance your experience and provide personalized accessibility settings. These cookies are stored in your browser and allow us to remember your preferences for font size, color schemes, and other accessibility features. By using this plugin, you consent to the use of cookies for these purposes. You can delete or block cookies in your browser settings at any time. Please note that doing so may affect your experience on the site.'=>'این افزونه از کوکی‌ها برای بهبود تجربه شما و ارائه تنظیمات دسترسی شخصی‌سازی‌شده استفاده می‌کند. این کوکی‌ها در مرورگر شما ذخیره می‌شوند و به ما امکان می‌دهند تا اندازه فونت، طرح‌های رنگی و سایر ویژگی‌های دسترسی را به خاطر بسپاریم. با استفاده از این افزونه، با استفاده از کوکی‌ها برای این اهداف رضایت می‌دهید. شما می‌توانید کوکی‌ها را  هر زمان در تنظیمات مرورگر خود حذف یا مسدود کنید. لطفاً توجه داشته باشید که انجام این کار ممکن است بر تجربه شما در استفاده از سایت تأثیر بگذارد.','jQuery is not loaded!'=>'jQuery بارگذاری نشده است!','General'=>'عمومی','Features'=>'ویژگی‌ها','Style'=>'طرح و رنگ','Documentation'=>'مستندات','Support'=>'پشتیبانی','Donation'=>'حمایت مالی','changelog'=>'تغییرات','General Settings'=>'فعال یا غیرفعال کردن افزونه دسترس پذیری مئاکدز','Enable or Disable Meacodes Accessibility Tools:'=>'فعال یا غیرفعال کردن ابزار دسترس پذیری مئاکدز:','Plugin Name:'=>'نام افزونه:','This means that the plugin name is a default and automatic translation of the word Accessibility.'=>'نوشته داخل جعبه بالا به این معنی است که نام افزونه یک ترجمه پیش فرض و خودکار از کلمه"دسترسی‌پذیری" است.','This name will be displayed opposite the plugin icon in the header section when the accessibility plugin is opened by the user on your website.'=>'این نام، زمانی که افزونه‌ی دسترسی‌پذیری توسط کاربر در وب‌سایت شما باز می‌شود، در بخش هدر، روبروی آیکون افزونه نمایش داده خواهد شد.','If you do not want any text to be displayed in that section, Clear default name and save changes.'=>'اگر نمی خواهید در آن بخش هیچ متنی نمایش داده شود، نام پیش فرض را پاک کرده و تغییرات را ذخیره کنید.','If your site is multilingual (using Polylang), keep in mind that if you change this name, the name you choose will be displayed without translation and fixed in all languages unless you rebuild the plugins language file with Polylang and enter the translation of the chosen name. Also, if you want the chosen name to revert to the default name and be displayed translated in any language, reset settings once.'=>'اگر سایت شما چندزبانه است (با استفاده از پولیلنگ)، توجه داشته باشید که در صورت تغییر این نام، نام انتخابی شما بدون ترجمه و در تمامی زبان‌ها ثابت باقی خواهد ماند، مگر اینکه فایل زبان افزونه را با پولیلنگ بازسازی کنید و ترجمه نام انتخابی را وارد نمایید. همچنین، اگر می‌خواهید نام انتخابی به نام پیش‌فرض برگردد و در هر زبانی ترجمه شود، یک بار تنظیمات را بازنشانی کنید.','Enable or Disable GDPR Notice:'=>'فعال یا غیر فعال کردن اطلاعیه حریم خصوصی:','Developed by label:'=>'برچسب توسعه یافته توسط:','Enable "Developed by" label'=>'فعال کردن برچسب" توسعه یافته توسط"','Please turn the Developed by label on to support us and help the project move forward. '=>'لطفاً برچسب «توسعه یافته توسط» را برای حمایت از ما و پیشبرد پروژه روشن کنید. ','You can also buy us a coffee on the'=>'شما همچنین می توانید برای حمایت از ما در صفحه حمایت قهوه ای برای ما بخرید','Donation page.'=>'( صفحه حمایت )','Thanks for your supports. '=>'بابت حمایتتان سپاس گذاریم. ','The Accessibility plugin provides a set of tools and features to create an easier and more inclusive user experience for users with various needs. You can enable or disable each of these features individually.'=>'افزونه‌ی دسترسی پذیری مجموعه‌ای از ابزار و قابلیت‌ها برای ایجاد یک رابط کاربری آسان‌تر و فراگیرتر برای کاربران با نیازهای مختلف را فراهم می آورد. شما می‌توانید به صورت جداگانه هر یک از این قابلیت‌ها را فعال یا غیرفعال کنید.','To find out which plugin features are used to solve which accessibility issues for your site, you can refer to the '=>'برای اینکه بفهمید کدام ویژگی‌های افزونه برای حل چه مشکلات دسترسی برای سایت شما استفاده می‌شوند، می‌توانید پاسخ آن را در بخش راهنما پیدا کنید. ','Documentation.'=>'مستندات.','Font Size Feature:'=>'ویژگی سایز نوشته ها:','Line Height Feature:'=>'ویژگی فاصله بین خطوط:','Letter Spacing Feature:'=>'ویژگی فاصله بین حروف:','Dyslexia Mask Feature:'=>'ویژگی ماسک خوانش پریشی:','Grayscale Page Feature:'=>'ویژگی صفحه در مقیاس خاکستری:','Contrast Feature:'=>'ویژگی کنتراست:','Negative Feature:'=>'ویژگی نگاتیو:','Underlined Links Feature:'=>'ویژگی لینک های زیر خط دار:','Highlight Links Feature:'=>'ویژگی لینک های برجسته:','Grayscale Images Feature:'=>'ویژگی تصاویر در مقیاس خاکستری:','Black and white Feature:'=>'ویژگی سیاه و سفید:','Style Settings'=>'تنظیمات ظاهری','Customize the plugins appearance to match your taste and needs using the style settings. For more information on each appearance variable, refer to the'=>'تنظیمات ظاهری افزونه را برای مطابقت با سلیقه و نیازهای خود با استفاده از تنظیمات طرح و رنگ سفارشی کنید. برای کسب اطلاعات بیشتر در مورد هر متغیر ظاهری، به بخش راهنما مراجعه کنید','Positionable by User:'=>'قابلیت جابه جایی توسط کاربر:','Enabling this option allows users to freely move the accessibility plugin around the page on desktop devices. Please note that this feature is not available on mobile devices.'=>'فعال کردن این گزینه به کاربران امکان می دهد تا افزونه دسترس پذیری را به صورت آزادانه در صفحه وب بر روی دستگاه های دسکتاپ جابجا کنند. لطفا توجه داشته باشید که این ویژگی روی دستگاه های تلفن همراه در دسترس نیست.','Plugin Position:'=>'جایگاه افزونه:','Bottom Left Corner'=>'گوشه پایین چپ','Bottom Right Corner'=>'گوشه پایین راست','Top Left Corner'=>'گوشه بالا چپ','Top Right Corner'=>'گوشه بالا راست','Background Color: '=>'رنگ پس زمینه: ','Background color of plugin and logo border.'=>'رنگ پس زمینه افزونه و حاشیه لوگو.','Labels Color: '=>'رنگ برچسب ها: ','Color of the labels or name of each feature and Plugin name to.'=>'رنگ برچسب ها یا نام هر ویژگی و همچنین نام افزونه.','Divider Line Color: '=>'رنگ خط جداکننده: ','Color of plugin header & features section divider.'=>'رنگ هدر افزونه و جداکننده بخش ویژگی‌ها.','Plugin Logo Color: '=>'رنگ لوگو افزونه: ','Color Scheme for Plugin Logo.'=>'رنگ بندی برای لوگوی پلاگین.','Accent Color: '=>'رنگ تاکیدی: ','Color scheme for:'=>'رنگ بندی برای:','Active features and their toggle buttons on hover.'=>'ویژگی های فعال و دکمه های تغییر وضعیت آنها هنگام هاور.','Dyslexia reading mask bars'=>'نوار بالا و پایین ماسک خوانش پریشی','‌Buttons Color (Reset/Close):'=>'رنگ دکمه ها ( بستن/بازنشانی):','Buttons Hover Color (Reset/Close): '=>'رنگ هاور دکمه ها (بستن/بازنشانی): ','Reset settings'=>'بازنشانی تنظیمات','Accessibility Tools Version: '=>'ابزار دسترس پذیری، ویرایش: ','Developed by'=>'توسعه یافته توسط','Meacodes Accessibility Tools'=>'ابزار دسترس پذیری مئاکدز','Mea Accessibility'=>'دسترس پذیری مئا','Settings'=>'تنظیمات','https://www.meacodes.com/accessibility'=>'https://www.meacodes.com/accessibility','This is an accessibility tools for people with disabilities to use the web easily.'=>'این ابزارهای دسترسی‌پذیری برای افراد دارای معلولیت برای استفاده آسان از وب است.افزونه دسترس پذیری برای افرادی که به واسطه مشکلات بینایی و شناختی برای استفاده از دنیای وب دچار چالش های مختلفی هستند.','Meacodes'=>'Meacodes','https://www.meacodes.com'=>'https://www.meacodes.com','Advanced Analytics & Accessibility Insights'=>'تحلیل‌های پیشرفته و بینش‌های دسترسی‌پذیری','Airdrop Campaign Active!'=>'کمپین ایردراپ فعال است!','Auto Translate – Seamless Multilingual Experience'=>'ترجمه خودکار – تجربه چندزبانه بی‌درز','Banner dismissed successfully'=>'بنر با موفقیت رد شد','Close banner'=>'بستن بنر','Complete Accessibility Issue Summary for Your Website'=>'خلاصه کامل مسائل دسترسی‌پذیری برای وب‌سایت شما','Comprehensive WCAG 2.1 Issue Detection & Solutions'=>'تشخیص و راه‌حل‌های جامع مسائل WCAG 2.1','Effortless Dark & Light Mode Customization'=>'سفارشی‌سازی آسان حالت تاریک و روشن','Endless Customization'=>'سفارشی‌سازی بی‌پایان','Flexible Fonts — Google & Custom Options'=>'فونت‌های انعطاف‌پذیر — گزینه‌های Google و سفارشی','Fully Customizable Appearance & Theme Control'=>'ظاهر کاملاً قابل سفارشی‌سازی و کنترل تم','Insufficient permissions'=>'مجوزهای ناکافی','Join Now'=>'الان بپیوندید','Join our exclusive airdrop and earn rewards. Limited time offer!'=>'به ایردراپ انحصاری ما بپیوندید و پاداش کسب کنید. پیشنهاد محدود زمانی!','Meacodes Development Solutions'=>'راه‌حل‌های توسعه Meacodes','Meacodes Pro Badge'=>'نشان Meacodes Pro','Modern Mobile First Responsive Design'=>'طراحی ریسپانسیو مدرن Mobile First','Page Structure Overview'=>'نمای کلی ساختار صفحه','Personalized Accessibility Profiles for Every User'=>'پروفایل‌های دسترسی‌پذیری شخصی‌سازی شده برای هر کاربر','Plugin Button Border Radius:'=>'شعاع حاشیه دکمه افزونه:','Plugin Button Icon Size:'=>'اندازه آیکون دکمه افزونه:','Plugin Button Margin:'=>'حاشیه دکمه افزونه:','Plugin Button Size:'=>'اندازه دکمه افزونه:','Plugin button Color: '=>'رنگ دکمه افزونه: ','Professional Keyboard Navigation'=>'ناوبری حرفه‌ای صفحه‌کلید','Real-Time Website Performance Analysis'=>'تحلیل عملکرد وب‌سایت در زمان واقعی','Security check failed'=>'بررسی امنیت ناموفق بود','Smart Screen Reader Integration'=>'یکپارچه‌سازی هوشمند صفحه‌خوان','Smart Site Search Engine'=>'موتور جستجوی هوشمند سایت','The upcoming version introduces advanced features like:'=>'نسخه آینده ویژگی‌های پیشرفته‌ای مانند:','WordPress Performance & Security Score'=>'امتیاز عملکرد و امنیت WordPress','🎉 Congratulations!'=>'🎉 تبریک!','👉 Join Campaign at Meacodes.com'=>'👉 به کمپین در Meacodes.com بپیوندید','Attention'=>'توجه','We updated the plugin button logic to enable more customization. If after updating it does not work on your site, this is likely a cache issue. Please clear your server and browser cache, then refresh the page.'=>'منطق دکمه افزونه را برای امکان سفارشی‌سازی بیشتر به‌روزرسانی کردیم. اگر پس از به‌روزرسانی در سایت شما کار نمی‌کند، این احتمالاً مشکل کش است. لطفاً کش سرور و مرورگر خود را پاک کنید، سپس صفحه را تازه کنید.','💎 Register your website now in our Airdrop Campaign to claim your exclusive rewards and upcoming discounts!'=>'💎 وب‌سایت خود را الان در کمپین ایردراپ ما ثبت کنید تا پاداش‌های انحصاری و تخفیف‌های آینده خود را دریافت کنید!','Because you\'re using the %s plugin, you\'ve earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!'=>'چون شما از افزونه ابزارهای دسترسی‌پذیری Meacodes استفاده می‌کنید، یک نشان انحصاری برای اشتراک Pro Version 2 سه ماهه کسب کرده‌اید — به زودی راه‌اندازی می‌شود!']];
     3return ['domain'=>NULL,'plural-forms'=>'nplurals=2; plural=(n==0 || n==1);','language'=>'fa_IR','pot-creation-date'=>'2024-06-07 06:53-0700','po-revision-date'=>'2024-06-07 20:42+0330','translation-revision-date'=>'2024-06-07 20:42+0330','project-id-version'=>'Meacodes Accessibility Plugin','x-generator'=>'Poedit 3.7','messages'=>['Accessibility'=>'دسترس پذیری','Drag and move the accessibility box'=>'منوی دسترس پذیری را بکشید و هرجایی که دوست دارید قرار دهید','Open/Close Accessibility Options'=>'باز/بسته کردن دسترس پذیری','Click to read GDPR Notice'=>'برای خواندن اطلاعیه حریم خصوصی کلیک کنید','Font Size'=>'سایز نوشته ها','‌Normal'=>'عادی','Line Height'=>'فاصله بین خطوط','Normal'=>'عادی','Letter Spacing'=>'فاصله بین حروف','Dyslexia Mask'=>'ماسک خوانش پریشی','Grayscale Page'=>'صفحه در مقیاس خاکستری','Contrast'=>'کنتراست','Negative'=>'نگاتیو','Underlined Links'=>'لینک های زیر خط دار','Highlight Links'=>'لینک های برجسته','Grayscale Images'=>'تصاویر در مقیاس خاکستری','Black and white'=>'سیاه و سفید','Developed by '=>'توسعه یافته توسط ','Reset'=>'بازنشانی','Close'=>'بستن','GDPR Notice:'=>'اطلاعیه حریم خصوصی:','This plugin uses cookies to enhance your experience and provide personalized accessibility settings. These cookies are stored in your browser and allow us to remember your preferences for font size, color schemes, and other accessibility features. By using this plugin, you consent to the use of cookies for these purposes. You can delete or block cookies in your browser settings at any time. Please note that doing so may affect your experience on the site.'=>'این افزونه از کوکی‌ها برای بهبود تجربه شما و ارائه تنظیمات دسترسی شخصی‌سازی‌شده استفاده می‌کند. این کوکی‌ها در مرورگر شما ذخیره می‌شوند و به ما امکان می‌دهند تا اندازه فونت، طرح‌های رنگی و سایر ویژگی‌های دسترسی را به خاطر بسپاریم. با استفاده از این افزونه، با استفاده از کوکی‌ها برای این اهداف رضایت می‌دهید. شما می‌توانید کوکی‌ها را  هر زمان در تنظیمات مرورگر خود حذف یا مسدود کنید. لطفاً توجه داشته باشید که انجام این کار ممکن است بر تجربه شما در استفاده از سایت تأثیر بگذارد.','jQuery is not loaded!'=>'jQuery بارگذاری نشده است!','General'=>'عمومی','Features'=>'ویژگی‌ها','Style'=>'طرح و رنگ','Documentation'=>'مستندات','Support'=>'پشتیبانی','Donation'=>'حمایت مالی','changelog'=>'تغییرات','General Settings'=>'فعال یا غیرفعال کردن افزونه دسترس پذیری مئاکدز','Enable or Disable Meacodes Accessibility Tools:'=>'فعال یا غیرفعال کردن ابزار دسترس پذیری مئاکدز:','Plugin Name:'=>'نام افزونه:','This means that the plugin name is a default and automatic translation of the word Accessibility.'=>'نوشته داخل جعبه بالا به این معنی است که نام افزونه یک ترجمه پیش فرض و خودکار از کلمه"دسترسی‌پذیری" است.','This name will be displayed opposite the plugin icon in the header section when the accessibility plugin is opened by the user on your website.'=>'این نام، زمانی که افزونه‌ی دسترسی‌پذیری توسط کاربر در وب‌سایت شما باز می‌شود، در بخش هدر، روبروی آیکون افزونه نمایش داده خواهد شد.','If you do not want any text to be displayed in that section, Clear default name and save changes.'=>'اگر نمی خواهید در آن بخش هیچ متنی نمایش داده شود، نام پیش فرض را پاک کرده و تغییرات را ذخیره کنید.','If your site is multilingual (using Polylang), keep in mind that if you change this name, the name you choose will be displayed without translation and fixed in all languages unless you rebuild the plugins language file with Polylang and enter the translation of the chosen name. Also, if you want the chosen name to revert to the default name and be displayed translated in any language, reset settings once.'=>'اگر سایت شما چندزبانه است (با استفاده از پولیلنگ)، توجه داشته باشید که در صورت تغییر این نام، نام انتخابی شما بدون ترجمه و در تمامی زبان‌ها ثابت باقی خواهد ماند، مگر اینکه فایل زبان افزونه را با پولیلنگ بازسازی کنید و ترجمه نام انتخابی را وارد نمایید. همچنین، اگر می‌خواهید نام انتخابی به نام پیش‌فرض برگردد و در هر زبانی ترجمه شود، یک بار تنظیمات را بازنشانی کنید.','Enable or Disable GDPR Notice:'=>'فعال یا غیر فعال کردن اطلاعیه حریم خصوصی:','Developed by label:'=>'برچسب توسعه یافته توسط:','Enable "Developed by" label'=>'فعال کردن برچسب" توسعه یافته توسط"','Please turn the Developed by label on to support us and help the project move forward. '=>'لطفاً برچسب «توسعه یافته توسط» را برای حمایت از ما و پیشبرد پروژه روشن کنید. ','You can also buy us a coffee on the'=>'شما همچنین می توانید برای حمایت از ما در صفحه حمایت قهوه ای برای ما بخرید','Donation page.'=>'( صفحه حمایت )','Thanks for your supports. '=>'بابت حمایتتان سپاس گذاریم. ','The Accessibility plugin provides a set of tools and features to create an easier and more inclusive user experience for users with various needs. You can enable or disable each of these features individually.'=>'افزونه‌ی دسترسی پذیری مجموعه‌ای از ابزار و قابلیت‌ها برای ایجاد یک رابط کاربری آسان‌تر و فراگیرتر برای کاربران با نیازهای مختلف را فراهم می آورد. شما می‌توانید به صورت جداگانه هر یک از این قابلیت‌ها را فعال یا غیرفعال کنید.','To find out which plugin features are used to solve which accessibility issues for your site, you can refer to the '=>'برای اینکه بفهمید کدام ویژگی‌های افزونه برای حل چه مشکلات دسترسی برای سایت شما استفاده می‌شوند، می‌توانید پاسخ آن را در بخش راهنما پیدا کنید. ','Documentation.'=>'مستندات.','Font Size Feature:'=>'ویژگی سایز نوشته ها:','Line Height Feature:'=>'ویژگی فاصله بین خطوط:','Letter Spacing Feature:'=>'ویژگی فاصله بین حروف:','Dyslexia Mask Feature:'=>'ویژگی ماسک خوانش پریشی:','Grayscale Page Feature:'=>'ویژگی صفحه در مقیاس خاکستری:','Contrast Feature:'=>'ویژگی کنتراست:','Negative Feature:'=>'ویژگی نگاتیو:','Underlined Links Feature:'=>'ویژگی لینک های زیر خط دار:','Highlight Links Feature:'=>'ویژگی لینک های برجسته:','Grayscale Images Feature:'=>'ویژگی تصاویر در مقیاس خاکستری:','Black and white Feature:'=>'ویژگی سیاه و سفید:','Style Settings'=>'تنظیمات ظاهری','Customize the plugins appearance to match your taste and needs using the style settings. For more information on each appearance variable, refer to the'=>'تنظیمات ظاهری افزونه را برای مطابقت با سلیقه و نیازهای خود با استفاده از تنظیمات طرح و رنگ سفارشی کنید. برای کسب اطلاعات بیشتر در مورد هر متغیر ظاهری، به بخش راهنما مراجعه کنید','Positionable by User:'=>'قابلیت جابه جایی توسط کاربر:','Enabling this option allows users to freely move the accessibility plugin around the page on desktop devices. Please note that this feature is not available on mobile devices.'=>'فعال کردن این گزینه به کاربران امکان می دهد تا افزونه دسترس پذیری را به صورت آزادانه در صفحه وب بر روی دستگاه های دسکتاپ جابجا کنند. لطفا توجه داشته باشید که این ویژگی روی دستگاه های تلفن همراه در دسترس نیست.','Plugin Position:'=>'جایگاه افزونه:','Bottom Left Corner'=>'گوشه پایین چپ','Bottom Right Corner'=>'گوشه پایین راست','Top Left Corner'=>'گوشه بالا چپ','Top Right Corner'=>'گوشه بالا راست','Background Color: '=>'رنگ پس زمینه: ','Background color of plugin and logo border.'=>'رنگ پس زمینه افزونه و حاشیه لوگو.','Labels Color: '=>'رنگ برچسب ها: ','Color of the labels or name of each feature and Plugin name to.'=>'رنگ برچسب ها یا نام هر ویژگی و همچنین نام افزونه.','Divider Line Color: '=>'رنگ خط جداکننده: ','Color of plugin header & features section divider.'=>'رنگ هدر افزونه و جداکننده بخش ویژگی‌ها.','Plugin Logo Color: '=>'رنگ لوگو افزونه: ','Color Scheme for Plugin Logo.'=>'رنگ بندی برای لوگوی پلاگین.','Accent Color: '=>'رنگ تاکیدی: ','Color scheme for:'=>'رنگ بندی برای:','Active features and their toggle buttons on hover.'=>'ویژگی های فعال و دکمه های تغییر وضعیت آنها هنگام هاور.','Dyslexia reading mask bars'=>'نوار بالا و پایین ماسک خوانش پریشی','‌Buttons Color (Reset/Close):'=>'رنگ دکمه ها ( بستن/بازنشانی):','Buttons Hover Color (Reset/Close): '=>'رنگ هاور دکمه ها (بستن/بازنشانی): ','Reset settings'=>'بازنشانی تنظیمات','Accessibility Tools Version: '=>'ابزار دسترس پذیری، ویرایش: ','Developed by'=>'توسعه یافته توسط','Meacodes Accessibility Tools'=>'ابزار دسترس پذیری مئاکدز','Mea Accessibility'=>'دسترس پذیری مئا','Settings'=>'تنظیمات','https://www.meacodes.com/accessibility'=>'https://www.meacodes.com/accessibility','This is an accessibility tools for people with disabilities to use the web easily.'=>'این ابزارهای دسترسی‌پذیری برای افراد دارای معلولیت برای استفاده آسان از وب است.افزونه دسترس پذیری برای افرادی که به واسطه مشکلات بینایی و شناختی برای استفاده از دنیای وب دچار چالش های مختلفی هستند.','Meacodes'=>'Meacodes','https://www.meacodes.com'=>'https://www.meacodes.com','Advanced Analytics & Accessibility Insights'=>'تحلیل‌های پیشرفته و بینش‌های دسترسی‌پذیری','Auto Translate – Seamless Multilingual Experience'=>'ترجمه خودکار – تجربه چندزبانه بی‌درز','Banner dismissed successfully'=>'بنر با موفقیت رد شد','Close banner'=>'بستن بنر','Complete Accessibility Issue Summary for Your Website'=>'خلاصه کامل مسائل دسترسی‌پذیری برای وب‌سایت شما','Comprehensive WCAG 2.1 Issue Detection & Solutions'=>'تشخیص و راه‌حل‌های جامع مسائل WCAG 2.1','Effortless Dark & Light Mode Customization'=>'سفارشی‌سازی آسان حالت تاریک و روشن','Endless Customization'=>'سفارشی‌سازی بی‌پایان','Flexible Fonts — Google & Custom Options'=>'فونت‌های انعطاف‌پذیر — گزینه‌های Google و سفارشی','Fully Customizable Appearance & Theme Control'=>'ظاهر کاملاً قابل سفارشی‌سازی و کنترل تم','Insufficient permissions'=>'مجوزهای ناکافی','Meacodes Development Solutions'=>'راه‌حل‌های توسعه Meacodes','Meacodes Pro Badge'=>'نشان Meacodes Pro','Modern Mobile First Responsive Design'=>'طراحی ریسپانسیو مدرن Mobile First','Page Structure Overview'=>'نمای کلی ساختار صفحه','Personalized Accessibility Profiles for Every User'=>'پروفایل‌های دسترسی‌پذیری شخصی‌سازی شده برای هر کاربر','Plugin Button Border Radius:'=>'شعاع حاشیه دکمه افزونه:','Plugin Button Icon Size:'=>'اندازه آیکون دکمه افزونه:','Plugin Button Margin:'=>'حاشیه دکمه افزونه:','Plugin Button Size:'=>'اندازه دکمه افزونه:','Plugin button Color: '=>'رنگ دکمه افزونه: ','Professional Keyboard Navigation'=>'ناوبری حرفه‌ای صفحه‌کلید','Real-Time Website Performance Analysis'=>'تحلیل عملکرد وب‌سایت در زمان واقعی','Security check failed'=>'بررسی امنیت ناموفق بود','Smart Screen Reader Integration'=>'یکپارچه‌سازی هوشمند صفحه‌خوان','Smart Site Search Engine'=>'موتور جستجوی هوشمند سایت','The upcoming version introduces advanced features like:'=>'نسخه آینده ویژگی‌های پیشرفته‌ای مانند:','WordPress Performance & Security Score'=>'امتیاز عملکرد و امنیت WordPress','🎉 Congratulations!'=>'🎉 تبریک!','👉 Join Campaign at Meacodes.com'=>'👉 به کمپین در Meacodes.com بپیوندید','Attention'=>'توجه','We updated the plugin button logic to enable more customization. If after updating it does not work on your site, this is likely a cache issue. Please clear your server and browser cache, then refresh the page.'=>'منطق دکمه افزونه را برای امکان سفارشی‌سازی بیشتر به‌روزرسانی کردیم. اگر پس از به‌روزرسانی در سایت شما کار نمی‌کند، این احتمالاً مشکل کش است. لطفاً کش سرور و مرورگر خود را پاک کنید، سپس صفحه را تازه کنید.','💎 Register your website now in our Airdrop Campaign to claim your exclusive rewards and upcoming discounts!'=>'💎 وب‌سایت خود را الان در کمپین ایردراپ ما ثبت کنید تا پاداش‌های انحصاری و تخفیف‌های آینده خود را دریافت کنید!','Because you\'re using the %s plugin, you\'ve earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!'=>'چون شما از افزونه ابزارهای دسترسی‌پذیری Meacodes استفاده می‌کنید، یک نشان انحصاری برای اشتراک Pro Version 2 سه ماهه کسب کرده‌اید — به زودی راه‌اندازی می‌شود!','You\'ve been recognized as an Early Supporter of Meacodes Accessibility Tools — a special thank-you to everyone helping us build a more accessible web 🌍'=>'شما به عنوان حامی اولیه ابزارهای دسترسی‌پذیری Meacodes شناخته شده‌اید — تشکر ویژه از همه کسانی که به ما در ساخت وب دسترسی‌پذیرتر کمک می‌کنند 🌍','With the upcoming Pro Version 2, you\'ll unlock early-access privileges such as:'=>'با نسخه Pro Version 2 آینده، امتیازات دسترسی زودهنگام مانند موارد زیر را باز خواهید کرد:','Modern mobile-first responsive design'=>'طراحی واکنش‌گرای مدرن موبایل-اول','Smart accessibility enhancements'=>'بهبودهای هوشمند دسترسی‌پذیری','WCAG 2.1 issue detection & analytics'=>'تشخیص مسائل WCAG 2.1 و تجزیه و تحلیل','Deep customization options'=>'گزینه‌های سفارشی‌سازی عمیق','Your Early Supporter Badge will be verified automatically during the Pro 2 rollout. Stay tuned and learn more about the upcoming release at'=>'نشان حامی اولیه شما به طور خودکار در طول راه‌اندازی Pro 2 تأیید خواهد شد. منتظر بمانید و بیشتر در مورد انتشار آینده در','👉 meacodes.com'=>'👉 meacodes.com','This notice will hide for 24 hours once dismissed.'=>'این اعلان پس از رد شدن به مدت 24 ساعت پنهان خواهد شد.','You\'ve been recognized as an %s of Meacodes Accessibility Tools.'=>'شما به عنوان %s ابزارهای دسترسی‌پذیری Meacodes شناخته شده‌اید.','As part of the upcoming %s rollout, early supporters will receive an exclusive %s and extended Pro access privileges.'=>'به عنوان بخشی از راه‌اندازی آینده %s، حامیان اولیه %s انحصاری و امتیازات دسترسی Pro گسترده دریافت خواهند کرد.','To learn how the badge system works and how sites are verified,'=>'برای یادگیری نحوه عملکرد سیستم نشان و نحوه تأیید سایت‌ها،','👉 visit meacodes.com/early-supporter'=>'👉 از meacodes.com/early-supporter بازدید کنید']];
  • meacodes-accessibility-tools/trunk/languages/meacodes-accessibility-tools-fa_IR.po

    r3378044 r3378438  
    696696msgstr "تحلیل‌های پیشرفته و بینش‌های دسترسی‌پذیری"
    697697
    698 msgid "Airdrop Campaign Active!"
    699 msgstr "کمپین ایردراپ فعال است!"
    700698
    701699msgid "Auto Translate – Seamless Multilingual Experience"
     
    729727msgstr "مجوزهای ناکافی"
    730728
    731 msgid "Join Now"
    732 msgstr "الان بپیوندید"
    733 
    734 msgid "Join our exclusive airdrop and earn rewards. Limited time offer!"
    735 msgstr "به ایردراپ انحصاری ما بپیوندید و پاداش کسب کنید. پیشنهاد محدود زمانی!"
     729
    736730
    737731msgid "Meacodes Development Solutions"
     
    803797msgid "Because you're using the %s plugin, you've earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!"
    804798msgstr "چون شما از افزونه ابزارهای دسترسی‌پذیری Meacodes استفاده می‌کنید، یک نشان انحصاری برای اشتراک Pro Version 2 سه ماهه کسب کرده‌اید — به زودی راه‌اندازی می‌شود!"
     799
     800msgid "You've been recognized as an Early Supporter of Meacodes Accessibility Tools — a special thank-you to everyone helping us build a more accessible web 🌍"
     801msgstr "شما به عنوان حامی اولیه ابزارهای دسترسی‌پذیری Meacodes شناخته شده‌اید — تشکر ویژه از همه کسانی که به ما در ساخت وب دسترسی‌پذیرتر کمک می‌کنند 🌍"
     802
     803msgid "With the upcoming Pro Version 2, you'll unlock early-access privileges such as:"
     804msgstr "با نسخه Pro Version 2 آینده، امتیازات دسترسی زودهنگام مانند موارد زیر را باز خواهید کرد:"
     805
     806msgid "Modern mobile-first responsive design"
     807msgstr "طراحی واکنش‌گرای مدرن موبایل-اول"
     808
     809msgid "Smart accessibility enhancements"
     810msgstr "بهبودهای هوشمند دسترسی‌پذیری"
     811
     812msgid "WCAG 2.1 issue detection & analytics"
     813msgstr "تشخیص مسائل WCAG 2.1 و تجزیه و تحلیل"
     814
     815msgid "Deep customization options"
     816msgstr "گزینه‌های سفارشی‌سازی عمیق"
     817
     818msgid "Your Early Supporter Badge will be verified automatically during the Pro 2 rollout. Stay tuned and learn more about the upcoming release at"
     819msgstr "نشان حامی اولیه شما به طور خودکار در طول راه‌اندازی Pro 2 تأیید خواهد شد. منتظر بمانید و بیشتر در مورد انتشار آینده در"
     820
     821msgid "👉 meacodes.com"
     822msgstr "👉 meacodes.com"
     823
     824msgid "This notice will hide for 24 hours once dismissed."
     825msgstr "این اعلان پس از رد شدن به مدت 24 ساعت پنهان خواهد شد."
     826
     827msgid "You've been recognized as an %s of Meacodes Accessibility Tools."
     828msgstr "شما به عنوان %s ابزارهای دسترسی‌پذیری Meacodes شناخته شده‌اید."
     829
     830msgid "As part of the upcoming %s rollout, early supporters will receive an exclusive %s and extended Pro access privileges."
     831msgstr "به عنوان بخشی از راه‌اندازی آینده %s، حامیان اولیه %s انحصاری و امتیازات دسترسی Pro گسترده دریافت خواهند کرد."
     832
     833msgid "To learn how the badge system works and how sites are verified,"
     834msgstr "برای یادگیری نحوه عملکرد سیستم نشان و نحوه تأیید سایت‌ها،"
     835
     836msgid "👉 visit meacodes.com/early-supporter"
     837msgstr "👉 از meacodes.com/early-supporter بازدید کنید"
  • meacodes-accessibility-tools/trunk/languages/meacodes-accessibility-tools-fr_FR.l10n.php

    r3378044 r3378438  
    11<?php
    22// generated by Poedit from meacodes-accessibility-tools-fr_FR.po, do not edit directly
    3 return ['domain'=>NULL,'plural-forms'=>'nplurals=2; plural=(n > 1);','language'=>'fr_FR','pot-creation-date'=>'2024-06-07 06:53-0700','po-revision-date'=>'2025-10-14 13:58+0330','translation-revision-date'=>'2025-10-14 13:58+0330','project-id-version'=>'Meacodes Accessibility Plugin','x-generator'=>'Poedit 3.7','messages'=>['Accessibility'=>'Accessibilité','Drag and move the accessibility box'=>'Glisser et déplacer le cadre d\'accessibilité','Open/Close Accessibility Options'=>'Ouvrir/Fermer les options d\'accessibilité','Click to read GDPR Notice'=>'Cliquez pour lire l\'Avis de RGPD','Font Size'=>'Taille de police','‌Normal'=>'Normal','Line Height'=>'Interligne','Normal'=>'Normal','Letter Spacing'=>'Espacement des lettres','Dyslexia Mask'=>'Filtre de la dyslexie','Grayscale Page'=>'Page en nuances de gris','Contrast'=>'Contraste','Negative'=>'Négatif','Underlined Links'=>'Souligner les liens','Highlight Links'=>'Surligner les liens','Grayscale Images'=>'Images en nuances de gris','Black and white'=>'Noir et blanc','Developed by '=>'Développé par ','Reset'=>'Réinitialiser','Close'=>'Fermé','GDPR Notice:'=>'Avis relatif au RGPD:','This plugin uses cookies to enhance your experience and provide personalized accessibility settings. These cookies are stored in your browser and allow us to remember your preferences for font size, color schemes, and other accessibility features. By using this plugin, you consent to the use of cookies for these purposes. You can delete or block cookies in your browser settings at any time. Please note that doing so may affect your experience on the site.'=>'Ce plugin utilise des cookies pour améliorer votre expérience et vous proposer des paramètres d\'accessibilité personnalisés. Ces cookies sont stockés dans votre navigateur et nous permettent de mémoriser vos préférences en matière de taille de police, de couleurs et d\'autres fonctionnalités d\'accessibilité. En utilisant ce plugin, vous consentez à l\'utilisation de cookies à ces fins. Vous pouvez supprimer ou bloquer les cookies dans les paramètres de votre navigateur à tout moment. Veuillez noter que cela pourrait affecter votre navigation sur le site.','jQuery is not loaded!'=>'jQuery is not loaded!','General'=>'Général','Features'=>'Fonctionnalités','Style'=>'Style','Documentation'=>'Documentation','Support'=>'Assistance technique','Donation'=>'Don','changelog'=>'registre des changements','General Settings'=>'Paramètres généraux','Enable or Disable Meacodes Accessibility Tools:'=>'Activer ou Désactiver les outils d\'accessibilité Meacodes:','Plugin Name:'=>'Nom du plugin:','This means that the plugin name is a default and automatic translation of the word Accessibility.'=>'Cela signifie que le nom du plugin est une traduction automatique par défaut du mot Accessibilité.','This name will be displayed opposite the plugin icon in the header section when the accessibility plugin is opened by the user on your website.'=>'Ce nom sera affiché en face de l\'icône du plugin dans la section d\'en-tête lorsque le plugin d\'accessibilité sera ouvert par l\'utilisateur sur votre site Web.','If you do not want any text to be displayed in that section, Clear default name and save changes.'=>'Si vous ne voulez pas qu\'un texte s\'affiche dans cette section, supprimez le nom par défaut et enregistrez les modifications.','If your site is multilingual (using Polylang), keep in mind that if you change this name, the name you choose will be displayed without translation and fixed in all languages unless you rebuild the plugins language file with Polylang and enter the translation of the chosen name. Also, if you want the chosen name to revert to the default name and be displayed translated in any language, reset settings once.'=>'Si votre site est multilingue (en utilisant Polylang), sachez que si vous modifiez ce nom, le nouveau nom choisi s\'affichera sans traduction et sera figé dans toutes les langues. Vous devrez alors reconstruire le fichier de langue du plugin avec Polylang et saisir la traduction du nom choisi. De plus, si vous souhaitez que le nom revienne au nom par défaut et qu\'il soit traduit dans toutes les langues, il vous suffit de réinitialiser les paramètres.','Enable or Disable GDPR Notice:'=>'Activer ou Désactiver l\'Avis RGPD:','Developed by label:'=>'Développé par Étiquette:','Enable "Developed by" label'=>'Afficher "Développé par" Étiquette','Please turn the Developed by label on to support us and help the project move forward. '=>'Veuillez activer l\'étiquette "Développé par" pour nous soutenir et faire avancer le projet. ','You can also buy us a coffee on the'=>'Pour nous soutenir, vous pouvez également faire un don sur la','Donation page.'=>'Page Dons.','Thanks for your supports. '=>'Merci pour votre soutien. ','The Accessibility plugin provides a set of tools and features to create an easier and more inclusive user experience for users with various needs. You can enable or disable each of these features individually.'=>'Le plugin Accessibilité fournit un ensemble d\'outils et de fonctionnalités pour créer une expérience utilisateur plus facile et plus inclusive pour les personnes ayant des besoins variés. Vous pouvez activer ou désactiver chacune de ces fonctionnalités individuellement.','To find out which plugin features are used to solve which accessibility issues for your site, you can refer to the '=>'Pour savoir quelles fonctionnalités de plugin permettent de résoudre quels problèmes d\'accessibilité sur votre site, vous pouvez consulter la ','Documentation.'=>'Documentation.','Font Size Feature:'=>'Fonctionnalité de taille de police:','Line Height Feature:'=>'Fonctionnalité d\'interligne:','Letter Spacing Feature:'=>'Fonctionnement d\'espacement des lettres:','Dyslexia Mask Feature:'=>'Fonctionnalité d\'aide à la dyslexie:','Grayscale Page Feature:'=>'Fonctionnalité de page en nuances de gris:','Contrast Feature:'=>'Fonctionnalité de contraste:','Negative Feature:'=>'Fonctionnalité Négative:','Underlined Links Feature:'=>'Fonctionnalité de liens soulignés:','Highlight Links Feature:'=>'Fonctionnalité de surlignage de liens:','Grayscale Images Feature:'=>'Fonctionnalité Niveaux de Gris:','Black and white Feature:'=>'Fonctionnalité Noir et Blanc:','Style Settings'=>'Paramètres de style','Customize the plugins appearance to match your taste and needs using the style settings. For more information on each appearance variable, refer to the'=>'Personnalisez l\'apparence des plugins pour qu\'elle corresponde à vos goûts et à vos besoins à l\'aide des paramètres de style. Pour plus d\'informations sur chaque variable d\'apparence, consultez la','Positionable by User:'=>'Positionnable par l\'utilisateur:','Enabling this option allows users to freely move the accessibility plugin around the page on desktop devices. Please note that this feature is not available on mobile devices.'=>'Activer cette option permet aux utilisateurs de déplacer librement le plugin d\'accessibilité sur la page sur les appareils de bureau. Veuillez noter que cette fonctionnalité n\'est pas disponible sur les appareils mobiles.','Plugin Position:'=>'Position du plugin:','Bottom Left Corner'=>'Coin Inférieur Gauche','Bottom Right Corner'=>'Coin Inférieur Droit','Top Left Corner'=>'Coin Supérieur Gauche','Top Right Corner'=>'Coin Supérieur Droit','Background Color: '=>'Couleur de fond: ','Background color of plugin and logo border.'=>'Couleur de fond du plugin et bordure du logo.','Labels Color: '=>'Couleur des étiquettes: ','Color of the labels or name of each feature and Plugin name to.'=>'Couleur des étiquettes ou nom de chaque fonctionnalité et nom du Plugin.Couleur des étiquettes ou nom de chaque fonctionnalité et nom du plugin.','Divider Line Color: '=>'Couleur de la ligne de séparation: ','Color of plugin header & features section divider.'=>'Couleur du séparateur de section d\'en-tête et fonctionnalités du plugin.Couleur de l\'en-tête du plugin et du séparateur de section des fonctionnalités.','Plugin Logo Color: '=>'Couleur du logo du plugin: ','Color Scheme for Plugin Logo.'=>'Gamme de couleurs pour le logo du plugin.','Accent Color: '=>'Couleur d\'accent: ','Color scheme for:'=>'Palette de couleurs pour:','Active features and their toggle buttons on hover.'=>'Fonctionnalités actives et leurs boutons de basculement au survol.Fonctionnalités actives et leurs boutons bascule au passage de la souris.','Dyslexia reading mask bars'=>'Barres de couleur pour la lecture avec dyslexie','‌Buttons Color (Reset/Close):'=>'Couleur des boutons (Réinitialiser/Fermer):','Buttons Hover Color (Reset/Close): '=>'Couleur de survol des boutons (Réinitialiser/Fermer): ','Reset settings'=>'Réinitialiser les paramètres','Accessibility Tools Version: '=>'Version des outils d\'accessibilité: ','Developed by'=>'Développé par','Meacodes Accessibility Tools'=>'Outils d\'accessibilité Meacodes','Mea Accessibility'=>'Accessibilité Mea','Settings'=>'Réglages','https://www.meacodes.com/accessibility'=>'https://www.meacodes.com/accessibility','This is an accessibility tools for people with disabilities to use the web easily.'=>'Il s\'agit d\'un Plugin d\'accessibilité permettant aux personnes handicapées d\'utiliser le Web facilement.','Meacodes'=>'Meacodes','https://www.meacodes.com'=>'https://www.meacodes.com','Advanced Analytics & Accessibility Insights'=>'Analyses Avancées et Perspectives d\'Accessibilité','Airdrop Campaign Active!'=>'Campagne Airdrop Active !','Auto Translate – Seamless Multilingual Experience'=>'Traduction Automatique – Expérience Multilingue Transparente','Banner dismissed successfully'=>'Bannière rejetée avec succès','Close banner'=>'Fermer la bannière','Complete Accessibility Issue Summary for Your Website'=>'Résumé Complet des Problèmes d\'Accessibilité pour Votre Site Web','Comprehensive WCAG 2.1 Issue Detection & Solutions'=>'Détection et Solutions Complètes de Problèmes WCAG 2.1','Effortless Dark & Light Mode Customization'=>'Personnalisation de Mode Sombre et Clair Sans Effort','Endless Customization'=>'Personnalisation Infinie','Flexible Fonts — Google & Custom Options'=>'Polices Flexibles — Options Google et Personnalisées','Fully Customizable Appearance & Theme Control'=>'Apparence Entièrement Personnalisable et Contrôle de Thème','Insufficient permissions'=>'Permissions insuffisantes','Join Now'=>'Rejoindre Maintenant','Join our exclusive airdrop and earn rewards. Limited time offer!'=>'Rejoignez notre airdrop exclusif et gagnez des récompenses. Offre limitée dans le temps !','Meacodes Development Solutions'=>'Solutions de Développement Meacodes','Meacodes Pro Badge'=>'Badge Meacodes Pro','Modern Mobile First Responsive Design'=>'Design Responsive Moderne Mobile First','Page Structure Overview'=>'Aperçu de la Structure de Page','Personalized Accessibility Profiles for Every User'=>'Profils d\'Accessibilité Personnalisés pour Chaque Utilisateur','Plugin Button Border Radius:'=>'Rayon de Bordure du Bouton du Plugin :','Plugin Button Icon Size:'=>'Taille de l\'Icône du Bouton du Plugin :','Plugin Button Margin:'=>'Marge du Bouton du Plugin :','Plugin Button Size:'=>'Taille du Bouton du Plugin :','Plugin button Color: '=>'Couleur du Bouton du Plugin : ','Professional Keyboard Navigation'=>'Navigation Clavier Professionnelle','Real-Time Website Performance Analysis'=>'Analyse de Performance de Site Web en Temps Réel','Security check failed'=>'Vérification de sécurité échouée','Smart Screen Reader Integration'=>'Intégration Intelligente de Lecteur d\'Écran','Smart Site Search Engine'=>'Moteur de Recherche Intelligent du Site','The upcoming version introduces advanced features like:'=>'La prochaine version introduit des fonctionnalités avancées comme :','WordPress Performance & Security Score'=>'Score de Performance et Sécurité WordPress','🎉 Congratulations!'=>'🎉 Félicitations !','👉 Join Campaign at Meacodes.com'=>'👉 Rejoindre la Campagne sur Meacodes.com','Attention'=>'Attention','We updated the plugin button logic to enable more customization. If after updating it does not work on your site, this is likely a cache issue. Please clear your server and browser cache, then refresh the page.'=>'Nous avons mis à jour la logique du bouton du plugin pour permettre plus de personnalisation. Si après la mise à jour il ne fonctionne pas sur votre site, c\'est probablement un problème de cache. Veuillez vider le cache de votre serveur et navigateur, puis actualiser la page.','💎 Register your website now in our Airdrop Campaign to claim your exclusive rewards and upcoming discounts!'=>'💎 Enregistrez votre site web maintenant dans notre Campagne Airdrop pour réclamer vos récompenses exclusives et remises à venir !','Because you\'re using the %s plugin, you\'ve earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!'=>'Parce que vous utilisez le plugin Outils d\'Accessibilité Meacodes, vous avez gagné un badge exclusif pour un abonnement Pro Version 2 de 3 mois — bientôt disponible !']];
     3return ['domain'=>NULL,'plural-forms'=>'nplurals=2; plural=(n > 1);','language'=>'fr_FR','pot-creation-date'=>'2024-06-07 06:53-0700','po-revision-date'=>'2025-10-14 13:58+0330','translation-revision-date'=>'2025-10-14 13:58+0330','project-id-version'=>'Meacodes Accessibility Plugin','x-generator'=>'Poedit 3.7','messages'=>['Accessibility'=>'Accessibilité','Drag and move the accessibility box'=>'Glisser et déplacer le cadre d\'accessibilité','Open/Close Accessibility Options'=>'Ouvrir/Fermer les options d\'accessibilité','Click to read GDPR Notice'=>'Cliquez pour lire l\'Avis de RGPD','Font Size'=>'Taille de police','‌Normal'=>'Normal','Line Height'=>'Interligne','Normal'=>'Normal','Letter Spacing'=>'Espacement des lettres','Dyslexia Mask'=>'Filtre de la dyslexie','Grayscale Page'=>'Page en nuances de gris','Contrast'=>'Contraste','Negative'=>'Négatif','Underlined Links'=>'Souligner les liens','Highlight Links'=>'Surligner les liens','Grayscale Images'=>'Images en nuances de gris','Black and white'=>'Noir et blanc','Developed by '=>'Développé par ','Reset'=>'Réinitialiser','Close'=>'Fermé','GDPR Notice:'=>'Avis relatif au RGPD:','This plugin uses cookies to enhance your experience and provide personalized accessibility settings. These cookies are stored in your browser and allow us to remember your preferences for font size, color schemes, and other accessibility features. By using this plugin, you consent to the use of cookies for these purposes. You can delete or block cookies in your browser settings at any time. Please note that doing so may affect your experience on the site.'=>'Ce plugin utilise des cookies pour améliorer votre expérience et vous proposer des paramètres d\'accessibilité personnalisés. Ces cookies sont stockés dans votre navigateur et nous permettent de mémoriser vos préférences en matière de taille de police, de couleurs et d\'autres fonctionnalités d\'accessibilité. En utilisant ce plugin, vous consentez à l\'utilisation de cookies à ces fins. Vous pouvez supprimer ou bloquer les cookies dans les paramètres de votre navigateur à tout moment. Veuillez noter que cela pourrait affecter votre navigation sur le site.','jQuery is not loaded!'=>'jQuery is not loaded!','General'=>'Général','Features'=>'Fonctionnalités','Style'=>'Style','Documentation'=>'Documentation','Support'=>'Assistance technique','Donation'=>'Don','changelog'=>'registre des changements','General Settings'=>'Paramètres généraux','Enable or Disable Meacodes Accessibility Tools:'=>'Activer ou Désactiver les outils d\'accessibilité Meacodes:','Plugin Name:'=>'Nom du plugin:','This means that the plugin name is a default and automatic translation of the word Accessibility.'=>'Cela signifie que le nom du plugin est une traduction automatique par défaut du mot Accessibilité.','This name will be displayed opposite the plugin icon in the header section when the accessibility plugin is opened by the user on your website.'=>'Ce nom sera affiché en face de l\'icône du plugin dans la section d\'en-tête lorsque le plugin d\'accessibilité sera ouvert par l\'utilisateur sur votre site Web.','If you do not want any text to be displayed in that section, Clear default name and save changes.'=>'Si vous ne voulez pas qu\'un texte s\'affiche dans cette section, supprimez le nom par défaut et enregistrez les modifications.','If your site is multilingual (using Polylang), keep in mind that if you change this name, the name you choose will be displayed without translation and fixed in all languages unless you rebuild the plugins language file with Polylang and enter the translation of the chosen name. Also, if you want the chosen name to revert to the default name and be displayed translated in any language, reset settings once.'=>'Si votre site est multilingue (en utilisant Polylang), sachez que si vous modifiez ce nom, le nouveau nom choisi s\'affichera sans traduction et sera figé dans toutes les langues. Vous devrez alors reconstruire le fichier de langue du plugin avec Polylang et saisir la traduction du nom choisi. De plus, si vous souhaitez que le nom revienne au nom par défaut et qu\'il soit traduit dans toutes les langues, il vous suffit de réinitialiser les paramètres.','Enable or Disable GDPR Notice:'=>'Activer ou Désactiver l\'Avis RGPD:','Developed by label:'=>'Développé par Étiquette:','Enable "Developed by" label'=>'Afficher "Développé par" Étiquette','Please turn the Developed by label on to support us and help the project move forward. '=>'Veuillez activer l\'étiquette "Développé par" pour nous soutenir et faire avancer le projet. ','You can also buy us a coffee on the'=>'Pour nous soutenir, vous pouvez également faire un don sur la','Donation page.'=>'Page Dons.','Thanks for your supports. '=>'Merci pour votre soutien. ','The Accessibility plugin provides a set of tools and features to create an easier and more inclusive user experience for users with various needs. You can enable or disable each of these features individually.'=>'Le plugin Accessibilité fournit un ensemble d\'outils et de fonctionnalités pour créer une expérience utilisateur plus facile et plus inclusive pour les personnes ayant des besoins variés. Vous pouvez activer ou désactiver chacune de ces fonctionnalités individuellement.','To find out which plugin features are used to solve which accessibility issues for your site, you can refer to the '=>'Pour savoir quelles fonctionnalités de plugin permettent de résoudre quels problèmes d\'accessibilité sur votre site, vous pouvez consulter la ','Documentation.'=>'Documentation.','Font Size Feature:'=>'Fonctionnalité de taille de police:','Line Height Feature:'=>'Fonctionnalité d\'interligne:','Letter Spacing Feature:'=>'Fonctionnement d\'espacement des lettres:','Dyslexia Mask Feature:'=>'Fonctionnalité d\'aide à la dyslexie:','Grayscale Page Feature:'=>'Fonctionnalité de page en nuances de gris:','Contrast Feature:'=>'Fonctionnalité de contraste:','Negative Feature:'=>'Fonctionnalité Négative:','Underlined Links Feature:'=>'Fonctionnalité de liens soulignés:','Highlight Links Feature:'=>'Fonctionnalité de surlignage de liens:','Grayscale Images Feature:'=>'Fonctionnalité Niveaux de Gris:','Black and white Feature:'=>'Fonctionnalité Noir et Blanc:','Style Settings'=>'Paramètres de style','Customize the plugins appearance to match your taste and needs using the style settings. For more information on each appearance variable, refer to the'=>'Personnalisez l\'apparence des plugins pour qu\'elle corresponde à vos goûts et à vos besoins à l\'aide des paramètres de style. Pour plus d\'informations sur chaque variable d\'apparence, consultez la','Positionable by User:'=>'Positionnable par l\'utilisateur:','Enabling this option allows users to freely move the accessibility plugin around the page on desktop devices. Please note that this feature is not available on mobile devices.'=>'Activer cette option permet aux utilisateurs de déplacer librement le plugin d\'accessibilité sur la page sur les appareils de bureau. Veuillez noter que cette fonctionnalité n\'est pas disponible sur les appareils mobiles.','Plugin Position:'=>'Position du plugin:','Bottom Left Corner'=>'Coin Inférieur Gauche','Bottom Right Corner'=>'Coin Inférieur Droit','Top Left Corner'=>'Coin Supérieur Gauche','Top Right Corner'=>'Coin Supérieur Droit','Background Color: '=>'Couleur de fond: ','Background color of plugin and logo border.'=>'Couleur de fond du plugin et bordure du logo.','Labels Color: '=>'Couleur des étiquettes: ','Color of the labels or name of each feature and Plugin name to.'=>'Couleur des étiquettes ou nom de chaque fonctionnalité et nom du Plugin.Couleur des étiquettes ou nom de chaque fonctionnalité et nom du plugin.','Divider Line Color: '=>'Couleur de la ligne de séparation: ','Color of plugin header & features section divider.'=>'Couleur du séparateur de section d\'en-tête et fonctionnalités du plugin.Couleur de l\'en-tête du plugin et du séparateur de section des fonctionnalités.','Plugin Logo Color: '=>'Couleur du logo du plugin: ','Color Scheme for Plugin Logo.'=>'Gamme de couleurs pour le logo du plugin.','Accent Color: '=>'Couleur d\'accent: ','Color scheme for:'=>'Palette de couleurs pour:','Active features and their toggle buttons on hover.'=>'Fonctionnalités actives et leurs boutons de basculement au survol.Fonctionnalités actives et leurs boutons bascule au passage de la souris.','Dyslexia reading mask bars'=>'Barres de couleur pour la lecture avec dyslexie','‌Buttons Color (Reset/Close):'=>'Couleur des boutons (Réinitialiser/Fermer):','Buttons Hover Color (Reset/Close): '=>'Couleur de survol des boutons (Réinitialiser/Fermer): ','Reset settings'=>'Réinitialiser les paramètres','Accessibility Tools Version: '=>'Version des outils d\'accessibilité: ','Developed by'=>'Développé par','Meacodes Accessibility Tools'=>'Outils d\'accessibilité Meacodes','Mea Accessibility'=>'Accessibilité Mea','Settings'=>'Réglages','https://www.meacodes.com/accessibility'=>'https://www.meacodes.com/accessibility','This is an accessibility tools for people with disabilities to use the web easily.'=>'Il s\'agit d\'un Plugin d\'accessibilité permettant aux personnes handicapées d\'utiliser le Web facilement.','Meacodes'=>'Meacodes','https://www.meacodes.com'=>'https://www.meacodes.com','Advanced Analytics & Accessibility Insights'=>'Analyses Avancées et Perspectives d\'Accessibilité','Auto Translate – Seamless Multilingual Experience'=>'Traduction Automatique – Expérience Multilingue Transparente','Banner dismissed successfully'=>'Bannière rejetée avec succès','Close banner'=>'Fermer la bannière','Complete Accessibility Issue Summary for Your Website'=>'Résumé Complet des Problèmes d\'Accessibilité pour Votre Site Web','Comprehensive WCAG 2.1 Issue Detection & Solutions'=>'Détection et Solutions Complètes de Problèmes WCAG 2.1','Effortless Dark & Light Mode Customization'=>'Personnalisation de Mode Sombre et Clair Sans Effort','Endless Customization'=>'Personnalisation Infinie','Flexible Fonts — Google & Custom Options'=>'Polices Flexibles — Options Google et Personnalisées','Fully Customizable Appearance & Theme Control'=>'Apparence Entièrement Personnalisable et Contrôle de Thème','Insufficient permissions'=>'Permissions insuffisantes','Meacodes Development Solutions'=>'Solutions de Développement Meacodes','Meacodes Pro Badge'=>'Badge Meacodes Pro','Modern Mobile First Responsive Design'=>'Design Responsive Moderne Mobile First','Page Structure Overview'=>'Aperçu de la Structure de Page','Personalized Accessibility Profiles for Every User'=>'Profils d\'Accessibilité Personnalisés pour Chaque Utilisateur','Plugin Button Border Radius:'=>'Rayon de Bordure du Bouton du Plugin :','Plugin Button Icon Size:'=>'Taille de l\'Icône du Bouton du Plugin :','Plugin Button Margin:'=>'Marge du Bouton du Plugin :','Plugin Button Size:'=>'Taille du Bouton du Plugin :','Plugin button Color: '=>'Couleur du Bouton du Plugin : ','Professional Keyboard Navigation'=>'Navigation Clavier Professionnelle','Real-Time Website Performance Analysis'=>'Analyse de Performance de Site Web en Temps Réel','Security check failed'=>'Vérification de sécurité échouée','Smart Screen Reader Integration'=>'Intégration Intelligente de Lecteur d\'Écran','Smart Site Search Engine'=>'Moteur de Recherche Intelligent du Site','The upcoming version introduces advanced features like:'=>'La prochaine version introduit des fonctionnalités avancées comme :','WordPress Performance & Security Score'=>'Score de Performance et Sécurité WordPress','🎉 Congratulations!'=>'🎉 Félicitations !','👉 Join Campaign at Meacodes.com'=>'👉 Rejoindre la Campagne sur Meacodes.com','Attention'=>'Attention','We updated the plugin button logic to enable more customization. If after updating it does not work on your site, this is likely a cache issue. Please clear your server and browser cache, then refresh the page.'=>'Nous avons mis à jour la logique du bouton du plugin pour permettre plus de personnalisation. Si après la mise à jour il ne fonctionne pas sur votre site, c\'est probablement un problème de cache. Veuillez vider le cache de votre serveur et navigateur, puis actualiser la page.','💎 Register your website now in our Airdrop Campaign to claim your exclusive rewards and upcoming discounts!'=>'💎 Enregistrez votre site web maintenant dans notre Campagne Airdrop pour réclamer vos récompenses exclusives et remises à venir !','Because you\'re using the %s plugin, you\'ve earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!'=>'Parce que vous utilisez le plugin Outils d\'Accessibilité Meacodes, vous avez gagné un badge exclusif pour un abonnement Pro Version 2 de 3 mois — bientôt disponible !','You\'ve been recognized as an Early Supporter of Meacodes Accessibility Tools — a special thank-you to everyone helping us build a more accessible web 🌍'=>'Vous avez été reconnu comme Early Supporter des Outils d\'Accessibilité Meacodes — un merci spécial à tous ceux qui nous aident à construire un web plus accessible 🌍','With the upcoming Pro Version 2, you\'ll unlock early-access privileges such as:'=>'Avec la Pro Version 2 à venir, vous débloquerez des privilèges d\'accès anticipé tels que:','Modern mobile-first responsive design'=>'Design responsive moderne mobile-first','Smart accessibility enhancements'=>'Améliorations intelligentes d\'accessibilité','WCAG 2.1 issue detection & analytics'=>'Détection de problèmes WCAG 2.1 et analyses','Deep customization options'=>'Options de personnalisation approfondies','Your Early Supporter Badge will be verified automatically during the Pro 2 rollout. Stay tuned and learn more about the upcoming release at'=>'Votre Badge Early Supporter sera vérifié automatiquement lors du déploiement Pro 2. Restez à l\'écoute et apprenez-en plus sur la prochaine version sur','👉 meacodes.com'=>'👉 meacodes.com','This notice will hide for 24 hours once dismissed.'=>'Cet avis sera masqué pendant 24 heures une fois rejeté.','You\'ve been recognized as an %s of Meacodes Accessibility Tools.'=>'Vous avez été reconnu comme %s des Outils d\'Accessibilité Meacodes.','As part of the upcoming %s rollout, early supporters will receive an exclusive %s and extended Pro access privileges.'=>'Dans le cadre du prochain déploiement de %s, les early supporters recevront un %s exclusif et des privilèges d\'accès Pro étendus.','To learn how the badge system works and how sites are verified,'=>'Pour apprendre comment fonctionne le système de badges et comment les sites sont vérifiés,','👉 visit meacodes.com/early-supporter'=>'👉 visitez meacodes.com/early-supporter']];
  • meacodes-accessibility-tools/trunk/languages/meacodes-accessibility-tools-fr_FR.po

    r3378044 r3378438  
    396396msgstr "Analyses Avancées et Perspectives d'Accessibilité"
    397397
    398 msgid "Airdrop Campaign Active!"
    399 msgstr "Campagne Airdrop Active !"
    400398
    401399msgid "Auto Translate – Seamless Multilingual Experience"
     
    429427msgstr "Permissions insuffisantes"
    430428
    431 msgid "Join Now"
    432 msgstr "Rejoindre Maintenant"
    433 
    434 msgid "Join our exclusive airdrop and earn rewards. Limited time offer!"
    435 msgstr "Rejoignez notre airdrop exclusif et gagnez des récompenses. Offre limitée dans le temps !"
     429
    436430
    437431msgid "Meacodes Development Solutions"
     
    694688#~ msgid "Powered by "
    695689#~ msgstr "Développé par "
     690
     691msgid "You've been recognized as an Early Supporter of Meacodes Accessibility Tools — a special thank-you to everyone helping us build a more accessible web 🌍"
     692msgstr "Vous avez été reconnu comme Early Supporter des Outils d'Accessibilité Meacodes — un merci spécial à tous ceux qui nous aident à construire un web plus accessible 🌍"
     693
     694msgid "With the upcoming Pro Version 2, you'll unlock early-access privileges such as:"
     695msgstr "Avec la Pro Version 2 à venir, vous débloquerez des privilèges d'accès anticipé tels que:"
     696
     697msgid "Modern mobile-first responsive design"
     698msgstr "Design responsive moderne mobile-first"
     699
     700msgid "Smart accessibility enhancements"
     701msgstr "Améliorations intelligentes d'accessibilité"
     702
     703msgid "WCAG 2.1 issue detection & analytics"
     704msgstr "Détection de problèmes WCAG 2.1 et analyses"
     705
     706msgid "Deep customization options"
     707msgstr "Options de personnalisation approfondies"
     708
     709msgid "Your Early Supporter Badge will be verified automatically during the Pro 2 rollout. Stay tuned and learn more about the upcoming release at"
     710msgstr "Votre Badge Early Supporter sera vérifié automatiquement lors du déploiement Pro 2. Restez à l'écoute et apprenez-en plus sur la prochaine version sur"
     711
     712msgid "👉 meacodes.com"
     713msgstr "👉 meacodes.com"
     714
     715msgid "This notice will hide for 24 hours once dismissed."
     716msgstr "Cet avis sera masqué pendant 24 heures une fois rejeté."
     717
     718msgid "You've been recognized as an %s of Meacodes Accessibility Tools."
     719msgstr "Vous avez été reconnu comme %s des Outils d'Accessibilité Meacodes."
     720
     721msgid "As part of the upcoming %s rollout, early supporters will receive an exclusive %s and extended Pro access privileges."
     722msgstr "Dans le cadre du prochain déploiement de %s, les early supporters recevront un %s exclusif et des privilèges d'accès Pro étendus."
     723
     724msgid "To learn how the badge system works and how sites are verified,"
     725msgstr "Pour apprendre comment fonctionne le système de badges et comment les sites sont vérifiés,"
     726
     727msgid "👉 visit meacodes.com/early-supporter"
     728msgstr "👉 visitez meacodes.com/early-supporter"
  • meacodes-accessibility-tools/trunk/languages/meacodes-accessibility-tools-it_IT.l10n.php

    r3378044 r3378438  
    11<?php
    22// generated by Poedit from meacodes-accessibility-tools-it_IT.po, do not edit directly
    3 return ['domain'=>NULL,'plural-forms'=>'nplurals=2; plural=(n != 1);','language'=>'it_IT','pot-creation-date'=>'2024-06-07 06:53-0700','po-revision-date'=>'2024-06-07 17:38+0330','translation-revision-date'=>'2024-06-07 17:38+0330','project-id-version'=>'Meacodes Accessibility Plugin','x-generator'=>'Poedit 3.7','messages'=>['Accessibility'=>'Accessibilità','Drag and move the accessibility box'=>'Trascina e sposta la casella di accessibilità','Open/Close Accessibility Options'=>'Apri/Chiudi Opzioni Accessibilità','Click to read GDPR Notice'=>'Clicca per leggere l\'Informativa GDPR','Font Size'=>'Dimensione carattere','‌Normal'=>'Normale','Line Height'=>'Altezza della linea','Normal'=>'Normale','Letter Spacing'=>'Spaziatura tra lettere','Dyslexia Mask'=>'Mascheramento della Dislessia','Grayscale Page'=>'Pagina in scala di grigi','Contrast'=>'Contrasto','Negative'=>'Negativo','Underlined Links'=>'Collegamenti sottolineati','Highlight Links'=>'Evidenzia collegamenti','Grayscale Images'=>'Immagini in scala di grigi','Black and white'=>'In bianco e nero','Developed by '=>'Sviluppato da ','Reset'=>'Ripristinare','Close'=>'Chiudi','GDPR Notice:'=>'Informativa GDPR:','This plugin uses cookies to enhance your experience and provide personalized accessibility settings. These cookies are stored in your browser and allow us to remember your preferences for font size, color schemes, and other accessibility features. By using this plugin, you consent to the use of cookies for these purposes. You can delete or block cookies in your browser settings at any time. Please note that doing so may affect your experience on the site.'=>'Questo plugin utilizza cookie per migliorare la tua esperienza e fornire impostazioni di accessibilità personalizzate. Questi cookie vengono memorizzati nel tuo browser e ci consentono di ricordare le tue preferenze relative a dimensioni del carattere, combinazioni di colori e altre funzionalità di accessibilità. Utilizzando questo plugin, acconsenti all\'utilizzo dei cookie per questi scopi. Puoi eliminare o bloccare i cookie nelle impostazioni del tuo browser in qualsiasi momento. Tieni presente che farlo potrebbe influire sulla tua esperienza sul sito.','jQuery is not loaded!'=>'jQuery non è caricato!','General'=>'Generale','Features'=>'Caratteristiche','Style'=>'Stile','Documentation'=>'Documentazione','Support'=>'Supporto','Donation'=>'Donazione','changelog'=>'egistro delle modifiche','General Settings'=>'Impostazioni Generali','Enable or Disable Meacodes Accessibility Tools:'=>'Attiva o Disattiva Strumenti di Accessibilità Meacodes:','Plugin Name:'=>'Nome Plugin:','This means that the plugin name is a default and automatic translation of the word Accessibility.'=>'Questo significa che il nome del plugin è una traduzione predefinita e automatica della parola Accessibilità.','This name will be displayed opposite the plugin icon in the header section when the accessibility plugin is opened by the user on your website.'=>'Questo nome verrà visualizzato accanto all\'icona del plugin nell\'intestazione quando l\'utente aprirà il plugin di accessibilità sul tuo sito web.','If you do not want any text to be displayed in that section, Clear default name and save changes.'=>'Se non vuoi che alcun testo venga visualizzato in questa sezione, cancella il nome predefinito e salva le modifiche.','If your site is multilingual (using Polylang), keep in mind that if you change this name, the name you choose will be displayed without translation and fixed in all languages unless you rebuild the plugins language file with Polylang and enter the translation of the chosen name. Also, if you want the chosen name to revert to the default name and be displayed translated in any language, reset settings once.'=>'Se il tuo sito è multilingua (utilizzando Polylang), tieni presente che se modifichi questo nome, il nome scelto verrà visualizzato senza traduzione e bloccato in tutte le lingue a meno che tu non ricostruisca il file di traduzione del plugin con Polylang e inserisca la traduzione del nome scelto. Inoltre, se desideri che il nome scelto venga riportato al nome predefinito e visualizzato tradotto in qualsiasi lingua, ripristina le impostazioni una volta.','Enable or Disable GDPR Notice:'=>'Abilita o Disabilita Avviso GDPR:','Developed by label:'=>'Sviluppato sotto l\'etichetta:','Enable "Developed by" label'=>'Abilita etichetta" Sviluppato da"','Please turn the Developed by label on to support us and help the project move forward. '=>'Attiva l\'etichetta "Sviluppato da" per supportarci e far avanzare il progetto. ','You can also buy us a coffee on the'=>'Puoi anche offrirci un caffè sulla pagina','Donation page.'=>'Delle donazioni.','Thanks for your supports. '=>'Grazie per il vostro sostegno. ','The Accessibility plugin provides a set of tools and features to create an easier and more inclusive user experience for users with various needs. You can enable or disable each of these features individually.'=>'Il plugin di Accessibilità offre una serie di strumenti e funzionalità per creare un\'esperienza utente più facile e inclusiva per persone con esigenze diverse. È possibile abilitare o disabilitare singolarmente ciascuna di queste funzionalità.','To find out which plugin features are used to solve which accessibility issues for your site, you can refer to the '=>'Per scoprire quali funzionalità del plugin vengono utilizzate per risolvere i problemi di accessibilità del tuo sito, puoi consultare la ','Documentation.'=>'Documentazione.','Font Size Feature:'=>'Funzione Dimensione Carattere:','Line Height Feature:'=>'Funzione Interlinea:','Letter Spacing Feature:'=>'Funzione Spaziatura tra lettere:','Dyslexia Mask Feature:'=>'Funzione Mascheramento della Dislessia:','Grayscale Page Feature:'=>'Funzione Pagina in scala di grigi:','Contrast Feature:'=>'Funzione Contrasto:','Negative Feature:'=>'Funzione Negativo:','Underlined Links Feature:'=>'Funzione Collegamenti sottolineati:','Highlight Links Feature:'=>'Funzione Evidenzia collegamenti:','Grayscale Images Feature:'=>'Funzione Immagini in scala di grigi:','Black and white Feature:'=>'Funzione In bianco e nero:','Style Settings'=>'Opzioni di Stile','Customize the plugins appearance to match your taste and needs using the style settings. For more information on each appearance variable, refer to the'=>'Personalizza l\'aspetto dei plugin per adattarli ai tuoi gusti e alle tue esigenze utilizzando le impostazioni di stile. Per ulteriori informazioni su ciascuna variabile di aspetto, consulta la','Positionable by User:'=>'Posizionabile dall\'utente:','Enabling this option allows users to freely move the accessibility plugin around the page on desktop devices. Please note that this feature is not available on mobile devices.'=>'Abilitando questa opzione, gli utenti potranno spostare liberamente il plugin di accessibilità sulla pagina sui dispositivi desktop. Si prega di notare che questa funzione non è disponibile sui dispositivi mobili.','Plugin Position:'=>'Posizionamento Plugin:','Bottom Left Corner'=>'Angolo inferiore sinistro','Bottom Right Corner'=>'Angolo inferiore destro','Top Left Corner'=>'Angolo superiore sinistro','Top Right Corner'=>'Angolo superiore destro','Background Color: '=>'Colore di sfondo: ','Background color of plugin and logo border.'=>'Colore di sfondo e bordo del logo del plugin.','Labels Color: '=>'Colore etichette: ','Color of the labels or name of each feature and Plugin name to.'=>'Colore delle etichette o nome di ogni funzionalità e nome del Plugin.Colore delle etichette o nomi di ciascuna funzionalità e nome del plugin.','Divider Line Color: '=>'Colore Linea Divisoria: ','Color of plugin header & features section divider.'=>'Colore del divisore della sezione header e funzionalità del plugin.Colore dell\'intestazione del plugin e del separatore della sezione funzionalità.','Plugin Logo Color: '=>'Colore del logo del plugin: ','Color Scheme for Plugin Logo.'=>'Schema colori per logo del plugin.','Accent Color: '=>'Colore d\'accento: ','Color scheme for:'=>'Combinazione di colori per:','Active features and their toggle buttons on hover.'=>'Funzionalità attive e i loro pulsanti di commutazione al passaggio del mouse.Funzioni attive e relativi pulsanti di attivazione/disattivazione al passaggio del mouse.','Dyslexia reading mask bars'=>'Sovrapposizioni di lettura per dislessia (alto e basso)','‌Buttons Color (Reset/Close):'=>'Colore Pulsanti (Reset/Chiudi):','Buttons Hover Color (Reset/Close): '=>'Colore hover per pulsanti (Reset/Chiudi): ','Reset settings'=>'Ripristina impostazioni','Accessibility Tools Version: '=>'Strumenti di accessibilità Versione: ','Developed by'=>'Sviluppato da','Meacodes Accessibility Tools'=>'Strumenti di accessibilità Meacodes','Mea Accessibility'=>'Accessibilità Mea','Settings'=>'Impostazioni','https://www.meacodes.com/accessibility'=>'https://www.meacodes.com/accessibility','This is an accessibility tools for people with disabilities to use the web easily.'=>'Questo è un plugin di accessibilità che permette alle persone con disabilità di navigare facilmente il web.','Meacodes'=>'Meacodes','https://www.meacodes.com'=>'https://www.meacodes.com','Advanced Analytics & Accessibility Insights'=>'Analisi Avanzate e Approfondimenti Accessibilità','Airdrop Campaign Active!'=>'Campagna Airdrop Attiva!','Auto Translate – Seamless Multilingual Experience'=>'Traduzione Automatica – Esperienza Multilingue Perfetta','Banner dismissed successfully'=>'Banner respinto con successo','Close banner'=>'Chiudi banner','Complete Accessibility Issue Summary for Your Website'=>'Riepilogo Completo Problemi Accessibilità per il Tuo Sito Web','Comprehensive WCAG 2.1 Issue Detection & Solutions'=>'Rilevamento e Soluzioni Complete Problemi WCAG 2.1','Effortless Dark & Light Mode Customization'=>'Personalizzazione Modalità Scura e Chiara Senza Sforzo','Endless Customization'=>'Personalizzazione Infinita','Flexible Fonts — Google & Custom Options'=>'Font Flessibili — Opzioni Google e Personalizzate','Fully Customizable Appearance & Theme Control'=>'Aspetto Completamente Personalizzabile e Controllo Tema','Insufficient permissions'=>'Permessi insufficienti','Join Now'=>'Unisciti Ora','Join our exclusive airdrop and earn rewards. Limited time offer!'=>'Unisciti al nostro airdrop esclusivo e guadagna ricompense. Offerta a tempo limitato!','Meacodes Development Solutions'=>'Soluzioni di Sviluppo Meacodes','Meacodes Pro Badge'=>'Badge Meacodes Pro','Modern Mobile First Responsive Design'=>'Design Responsive Moderno Mobile First','Page Structure Overview'=>'Panoramica Struttura Pagina','Personalized Accessibility Profiles for Every User'=>'Profili di Accessibilità Personalizzati per Ogni Utente','Plugin Button Border Radius:'=>'Raggio Bordo Pulsante Plugin:','Plugin Button Icon Size:'=>'Dimensione Icona Pulsante Plugin:','Plugin Button Margin:'=>'Margine Pulsante Plugin:','Plugin Button Size:'=>'Dimensione Pulsante Plugin:','Plugin button Color: '=>'Colore Pulsante Plugin: ','Professional Keyboard Navigation'=>'Navigazione Tastiera Professionale','Real-Time Website Performance Analysis'=>'Analisi Performance Sito Web in Tempo Reale','Security check failed'=>'Controllo sicurezza fallito','Smart Screen Reader Integration'=>'Integrazione Intelligente Screen Reader','Smart Site Search Engine'=>'Motore di Ricerca Intelligente del Sito','The upcoming version introduces advanced features like:'=>'La prossima versione introduce funzionalità avanzate come:','WordPress Performance & Security Score'=>'Punteggio Performance e Sicurezza WordPress','🎉 Congratulations!'=>'🎉 Congratulazioni!','👉 Join Campaign at Meacodes.com'=>'👉 Unisciti alla Campagna su Meacodes.com','Attention'=>'Attenzione','We updated the plugin button logic to enable more customization. If after updating it does not work on your site, this is likely a cache issue. Please clear your server and browser cache, then refresh the page.'=>'Abbiamo aggiornato la logica del pulsante del plugin per abilitare più personalizzazioni. Se dopo l\'aggiornamento non funziona sul tuo sito, questo è probabilmente un problema di cache. Per favore, cancella la cache del server e del browser, poi aggiorna la pagina.','💎 Register your website now in our Airdrop Campaign to claim your exclusive rewards and upcoming discounts!'=>'💎 Registra il tuo sito web ora nella nostra Campagna Airdrop per rivendicare le tue ricompense esclusive e sconti in arrivo!','Because you\'re using the %s plugin, you\'ve earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!'=>'Perché stai usando il plugin Strumenti di Accessibilità Meacodes, hai guadagnato un badge esclusivo per un abbonamento Pro Version 2 di 3 mesi — in arrivo presto!']];
     3return ['domain'=>NULL,'plural-forms'=>'nplurals=2; plural=(n != 1);','language'=>'it_IT','pot-creation-date'=>'2024-06-07 06:53-0700','po-revision-date'=>'2024-06-07 17:38+0330','translation-revision-date'=>'2024-06-07 17:38+0330','project-id-version'=>'Meacodes Accessibility Plugin','x-generator'=>'Poedit 3.7','messages'=>['Accessibility'=>'Accessibilità','Drag and move the accessibility box'=>'Trascina e sposta la casella di accessibilità','Open/Close Accessibility Options'=>'Apri/Chiudi Opzioni Accessibilità','Click to read GDPR Notice'=>'Clicca per leggere l\'Informativa GDPR','Font Size'=>'Dimensione carattere','‌Normal'=>'Normale','Line Height'=>'Altezza della linea','Normal'=>'Normale','Letter Spacing'=>'Spaziatura tra lettere','Dyslexia Mask'=>'Mascheramento della Dislessia','Grayscale Page'=>'Pagina in scala di grigi','Contrast'=>'Contrasto','Negative'=>'Negativo','Underlined Links'=>'Collegamenti sottolineati','Highlight Links'=>'Evidenzia collegamenti','Grayscale Images'=>'Immagini in scala di grigi','Black and white'=>'In bianco e nero','Developed by '=>'Sviluppato da ','Reset'=>'Ripristinare','Close'=>'Chiudi','GDPR Notice:'=>'Informativa GDPR:','This plugin uses cookies to enhance your experience and provide personalized accessibility settings. These cookies are stored in your browser and allow us to remember your preferences for font size, color schemes, and other accessibility features. By using this plugin, you consent to the use of cookies for these purposes. You can delete or block cookies in your browser settings at any time. Please note that doing so may affect your experience on the site.'=>'Questo plugin utilizza cookie per migliorare la tua esperienza e fornire impostazioni di accessibilità personalizzate. Questi cookie vengono memorizzati nel tuo browser e ci consentono di ricordare le tue preferenze relative a dimensioni del carattere, combinazioni di colori e altre funzionalità di accessibilità. Utilizzando questo plugin, acconsenti all\'utilizzo dei cookie per questi scopi. Puoi eliminare o bloccare i cookie nelle impostazioni del tuo browser in qualsiasi momento. Tieni presente che farlo potrebbe influire sulla tua esperienza sul sito.','jQuery is not loaded!'=>'jQuery non è caricato!','General'=>'Generale','Features'=>'Caratteristiche','Style'=>'Stile','Documentation'=>'Documentazione','Support'=>'Supporto','Donation'=>'Donazione','changelog'=>'egistro delle modifiche','General Settings'=>'Impostazioni Generali','Enable or Disable Meacodes Accessibility Tools:'=>'Attiva o Disattiva Strumenti di Accessibilità Meacodes:','Plugin Name:'=>'Nome Plugin:','This means that the plugin name is a default and automatic translation of the word Accessibility.'=>'Questo significa che il nome del plugin è una traduzione predefinita e automatica della parola Accessibilità.','This name will be displayed opposite the plugin icon in the header section when the accessibility plugin is opened by the user on your website.'=>'Questo nome verrà visualizzato accanto all\'icona del plugin nell\'intestazione quando l\'utente aprirà il plugin di accessibilità sul tuo sito web.','If you do not want any text to be displayed in that section, Clear default name and save changes.'=>'Se non vuoi che alcun testo venga visualizzato in questa sezione, cancella il nome predefinito e salva le modifiche.','If your site is multilingual (using Polylang), keep in mind that if you change this name, the name you choose will be displayed without translation and fixed in all languages unless you rebuild the plugins language file with Polylang and enter the translation of the chosen name. Also, if you want the chosen name to revert to the default name and be displayed translated in any language, reset settings once.'=>'Se il tuo sito è multilingua (utilizzando Polylang), tieni presente che se modifichi questo nome, il nome scelto verrà visualizzato senza traduzione e bloccato in tutte le lingue a meno che tu non ricostruisca il file di traduzione del plugin con Polylang e inserisca la traduzione del nome scelto. Inoltre, se desideri che il nome scelto venga riportato al nome predefinito e visualizzato tradotto in qualsiasi lingua, ripristina le impostazioni una volta.','Enable or Disable GDPR Notice:'=>'Abilita o Disabilita Avviso GDPR:','Developed by label:'=>'Sviluppato sotto l\'etichetta:','Enable "Developed by" label'=>'Abilita etichetta" Sviluppato da"','Please turn the Developed by label on to support us and help the project move forward. '=>'Attiva l\'etichetta "Sviluppato da" per supportarci e far avanzare il progetto. ','You can also buy us a coffee on the'=>'Puoi anche offrirci un caffè sulla pagina','Donation page.'=>'Delle donazioni.','Thanks for your supports. '=>'Grazie per il vostro sostegno. ','The Accessibility plugin provides a set of tools and features to create an easier and more inclusive user experience for users with various needs. You can enable or disable each of these features individually.'=>'Il plugin di Accessibilità offre una serie di strumenti e funzionalità per creare un\'esperienza utente più facile e inclusiva per persone con esigenze diverse. È possibile abilitare o disabilitare singolarmente ciascuna di queste funzionalità.','To find out which plugin features are used to solve which accessibility issues for your site, you can refer to the '=>'Per scoprire quali funzionalità del plugin vengono utilizzate per risolvere i problemi di accessibilità del tuo sito, puoi consultare la ','Documentation.'=>'Documentazione.','Font Size Feature:'=>'Funzione Dimensione Carattere:','Line Height Feature:'=>'Funzione Interlinea:','Letter Spacing Feature:'=>'Funzione Spaziatura tra lettere:','Dyslexia Mask Feature:'=>'Funzione Mascheramento della Dislessia:','Grayscale Page Feature:'=>'Funzione Pagina in scala di grigi:','Contrast Feature:'=>'Funzione Contrasto:','Negative Feature:'=>'Funzione Negativo:','Underlined Links Feature:'=>'Funzione Collegamenti sottolineati:','Highlight Links Feature:'=>'Funzione Evidenzia collegamenti:','Grayscale Images Feature:'=>'Funzione Immagini in scala di grigi:','Black and white Feature:'=>'Funzione In bianco e nero:','Style Settings'=>'Opzioni di Stile','Customize the plugins appearance to match your taste and needs using the style settings. For more information on each appearance variable, refer to the'=>'Personalizza l\'aspetto dei plugin per adattarli ai tuoi gusti e alle tue esigenze utilizzando le impostazioni di stile. Per ulteriori informazioni su ciascuna variabile di aspetto, consulta la','Positionable by User:'=>'Posizionabile dall\'utente:','Enabling this option allows users to freely move the accessibility plugin around the page on desktop devices. Please note that this feature is not available on mobile devices.'=>'Abilitando questa opzione, gli utenti potranno spostare liberamente il plugin di accessibilità sulla pagina sui dispositivi desktop. Si prega di notare che questa funzione non è disponibile sui dispositivi mobili.','Plugin Position:'=>'Posizionamento Plugin:','Bottom Left Corner'=>'Angolo inferiore sinistro','Bottom Right Corner'=>'Angolo inferiore destro','Top Left Corner'=>'Angolo superiore sinistro','Top Right Corner'=>'Angolo superiore destro','Background Color: '=>'Colore di sfondo: ','Background color of plugin and logo border.'=>'Colore di sfondo e bordo del logo del plugin.','Labels Color: '=>'Colore etichette: ','Color of the labels or name of each feature and Plugin name to.'=>'Colore delle etichette o nome di ogni funzionalità e nome del Plugin.Colore delle etichette o nomi di ciascuna funzionalità e nome del plugin.','Divider Line Color: '=>'Colore Linea Divisoria: ','Color of plugin header & features section divider.'=>'Colore del divisore della sezione header e funzionalità del plugin.Colore dell\'intestazione del plugin e del separatore della sezione funzionalità.','Plugin Logo Color: '=>'Colore del logo del plugin: ','Color Scheme for Plugin Logo.'=>'Schema colori per logo del plugin.','Accent Color: '=>'Colore d\'accento: ','Color scheme for:'=>'Combinazione di colori per:','Active features and their toggle buttons on hover.'=>'Funzionalità attive e i loro pulsanti di commutazione al passaggio del mouse.Funzioni attive e relativi pulsanti di attivazione/disattivazione al passaggio del mouse.','Dyslexia reading mask bars'=>'Sovrapposizioni di lettura per dislessia (alto e basso)','‌Buttons Color (Reset/Close):'=>'Colore Pulsanti (Reset/Chiudi):','Buttons Hover Color (Reset/Close): '=>'Colore hover per pulsanti (Reset/Chiudi): ','Reset settings'=>'Ripristina impostazioni','Accessibility Tools Version: '=>'Strumenti di accessibilità Versione: ','Developed by'=>'Sviluppato da','Meacodes Accessibility Tools'=>'Strumenti di accessibilità Meacodes','Mea Accessibility'=>'Accessibilità Mea','Settings'=>'Impostazioni','https://www.meacodes.com/accessibility'=>'https://www.meacodes.com/accessibility','This is an accessibility tools for people with disabilities to use the web easily.'=>'Questo è un plugin di accessibilità che permette alle persone con disabilità di navigare facilmente il web.','Meacodes'=>'Meacodes','https://www.meacodes.com'=>'https://www.meacodes.com','Advanced Analytics & Accessibility Insights'=>'Analisi Avanzate e Approfondimenti Accessibilità','Auto Translate – Seamless Multilingual Experience'=>'Traduzione Automatica – Esperienza Multilingue Perfetta','Banner dismissed successfully'=>'Banner respinto con successo','Close banner'=>'Chiudi banner','Complete Accessibility Issue Summary for Your Website'=>'Riepilogo Completo Problemi Accessibilità per il Tuo Sito Web','Comprehensive WCAG 2.1 Issue Detection & Solutions'=>'Rilevamento e Soluzioni Complete Problemi WCAG 2.1','Effortless Dark & Light Mode Customization'=>'Personalizzazione Modalità Scura e Chiara Senza Sforzo','Endless Customization'=>'Personalizzazione Infinita','Flexible Fonts — Google & Custom Options'=>'Font Flessibili — Opzioni Google e Personalizzate','Fully Customizable Appearance & Theme Control'=>'Aspetto Completamente Personalizzabile e Controllo Tema','Insufficient permissions'=>'Permessi insufficienti','Meacodes Development Solutions'=>'Soluzioni di Sviluppo Meacodes','Meacodes Pro Badge'=>'Badge Meacodes Pro','Modern Mobile First Responsive Design'=>'Design Responsive Moderno Mobile First','Page Structure Overview'=>'Panoramica Struttura Pagina','Personalized Accessibility Profiles for Every User'=>'Profili di Accessibilità Personalizzati per Ogni Utente','Plugin Button Border Radius:'=>'Raggio Bordo Pulsante Plugin:','Plugin Button Icon Size:'=>'Dimensione Icona Pulsante Plugin:','Plugin Button Margin:'=>'Margine Pulsante Plugin:','Plugin Button Size:'=>'Dimensione Pulsante Plugin:','Plugin button Color: '=>'Colore Pulsante Plugin: ','Professional Keyboard Navigation'=>'Navigazione Tastiera Professionale','Real-Time Website Performance Analysis'=>'Analisi Performance Sito Web in Tempo Reale','Security check failed'=>'Controllo sicurezza fallito','Smart Screen Reader Integration'=>'Integrazione Intelligente Screen Reader','Smart Site Search Engine'=>'Motore di Ricerca Intelligente del Sito','The upcoming version introduces advanced features like:'=>'La prossima versione introduce funzionalità avanzate come:','WordPress Performance & Security Score'=>'Punteggio Performance e Sicurezza WordPress','🎉 Congratulations!'=>'🎉 Congratulazioni!','👉 Join Campaign at Meacodes.com'=>'👉 Unisciti alla Campagna su Meacodes.com','Attention'=>'Attenzione','We updated the plugin button logic to enable more customization. If after updating it does not work on your site, this is likely a cache issue. Please clear your server and browser cache, then refresh the page.'=>'Abbiamo aggiornato la logica del pulsante del plugin per abilitare più personalizzazioni. Se dopo l\'aggiornamento non funziona sul tuo sito, questo è probabilmente un problema di cache. Per favore, cancella la cache del server e del browser, poi aggiorna la pagina.','💎 Register your website now in our Airdrop Campaign to claim your exclusive rewards and upcoming discounts!'=>'💎 Registra il tuo sito web ora nella nostra Campagna Airdrop per rivendicare le tue ricompense esclusive e sconti in arrivo!','Because you\'re using the %s plugin, you\'ve earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!'=>'Perché stai usando il plugin Strumenti di Accessibilità Meacodes, hai guadagnato un badge esclusivo per un abbonamento Pro Version 2 di 3 mesi — in arrivo presto!','You\'ve been recognized as an Early Supporter of Meacodes Accessibility Tools — a special thank-you to everyone helping us build a more accessible web 🌍'=>'Sei stato riconosciuto come Early Supporter degli Strumenti di Accessibilità Meacodes — un ringraziamento speciale a tutti coloro che ci aiutano a costruire un web più accessibile 🌍','With the upcoming Pro Version 2, you\'ll unlock early-access privileges such as:'=>'Con la prossima Pro Version 2, sbloccherai privilegi di accesso anticipato come:','Modern mobile-first responsive design'=>'Design responsive moderno mobile-first','Smart accessibility enhancements'=>'Miglioramenti intelligenti dell\'accessibilità','WCAG 2.1 issue detection & analytics'=>'Rilevamento problemi WCAG 2.1 e analisi','Deep customization options'=>'Opzioni di personalizzazione approfondite','Your Early Supporter Badge will be verified automatically during the Pro 2 rollout. Stay tuned and learn more about the upcoming release at'=>'Il tuo Badge Early Supporter sarà verificato automaticamente durante il rollout di Pro 2. Resta sintonizzato e scopri di più sulla prossima versione su','👉 meacodes.com'=>'👉 meacodes.com','This notice will hide for 24 hours once dismissed.'=>'Questo avviso si nasconderà per 24 ore una volta respinto.','You\'ve been recognized as an %s of Meacodes Accessibility Tools.'=>'Sei stato riconosciuto come %s degli Strumenti di Accessibilità Meacodes.','As part of the upcoming %s rollout, early supporters will receive an exclusive %s and extended Pro access privileges.'=>'Come parte del prossimo rollout di %s, gli early supporters riceveranno un %s esclusivo e privilegi di accesso Pro estesi.','To learn how the badge system works and how sites are verified,'=>'Per imparare come funziona il sistema di badge e come vengono verificati i siti,','👉 visit meacodes.com/early-supporter'=>'👉 visita meacodes.com/early-supporter']];
  • meacodes-accessibility-tools/trunk/languages/meacodes-accessibility-tools-it_IT.po

    r3378044 r3378438  
    747747msgstr "Analisi Avanzate e Approfondimenti Accessibilità"
    748748
    749 msgid "Airdrop Campaign Active!"
    750 msgstr "Campagna Airdrop Attiva!"
    751749
    752750msgid "Auto Translate – Seamless Multilingual Experience"
     
    780778msgstr "Permessi insufficienti"
    781779
    782 msgid "Join Now"
    783 msgstr "Unisciti Ora"
    784 
    785 msgid "Join our exclusive airdrop and earn rewards. Limited time offer!"
    786 msgstr "Unisciti al nostro airdrop esclusivo e guadagna ricompense. Offerta a tempo limitato!"
     780
    787781
    788782msgid "Meacodes Development Solutions"
     
    854848msgid "Because you're using the %s plugin, you've earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!"
    855849msgstr "Perché stai usando il plugin Strumenti di Accessibilità Meacodes, hai guadagnato un badge esclusivo per un abbonamento Pro Version 2 di 3 mesi — in arrivo presto!"
     850
     851msgid "You've been recognized as an Early Supporter of Meacodes Accessibility Tools — a special thank-you to everyone helping us build a more accessible web 🌍"
     852msgstr "Sei stato riconosciuto come Early Supporter degli Strumenti di Accessibilità Meacodes — un ringraziamento speciale a tutti coloro che ci aiutano a costruire un web più accessibile 🌍"
     853
     854msgid "With the upcoming Pro Version 2, you'll unlock early-access privileges such as:"
     855msgstr "Con la prossima Pro Version 2, sbloccherai privilegi di accesso anticipato come:"
     856
     857msgid "Modern mobile-first responsive design"
     858msgstr "Design responsive moderno mobile-first"
     859
     860msgid "Smart accessibility enhancements"
     861msgstr "Miglioramenti intelligenti dell'accessibilità"
     862
     863msgid "WCAG 2.1 issue detection & analytics"
     864msgstr "Rilevamento problemi WCAG 2.1 e analisi"
     865
     866msgid "Deep customization options"
     867msgstr "Opzioni di personalizzazione approfondite"
     868
     869msgid "Your Early Supporter Badge will be verified automatically during the Pro 2 rollout. Stay tuned and learn more about the upcoming release at"
     870msgstr "Il tuo Badge Early Supporter sarà verificato automaticamente durante il rollout di Pro 2. Resta sintonizzato e scopri di più sulla prossima versione su"
     871
     872msgid "👉 meacodes.com"
     873msgstr "👉 meacodes.com"
     874
     875msgid "This notice will hide for 24 hours once dismissed."
     876msgstr "Questo avviso si nasconderà per 24 ore una volta respinto."
     877
     878msgid "You've been recognized as an %s of Meacodes Accessibility Tools."
     879msgstr "Sei stato riconosciuto come %s degli Strumenti di Accessibilità Meacodes."
     880
     881msgid "As part of the upcoming %s rollout, early supporters will receive an exclusive %s and extended Pro access privileges."
     882msgstr "Come parte del prossimo rollout di %s, gli early supporters riceveranno un %s esclusivo e privilegi di accesso Pro estesi."
     883
     884msgid "To learn how the badge system works and how sites are verified,"
     885msgstr "Per imparare come funziona il sistema di badge e come vengono verificati i siti,"
     886
     887msgid "👉 visit meacodes.com/early-supporter"
     888msgstr "👉 visita meacodes.com/early-supporter"
  • meacodes-accessibility-tools/trunk/languages/meacodes-accessibility-tools-pt_PT.l10n.php

    r3378044 r3378438  
    11<?php
    22// generated by Poedit from meacodes-accessibility-tools-pt_PT.po, do not edit directly
    3 return ['domain'=>NULL,'plural-forms'=>'nplurals=2; plural=(n != 1);','language'=>'pt_PT','pot-creation-date'=>'2024-06-07 06:53-0700','po-revision-date'=>'2024-06-07 17:39+0330','translation-revision-date'=>'2024-06-07 17:39+0330','project-id-version'=>'Meacodes Accessibility Plugin','x-generator'=>'Poedit 3.7','messages'=>['Accessibility'=>'Acessibilidade','Drag and move the accessibility box'=>'Arraste e mova a caixa de acessibilidade','Open/Close Accessibility Options'=>'Abrir/Fechar Opções de Acessibilidade','Click to read GDPR Notice'=>'Clique para ler o Aviso GDPR','Font Size'=>'Tamanho da fonte','‌Normal'=>'‌Normal','Line Height'=>'Altura da linha','Normal'=>'Normal','Letter Spacing'=>'Espaçamento entre letras','Dyslexia Mask'=>'Sobreposição dislexia','Grayscale Page'=>'Página em tons de cinza','Contrast'=>'Contraste','Negative'=>'Negativo','Underlined Links'=>'Links sublinhados','Highlight Links'=>'Destacar links','Grayscale Images'=>'Imagens em tons de cinza','Black and white'=>'Preto e branco','Developed by '=>'Desenvolvido por ','Reset'=>'Reiniciar','Close'=>'Fechar','GDPR Notice:'=>'Aviso GDPR:','This plugin uses cookies to enhance your experience and provide personalized accessibility settings. These cookies are stored in your browser and allow us to remember your preferences for font size, color schemes, and other accessibility features. By using this plugin, you consent to the use of cookies for these purposes. You can delete or block cookies in your browser settings at any time. Please note that doing so may affect your experience on the site.'=>'Este plugin usa cookies para melhorar sua experiência e fornecer Opções de acessibilidade personalizadas. Esses cookies são armazenados em seu navegador e nos permitem lembrar suas preferências de tamanho de fonte, esquema de cores e outros recursos de acessibilidade. Ao usar este plugin, você consente com o uso de cookies para esses fins. Você pode excluir ou bloquear cookies nas Opções do seu navegador a qualquer momento. Observe que isso pode afetar sua experiência no site.','jQuery is not loaded!'=>'jQuery não está carregado!','General'=>'Gerais','Features'=>'Recursos','Style'=>'Estilo','Documentation'=>'Documentação','Support'=>'Suporte','Donation'=>'Doação','changelog'=>'registro de mudanças','General Settings'=>'Opções Gerais','Enable or Disable Meacodes Accessibility Tools:'=>'Ativar ou Desativar as Ferramentas de Acessibilidade Meacodes:','Plugin Name:'=>'Nome do Plugin:','This means that the plugin name is a default and automatic translation of the word Accessibility.'=>'Isso significa que o nome do plugin é uma tradução padrão e automática da palavra Acessibilidade.','This name will be displayed opposite the plugin icon in the header section when the accessibility plugin is opened by the user on your website.'=>'Este nome será exibido ao lado do ícone do plugin na seção de cabeçalho quando o plugin de acessibilidade for aberto pelo usuário em seu site.','If you do not want any text to be displayed in that section, Clear default name and save changes.'=>'Se não quiser texto nesta seção, apague o nome padrão e salve as alterações.','If your site is multilingual (using Polylang), keep in mind that if you change this name, the name you choose will be displayed without translation and fixed in all languages unless you rebuild the plugins language file with Polylang and enter the translation of the chosen name. Also, if you want the chosen name to revert to the default name and be displayed translated in any language, reset settings once.'=>'Se o seu site for multilíngue (usando o Polylang), lembre-se que ao alterar este nome, a alteração aparecerá sem tradução e fixa em todos os idiomas, a menos que você reconstrua o arquivo de idiomas do plugin com o Polylang e insira a tradução do nome escolhido. Além disso, se desejar que o nome escolhido volte ao padrão e seja exibido traduzido em qualquer idioma, basta redefinir as Opções.','Enable or Disable GDPR Notice:'=>'Ativar ou Desativar Aviso de GDPR:','Developed by label:'=>'Desenvolvido por:','Enable "Developed by" label'=>'Exibir "Desenvolvido por"','Please turn the Developed by label on to support us and help the project move forward. '=>'Por favor, ative o rótulo "Desenvolvido por" para nos apoiar e ajudar o projeto a seguir em frente. ','You can also buy us a coffee on the'=>'Você também pode contribuir com a doação do valor de um cafezinho na','Donation page.'=>'Página de Doações.','Thanks for your supports. '=>'Obrigado pelo seu apoio. ','The Accessibility plugin provides a set of tools and features to create an easier and more inclusive user experience for users with various needs. You can enable or disable each of these features individually.'=>'O plugin de Acessibilidade oferece um conjunto de ferramentas e recursos para criar uma experiência de usuário mais fácil e inclusiva para pessoas com diversas necessidades. Você pode ativar ou desativar cada um desses recursos individualmente.','To find out which plugin features are used to solve which accessibility issues for your site, you can refer to the '=>'Para descobrir quais recursos do plugin ajudam a resolver problemas específicos de acessibilidade do seu site, você pode consultar a ','Documentation.'=>'Documentação.','Font Size Feature:'=>'Recurso de tamanho de fonte:','Line Height Feature:'=>'Recurso de altura de linha:','Letter Spacing Feature:'=>'Recurso de espaçamento entre letras:','Dyslexia Mask Feature:'=>'Recurso de sobreposição para dislexia:','Grayscale Page Feature:'=>'Recurso de página em tons de cinza:','Contrast Feature:'=>'Recurso de Contraste:','Negative Feature:'=>'Recurso de Negativo:','Underlined Links Feature:'=>'Recurso de links sublinhados:','Highlight Links Feature:'=>'Recurso de Destacar Links:','Grayscale Images Feature:'=>'Recurso de imagens em tons de cinza:','Black and white Feature:'=>'Recurso de Preto e branco:','Style Settings'=>'Opções de estilo','Customize the plugins appearance to match your taste and needs using the style settings. For more information on each appearance variable, refer to the'=>'Personalize a aparência dos plugins para combinar com seu gosto e necessidades usando as Opções de estilo. Para obter mais informações sobre cada variável de aparência, consulte o','Positionable by User:'=>'Posicionável pelo usuário:','Enabling this option allows users to freely move the accessibility plugin around the page on desktop devices. Please note that this feature is not available on mobile devices.'=>'Ativar esta opção permite que os usuários movam livremente o plugin de acessibilidade pela página em dispositivos desktop. Observe que este recurso não está disponível em dispositivos móveis.','Plugin Position:'=>'Posição do Plugin:','Bottom Left Corner'=>'Canto inferior esquerdo','Bottom Right Corner'=>'Canto inferior direito','Top Left Corner'=>'Canto superior esquerdo','Top Right Corner'=>'Canto superior direito','Background Color: '=>'Cor de fundo: ','Background color of plugin and logo border.'=>'Cor de fundo do plugin e borda da logo.','Labels Color: '=>'Cor das etiquetas: ','Color of the labels or name of each feature and Plugin name to.'=>'Cor dos rótulos ou nomes de cada recurso e para o nome do plugin.','Divider Line Color: '=>'Cor da linha divisória: ','Color of plugin header & features section divider.'=>'Cor do cabeçalho do plugin e divisor da seção de recursos.','Plugin Logo Color: '=>'Cor do logo do plugin: ','Color Scheme for Plugin Logo.'=>'Esquema de cores para logotipo do plugin.','Accent Color: '=>'Cor de destaque: ','Color scheme for:'=>'Paleta de cores para:','Active features and their toggle buttons on hover.'=>'Recursos ativos e seus botões de ativação ao passar o mouse.','Dyslexia reading mask bars'=>'Máscara de leitura para dislexia com realces','‌Buttons Color (Reset/Close):'=>'Cor dos botões (Reiniciar/Fechar):','Buttons Hover Color (Reset/Close): '=>'Cor de Realce para Botões (Limpar/Fechar): ','Reset settings'=>'Restaurar Opções','Accessibility Tools Version: '=>'Ferramentas de Acessibilidade Versão: ','Developed by'=>'Desenvolvido por','Meacodes Accessibility Tools'=>'Plugin de Acessibilidade Meacodes','Mea Accessibility'=>'Acessibilidade Mea','Settings'=>'Opções','https://www.meacodes.com/accessibility'=>'https://www.meacodes.com/accessibility','This is an accessibility tools for people with disabilities to use the web easily.'=>'Este é um plugin de acessibilidade para pessoas com deficiência usarem a web facilmente.','Meacodes'=>'Meacodes','https://www.meacodes.com'=>'https://www.meacodes.com','Advanced Analytics & Accessibility Insights'=>'Análises Avançadas e Insights de Acessibilidade','Airdrop Campaign Active!'=>'Campanha Airdrop Ativa!','Auto Translate – Seamless Multilingual Experience'=>'Tradução Automática – Experiência Multilíngue Perfeita','Banner dismissed successfully'=>'Banner rejeitado com sucesso','Close banner'=>'Fechar banner','Complete Accessibility Issue Summary for Your Website'=>'Resumo Completo de Problemas de Acessibilidade para o Seu Site','Comprehensive WCAG 2.1 Issue Detection & Solutions'=>'Deteção e Soluções Abrangentes de Problemas WCAG 2.1','Effortless Dark & Light Mode Customization'=>'Personalização de Modo Escuro e Claro Sem Esforço','Endless Customization'=>'Personalização Infinita','Flexible Fonts — Google & Custom Options'=>'Fontes Flexíveis — Opções Google e Personalizadas','Fully Customizable Appearance & Theme Control'=>'Aparência Totalmente Personalizável e Controlo de Tema','Insufficient permissions'=>'Permissões insuficientes','Join Now'=>'Juntar-se Agora','Join our exclusive airdrop and earn rewards. Limited time offer!'=>'Junte-se ao nosso airdrop exclusivo e ganhe recompensas. Oferta por tempo limitado!','Meacodes Development Solutions'=>'Soluções de Desenvolvimento Meacodes','Meacodes Pro Badge'=>'Insígnia Meacodes Pro','Modern Mobile First Responsive Design'=>'Design Responsivo Moderno Mobile First','Page Structure Overview'=>'Visão Geral da Estrutura da Página','Personalized Accessibility Profiles for Every User'=>'Perfis de Acessibilidade Personalizados para Cada Utilizador','Plugin Button Border Radius:'=>'Raio da Borda do Botão do Plugin:','Plugin Button Icon Size:'=>'Tamanho do Ícone do Botão do Plugin:','Plugin Button Margin:'=>'Margem do Botão do Plugin:','Plugin Button Size:'=>'Tamanho do Botão do Plugin:','Plugin button Color: '=>'Cor do Botão do Plugin: ','Professional Keyboard Navigation'=>'Navegação por Teclado Profissional','Real-Time Website Performance Analysis'=>'Análise de Performance do Site em Tempo Real','Security check failed'=>'Verificação de segurança falhou','Smart Screen Reader Integration'=>'Integração Inteligente de Leitor de Ecrã','Smart Site Search Engine'=>'Motor de Pesquisa Inteligente do Site','The upcoming version introduces advanced features like:'=>'A próxima versão introduz funcionalidades avançadas como:','WordPress Performance & Security Score'=>'Pontuação de Performance e Segurança WordPress','🎉 Congratulations!'=>'🎉 Parabéns!','👉 Join Campaign at Meacodes.com'=>'👉 Juntar-se à Campanha em Meacodes.com','Attention'=>'Atenção','We updated the plugin button logic to enable more customization. If after updating it does not work on your site, this is likely a cache issue. Please clear your server and browser cache, then refresh the page.'=>'Atualizámos a lógica do botão do plugin para permitir mais personalização. Se após a atualização não funcionar no seu site, isto é provavelmente um problema de cache. Por favor, limpe o cache do servidor e do navegador, depois atualize a página.','💎 Register your website now in our Airdrop Campaign to claim your exclusive rewards and upcoming discounts!'=>'💎 Registe o seu site agora na nossa Campanha Airdrop para reclamar as suas recompensas exclusivas e descontos próximos!','Because you\'re using the %s plugin, you\'ve earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!'=>'Porque está a usar o plugin Ferramentas de Acessibilidade Meacodes, ganhou uma insígnia exclusiva para uma subscrição Pro Version 2 de 3 meses — em breve!']];
     3return ['domain'=>NULL,'plural-forms'=>'nplurals=2; plural=(n != 1);','language'=>'pt_PT','pot-creation-date'=>'2024-06-07 06:53-0700','po-revision-date'=>'2024-06-07 17:39+0330','translation-revision-date'=>'2024-06-07 17:39+0330','project-id-version'=>'Meacodes Accessibility Plugin','x-generator'=>'Poedit 3.7','messages'=>['Accessibility'=>'Acessibilidade','Drag and move the accessibility box'=>'Arraste e mova a caixa de acessibilidade','Open/Close Accessibility Options'=>'Abrir/Fechar Opções de Acessibilidade','Click to read GDPR Notice'=>'Clique para ler o Aviso GDPR','Font Size'=>'Tamanho da fonte','‌Normal'=>'‌Normal','Line Height'=>'Altura da linha','Normal'=>'Normal','Letter Spacing'=>'Espaçamento entre letras','Dyslexia Mask'=>'Sobreposição dislexia','Grayscale Page'=>'Página em tons de cinza','Contrast'=>'Contraste','Negative'=>'Negativo','Underlined Links'=>'Links sublinhados','Highlight Links'=>'Destacar links','Grayscale Images'=>'Imagens em tons de cinza','Black and white'=>'Preto e branco','Developed by '=>'Desenvolvido por ','Reset'=>'Reiniciar','Close'=>'Fechar','GDPR Notice:'=>'Aviso GDPR:','This plugin uses cookies to enhance your experience and provide personalized accessibility settings. These cookies are stored in your browser and allow us to remember your preferences for font size, color schemes, and other accessibility features. By using this plugin, you consent to the use of cookies for these purposes. You can delete or block cookies in your browser settings at any time. Please note that doing so may affect your experience on the site.'=>'Este plugin usa cookies para melhorar sua experiência e fornecer Opções de acessibilidade personalizadas. Esses cookies são armazenados em seu navegador e nos permitem lembrar suas preferências de tamanho de fonte, esquema de cores e outros recursos de acessibilidade. Ao usar este plugin, você consente com o uso de cookies para esses fins. Você pode excluir ou bloquear cookies nas Opções do seu navegador a qualquer momento. Observe que isso pode afetar sua experiência no site.','jQuery is not loaded!'=>'jQuery não está carregado!','General'=>'Gerais','Features'=>'Recursos','Style'=>'Estilo','Documentation'=>'Documentação','Support'=>'Suporte','Donation'=>'Doação','changelog'=>'registro de mudanças','General Settings'=>'Opções Gerais','Enable or Disable Meacodes Accessibility Tools:'=>'Ativar ou Desativar as Ferramentas de Acessibilidade Meacodes:','Plugin Name:'=>'Nome do Plugin:','This means that the plugin name is a default and automatic translation of the word Accessibility.'=>'Isso significa que o nome do plugin é uma tradução padrão e automática da palavra Acessibilidade.','This name will be displayed opposite the plugin icon in the header section when the accessibility plugin is opened by the user on your website.'=>'Este nome será exibido ao lado do ícone do plugin na seção de cabeçalho quando o plugin de acessibilidade for aberto pelo usuário em seu site.','If you do not want any text to be displayed in that section, Clear default name and save changes.'=>'Se não quiser texto nesta seção, apague o nome padrão e salve as alterações.','If your site is multilingual (using Polylang), keep in mind that if you change this name, the name you choose will be displayed without translation and fixed in all languages unless you rebuild the plugins language file with Polylang and enter the translation of the chosen name. Also, if you want the chosen name to revert to the default name and be displayed translated in any language, reset settings once.'=>'Se o seu site for multilíngue (usando o Polylang), lembre-se que ao alterar este nome, a alteração aparecerá sem tradução e fixa em todos os idiomas, a menos que você reconstrua o arquivo de idiomas do plugin com o Polylang e insira a tradução do nome escolhido. Além disso, se desejar que o nome escolhido volte ao padrão e seja exibido traduzido em qualquer idioma, basta redefinir as Opções.','Enable or Disable GDPR Notice:'=>'Ativar ou Desativar Aviso de GDPR:','Developed by label:'=>'Desenvolvido por:','Enable "Developed by" label'=>'Exibir "Desenvolvido por"','Please turn the Developed by label on to support us and help the project move forward. '=>'Por favor, ative o rótulo "Desenvolvido por" para nos apoiar e ajudar o projeto a seguir em frente. ','You can also buy us a coffee on the'=>'Você também pode contribuir com a doação do valor de um cafezinho na','Donation page.'=>'Página de Doações.','Thanks for your supports. '=>'Obrigado pelo seu apoio. ','The Accessibility plugin provides a set of tools and features to create an easier and more inclusive user experience for users with various needs. You can enable or disable each of these features individually.'=>'O plugin de Acessibilidade oferece um conjunto de ferramentas e recursos para criar uma experiência de usuário mais fácil e inclusiva para pessoas com diversas necessidades. Você pode ativar ou desativar cada um desses recursos individualmente.','To find out which plugin features are used to solve which accessibility issues for your site, you can refer to the '=>'Para descobrir quais recursos do plugin ajudam a resolver problemas específicos de acessibilidade do seu site, você pode consultar a ','Documentation.'=>'Documentação.','Font Size Feature:'=>'Recurso de tamanho de fonte:','Line Height Feature:'=>'Recurso de altura de linha:','Letter Spacing Feature:'=>'Recurso de espaçamento entre letras:','Dyslexia Mask Feature:'=>'Recurso de sobreposição para dislexia:','Grayscale Page Feature:'=>'Recurso de página em tons de cinza:','Contrast Feature:'=>'Recurso de Contraste:','Negative Feature:'=>'Recurso de Negativo:','Underlined Links Feature:'=>'Recurso de links sublinhados:','Highlight Links Feature:'=>'Recurso de Destacar Links:','Grayscale Images Feature:'=>'Recurso de imagens em tons de cinza:','Black and white Feature:'=>'Recurso de Preto e branco:','Style Settings'=>'Opções de estilo','Customize the plugins appearance to match your taste and needs using the style settings. For more information on each appearance variable, refer to the'=>'Personalize a aparência dos plugins para combinar com seu gosto e necessidades usando as Opções de estilo. Para obter mais informações sobre cada variável de aparência, consulte o','Positionable by User:'=>'Posicionável pelo usuário:','Enabling this option allows users to freely move the accessibility plugin around the page on desktop devices. Please note that this feature is not available on mobile devices.'=>'Ativar esta opção permite que os usuários movam livremente o plugin de acessibilidade pela página em dispositivos desktop. Observe que este recurso não está disponível em dispositivos móveis.','Plugin Position:'=>'Posição do Plugin:','Bottom Left Corner'=>'Canto inferior esquerdo','Bottom Right Corner'=>'Canto inferior direito','Top Left Corner'=>'Canto superior esquerdo','Top Right Corner'=>'Canto superior direito','Background Color: '=>'Cor de fundo: ','Background color of plugin and logo border.'=>'Cor de fundo do plugin e borda da logo.','Labels Color: '=>'Cor das etiquetas: ','Color of the labels or name of each feature and Plugin name to.'=>'Cor dos rótulos ou nomes de cada recurso e para o nome do plugin.','Divider Line Color: '=>'Cor da linha divisória: ','Color of plugin header & features section divider.'=>'Cor do cabeçalho do plugin e divisor da seção de recursos.','Plugin Logo Color: '=>'Cor do logo do plugin: ','Color Scheme for Plugin Logo.'=>'Esquema de cores para logotipo do plugin.','Accent Color: '=>'Cor de destaque: ','Color scheme for:'=>'Paleta de cores para:','Active features and their toggle buttons on hover.'=>'Recursos ativos e seus botões de ativação ao passar o mouse.','Dyslexia reading mask bars'=>'Máscara de leitura para dislexia com realces','‌Buttons Color (Reset/Close):'=>'Cor dos botões (Reiniciar/Fechar):','Buttons Hover Color (Reset/Close): '=>'Cor de Realce para Botões (Limpar/Fechar): ','Reset settings'=>'Restaurar Opções','Accessibility Tools Version: '=>'Ferramentas de Acessibilidade Versão: ','Developed by'=>'Desenvolvido por','Meacodes Accessibility Tools'=>'Plugin de Acessibilidade Meacodes','Mea Accessibility'=>'Acessibilidade Mea','Settings'=>'Opções','https://www.meacodes.com/accessibility'=>'https://www.meacodes.com/accessibility','This is an accessibility tools for people with disabilities to use the web easily.'=>'Este é um plugin de acessibilidade para pessoas com deficiência usarem a web facilmente.','Meacodes'=>'Meacodes','https://www.meacodes.com'=>'https://www.meacodes.com','Advanced Analytics & Accessibility Insights'=>'Análises Avançadas e Insights de Acessibilidade','Auto Translate – Seamless Multilingual Experience'=>'Tradução Automática – Experiência Multilíngue Perfeita','Banner dismissed successfully'=>'Banner rejeitado com sucesso','Close banner'=>'Fechar banner','Complete Accessibility Issue Summary for Your Website'=>'Resumo Completo de Problemas de Acessibilidade para o Seu Site','Comprehensive WCAG 2.1 Issue Detection & Solutions'=>'Deteção e Soluções Abrangentes de Problemas WCAG 2.1','Effortless Dark & Light Mode Customization'=>'Personalização de Modo Escuro e Claro Sem Esforço','Endless Customization'=>'Personalização Infinita','Flexible Fonts — Google & Custom Options'=>'Fontes Flexíveis — Opções Google e Personalizadas','Fully Customizable Appearance & Theme Control'=>'Aparência Totalmente Personalizável e Controlo de Tema','Insufficient permissions'=>'Permissões insuficientes','Meacodes Development Solutions'=>'Soluções de Desenvolvimento Meacodes','Meacodes Pro Badge'=>'Insígnia Meacodes Pro','Modern Mobile First Responsive Design'=>'Design Responsivo Moderno Mobile First','Page Structure Overview'=>'Visão Geral da Estrutura da Página','Personalized Accessibility Profiles for Every User'=>'Perfis de Acessibilidade Personalizados para Cada Utilizador','Plugin Button Border Radius:'=>'Raio da Borda do Botão do Plugin:','Plugin Button Icon Size:'=>'Tamanho do Ícone do Botão do Plugin:','Plugin Button Margin:'=>'Margem do Botão do Plugin:','Plugin Button Size:'=>'Tamanho do Botão do Plugin:','Plugin button Color: '=>'Cor do Botão do Plugin: ','Professional Keyboard Navigation'=>'Navegação por Teclado Profissional','Real-Time Website Performance Analysis'=>'Análise de Performance do Site em Tempo Real','Security check failed'=>'Verificação de segurança falhou','Smart Screen Reader Integration'=>'Integração Inteligente de Leitor de Ecrã','Smart Site Search Engine'=>'Motor de Pesquisa Inteligente do Site','The upcoming version introduces advanced features like:'=>'A próxima versão introduz funcionalidades avançadas como:','WordPress Performance & Security Score'=>'Pontuação de Performance e Segurança WordPress','🎉 Congratulations!'=>'🎉 Parabéns!','👉 Join Campaign at Meacodes.com'=>'👉 Juntar-se à Campanha em Meacodes.com','Attention'=>'Atenção','We updated the plugin button logic to enable more customization. If after updating it does not work on your site, this is likely a cache issue. Please clear your server and browser cache, then refresh the page.'=>'Atualizámos a lógica do botão do plugin para permitir mais personalização. Se após a atualização não funcionar no seu site, isto é provavelmente um problema de cache. Por favor, limpe o cache do servidor e do navegador, depois atualize a página.','💎 Register your website now in our Airdrop Campaign to claim your exclusive rewards and upcoming discounts!'=>'💎 Registe o seu site agora na nossa Campanha Airdrop para reclamar as suas recompensas exclusivas e descontos próximos!','Because you\'re using the %s plugin, you\'ve earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!'=>'Porque está a usar o plugin Ferramentas de Acessibilidade Meacodes, ganhou uma insígnia exclusiva para uma subscrição Pro Version 2 de 3 meses — em breve!','You\'ve been recognized as an Early Supporter of Meacodes Accessibility Tools — a special thank-you to everyone helping us build a more accessible web 🌍'=>'Foi reconhecido como Early Supporter das Ferramentas de Acessibilidade Meacodes — um agradecimento especial a todos os que nos ajudam a construir uma web mais acessível 🌍','With the upcoming Pro Version 2, you\'ll unlock early-access privileges such as:'=>'Com a próxima Pro Version 2, desbloqueará privilégios de acesso antecipado como:','Modern mobile-first responsive design'=>'Design responsivo moderno mobile-first','Smart accessibility enhancements'=>'Melhorias inteligentes de acessibilidade','WCAG 2.1 issue detection & analytics'=>'Detecção de problemas WCAG 2.1 e análises','Deep customization options'=>'Opções de personalização profundas','Your Early Supporter Badge will be verified automatically during the Pro 2 rollout. Stay tuned and learn more about the upcoming release at'=>'O seu Badge Early Supporter será verificado automaticamente durante o lançamento do Pro 2. Fique atento e saiba mais sobre o próximo lançamento em','👉 meacodes.com'=>'👉 meacodes.com','This notice will hide for 24 hours once dismissed.'=>'Este aviso será ocultado por 24 horas uma vez dispensado.','You\'ve been recognized as an %s of Meacodes Accessibility Tools.'=>'Foi reconhecido como %s das Ferramentas de Acessibilidade Meacodes.','As part of the upcoming %s rollout, early supporters will receive an exclusive %s and extended Pro access privileges.'=>'Como parte do próximo lançamento de %s, os early supporters receberão um %s exclusivo e privilégios de acesso Pro estendidos.','To learn how the badge system works and how sites are verified,'=>'Para aprender como o sistema de badges funciona e como os sites são verificados,','👉 visit meacodes.com/early-supporter'=>'👉 visite meacodes.com/early-supporter']];
  • meacodes-accessibility-tools/trunk/languages/meacodes-accessibility-tools-pt_PT.po

    r3378044 r3378438  
    728728msgstr "Análises Avançadas e Insights de Acessibilidade"
    729729
    730 msgid "Airdrop Campaign Active!"
    731 msgstr "Campanha Airdrop Ativa!"
    732730
    733731msgid "Auto Translate – Seamless Multilingual Experience"
     
    761759msgstr "Permissões insuficientes"
    762760
    763 msgid "Join Now"
    764 msgstr "Juntar-se Agora"
    765 
    766 msgid "Join our exclusive airdrop and earn rewards. Limited time offer!"
    767 msgstr "Junte-se ao nosso airdrop exclusivo e ganhe recompensas. Oferta por tempo limitado!"
     761
    768762
    769763msgid "Meacodes Development Solutions"
     
    835829msgid "Because you're using the %s plugin, you've earned an exclusive badge for a 3-month Pro Version 2 subscription — launching soon!"
    836830msgstr "Porque está a usar o plugin Ferramentas de Acessibilidade Meacodes, ganhou uma insígnia exclusiva para uma subscrição Pro Version 2 de 3 meses — em breve!"
     831
     832msgid "You've been recognized as an Early Supporter of Meacodes Accessibility Tools — a special thank-you to everyone helping us build a more accessible web 🌍"
     833msgstr "Foi reconhecido como Early Supporter das Ferramentas de Acessibilidade Meacodes — um agradecimento especial a todos os que nos ajudam a construir uma web mais acessível 🌍"
     834
     835msgid "With the upcoming Pro Version 2, you'll unlock early-access privileges such as:"
     836msgstr "Com a próxima Pro Version 2, desbloqueará privilégios de acesso antecipado como:"
     837
     838msgid "Modern mobile-first responsive design"
     839msgstr "Design responsivo moderno mobile-first"
     840
     841msgid "Smart accessibility enhancements"
     842msgstr "Melhorias inteligentes de acessibilidade"
     843
     844msgid "WCAG 2.1 issue detection & analytics"
     845msgstr "Detecção de problemas WCAG 2.1 e análises"
     846
     847msgid "Deep customization options"
     848msgstr "Opções de personalização profundas"
     849
     850msgid "Your Early Supporter Badge will be verified automatically during the Pro 2 rollout. Stay tuned and learn more about the upcoming release at"
     851msgstr "O seu Badge Early Supporter será verificado automaticamente durante o lançamento do Pro 2. Fique atento e saiba mais sobre o próximo lançamento em"
     852
     853msgid "👉 meacodes.com"
     854msgstr "👉 meacodes.com"
     855
     856msgid "This notice will hide for 24 hours once dismissed."
     857msgstr "Este aviso será ocultado por 24 horas uma vez dispensado."
     858
     859msgid "You've been recognized as an %s of Meacodes Accessibility Tools."
     860msgstr "Foi reconhecido como %s das Ferramentas de Acessibilidade Meacodes."
     861
     862msgid "As part of the upcoming %s rollout, early supporters will receive an exclusive %s and extended Pro access privileges."
     863msgstr "Como parte do próximo lançamento de %s, os early supporters receberão um %s exclusivo e privilégios de acesso Pro estendidos."
     864
     865msgid "To learn how the badge system works and how sites are verified,"
     866msgstr "Para aprender como o sistema de badges funciona e como os sites são verificados,"
     867
     868msgid "👉 visit meacodes.com/early-supporter"
     869msgstr "👉 visite meacodes.com/early-supporter"
  • meacodes-accessibility-tools/trunk/languages/meacodes-accessibility-tools.pot

    r3378044 r3378438  
    136136
    137137#: assets/admin/admin-theme.php:63
    138 msgid "Airdrop Campaign Active!"
    139 msgstr ""
    140138
    141139#: assets/admin/admin-theme.php:64
    142 msgid "Join our exclusive airdrop and earn rewards. Limited time offer!"
    143 msgstr ""
    144140
    145141#: assets/admin/admin-theme.php:67
    146 msgid "Join Now"
    147 msgstr ""
    148142
    149143#: assets/admin/admin-theme.php:75
     
    541535msgstr ""
    542536
     537
     538msgid "You've been recognized as an Early Supporter of Meacodes Accessibility Tools — a special thank-you to everyone helping us build a more accessible web 🌍"
     539msgstr ""
     540
     541msgid "With the upcoming Pro Version 2, you'll unlock early-access privileges such as:"
     542msgstr ""
     543
     544msgid "Modern mobile-first responsive design"
     545msgstr ""
     546
     547msgid "Smart accessibility enhancements"
     548msgstr ""
     549
     550msgid "WCAG 2.1 issue detection & analytics"
     551msgstr ""
     552
     553msgid "Deep customization options"
     554msgstr ""
     555
     556msgid "Your Early Supporter Badge will be verified automatically during the Pro 2 rollout. Stay tuned and learn more about the upcoming release at"
     557msgstr ""
     558
     559msgid "👉 meacodes.com"
     560msgstr ""
     561
     562msgid "This notice will hide for 24 hours once dismissed."
     563msgstr ""
     564
     565msgid "You've been recognized as an %s of Meacodes Accessibility Tools."
     566msgstr ""
     567
     568msgid "As part of the upcoming %s rollout, early supporters will receive an exclusive %s and extended Pro access privileges."
     569msgstr ""
     570
     571msgid "To learn how the badge system works and how sites are verified,"
     572msgstr ""
     573
     574msgid "👉 visit meacodes.com/early-supporter"
     575msgstr ""
  • meacodes-accessibility-tools/trunk/meacodes-accessibility-tools.php

    r3378044 r3378438  
    44Plugin URI: https://www.meacodes.com/accessibility
    55Description:This is an accessibility tools for people with disabilities to use the web easily.
    6 Version: 1.1.3
     6Version: 1.1.4
    77Author: Meacodes Development Solutions
    88Author URI: https://www.meacodes.com
     
    1313*/
    1414defined('ABSPATH') || exit;
    15 define('meaAccessibility_PLUGIN_VERSION', '1.1.3');
     15define('meaAccessibility_PLUGIN_VERSION', '1.1.4');
    1616
    1717// Cache busting function for asset versioning
  • meacodes-accessibility-tools/trunk/readme.txt

    r3378044 r3378438  
    55Requires at least: 4.0
    66Tested up to: 6.8
    7 Stable tag: 1.1.3
     7Stable tag: 1.1.4
    88Requires PHP: 5.4
    99License: GPLv2 or later
     
    157157* fix /language folder missing and update some local translation po/mo files
    158158* add notification aboute clearing browser cache Requires
     159
     160= 1.1.4 =
     161* fix banner overloading on all over admin dashboard issue
Note: See TracChangeset for help on using the changeset viewer.