Plugin Directory

Changeset 3451337


Ignore:
Timestamp:
02/01/2026 11:23:59 AM (2 months ago)
Author:
mightyrobin
Message:

Update to version 1.0.1 - simplified settings, updated Dutch translations

Location:
mighty-notification-bar/trunk
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • mighty-notification-bar/trunk/admin/admin-page.php

    r3450977 r3451337  
    167167                        </tr>
    168168                       
    169                         <tr>
    170                             <th scope="row">
    171                                 <label for="z_index"><?php esc_html_e('Z-index', 'mighty-notification-bar'); ?></label>
    172                             </th>
    173                             <td>
    174                                 <input type="number"
    175                                        name="mighty_nb_options[z_index]"
    176                                        id="z_index"
    177                                        value="<?php echo esc_attr($options['z_index']); ?>"
    178                                        min="1"
    179                                        step="1"
    180                                        class="small-text">
    181                                 <p class="description"><?php esc_html_e('Higher value = bar appears above other elements', 'mighty-notification-bar'); ?></p>
    182                             </td>
    183                         </tr>
    184169                    </table>
    185170                </div>
  • mighty-notification-bar/trunk/languages/mighty-notification-bar-en_US.po

    r3450977 r3451337  
    249249msgid "Close"
    250250msgstr "Close"
    251 
    252 #: notification-bar.php:60
    253 #: notification-bar.php:61
    254 msgid "Notification Bar"
    255 msgstr "Notification Bar"
  • mighty-notification-bar/trunk/languages/mighty-notification-bar-nl_BE.po

    r3450977 r3451337  
    1818#: admin/admin-page.php:9
    1919msgid "Display important announcements on your website"
    20 msgstr "Toon belangrijke mededelingen op je website"
     20msgstr "Toon belangrijke mededelingen op je site"
    2121
    2222#: admin/admin-page.php:12
     
    3939#: admin/admin-page.php:71
    4040msgid "Show notification bar on your website"
    41 msgstr "Toon notification bar op je website"
     41msgstr "Toon mededelingen bar op je site"
    4242
    4343#: admin/admin-page.php:78
     
    243243#: admin/admin-page.php:47
    244244msgid "Save your changes to see the bar on your website"
    245 msgstr "Sla je wijzigingen op om de bar op je website te zien"
     245msgstr "Sla je wijzigingen op om de bar op je site te zien"
    246246
    247247#: templates/notification-bar.php:31
    248248msgid "Close"
    249249msgstr "Sluiten"
    250 
    251 #: notification-bar.php:60
    252 #: notification-bar.php:61
    253 msgid "Notification Bar"
    254 msgstr "Notification Bar"
  • mighty-notification-bar/trunk/languages/mighty-notification-bar-nl_NL.po

    r3450977 r3451337  
    1818#: admin/admin-page.php:9
    1919msgid "Display important announcements on your website"
    20 msgstr "Toon belangrijke mededelingen op je website"
     20msgstr "Toon belangrijke mededelingen op je site"
    2121
    2222#: admin/admin-page.php:12
     
    3939#: admin/admin-page.php:71
    4040msgid "Show notification bar on your website"
    41 msgstr "Toon notification bar op je website"
     41msgstr "Toon mededelingen bar op je site"
    4242
    4343#: admin/admin-page.php:78
     
    243243#: admin/admin-page.php:47
    244244msgid "Save your changes to see the bar on your website"
    245 msgstr "Sla je wijzigingen op om de bar op je website te zien"
     245msgstr "Sla je wijzigingen op om de bar op je site te zien"
    246246
    247247#: templates/notification-bar.php:31
    248248msgid "Close"
    249249msgstr "Sluiten"
    250 
    251 #: notification-bar.php:60
    252 #: notification-bar.php:61
    253 msgid "Notification Bar"
    254 msgstr "Notification Bar"
  • mighty-notification-bar/trunk/languages/mighty-notification-bar-nl_NL_formal.po

    r3450977 r3451337  
    1818#: admin/admin-page.php:9
    1919msgid "Display important announcements on your website"
    20 msgstr "Toon belangrijke mededelingen op uw website"
     20msgstr "Toon belangrijke mededelingen op uw site"
    2121
    2222#: admin/admin-page.php:12
     
    3939#: admin/admin-page.php:71
    4040msgid "Show notification bar on your website"
    41 msgstr "Toon notification bar op uw website"
     41msgstr "Toon mededelingen bar op uw site"
    4242
    4343#: admin/admin-page.php:78
     
    243243#: admin/admin-page.php:47
    244244msgid "Save your changes to see the bar on your website"
    245 msgstr "Sla uw wijzigingen op om de bar op uw website te zien"
     245msgstr "Sla uw wijzigingen op om de bar op uw site te zien"
    246246
    247247#: templates/notification-bar.php:31
    248248msgid "Close"
    249249msgstr "Sluiten"
    250 
    251 #: notification-bar.php:60
    252 #: notification-bar.php:61
    253 msgid "Notification Bar"
    254 msgstr "Notification Bar"
  • mighty-notification-bar/trunk/languages/mighty-notification-bar.pot

    r3450977 r3451337  
    244244msgid "Close"
    245245msgstr ""
    246 
    247 #: notification-bar.php:60
    248 #: notification-bar.php:61
    249 msgid "Notification Bar"
    250 msgstr ""
  • mighty-notification-bar/trunk/notification-bar.php

    r3450977 r3451337  
    44 * Plugin URI: https://mightyrobin.com
    55 * Description: A flexible notification bar for important announcements on your website
    6  * Version: 1.0.0
     6 * Version: 1.0.1
    77 * Author: Mighty Robin
    88 * Author URI: https://mightyrobin.com
     
    1919
    2020// Define plugin constants
    21 define('MIGHTY_NB_VERSION', '1.0.0');
     21define('MIGHTY_NB_VERSION', '1.0.1');
    2222define('MIGHTY_NB_PLUGIN_DIR', plugin_dir_path(__FILE__));
    2323define('MIGHTY_NB_PLUGIN_URL', plugin_dir_url(__FILE__));
     
    5858    public function add_admin_menu() {
    5959        add_menu_page(
    60             __('Notification Bar', 'mighty-notification-bar'),
    61             __('Notification Bar', 'mighty-notification-bar'),
     60            'Mighty Notification Bar',
     61            'Mighty Notification Bar',
    6262            'manage_options',
    6363            'mighty-notification-bar',
  • mighty-notification-bar/trunk/readme.txt

    r3450977 r3451337  
    55Requires at least: 5.8
    66Tested up to: 6.9
    7 Stable tag: 1.0.0
     7Stable tag: 1.0.1
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    148148* Smart content versioning - reappears when content changes
    149149* Schedule with start and end dates
    150 * Location targeting (all pages, homepage, specific pages)
     150* Location targeting (all pages, homepage)
    151151* Device targeting (all devices, desktop, mobile)
    152152* Z-index control for layering
     
    157157
    158158== Upgrade Notice ==
     159
     160= 1.0.1 =
     161* Improved: Simplified settings by removing advanced layering option
     162* Improved: Dutch translations updated to match WordPress glossary (thanks Peter Smits!)
    159163
    160164= 1.0.0 =
     
    188192
    189193Developed with ❤️ by [Mighty Robin](https://mightyrobin.com)
     194
     195Special thanks to:
     196* Peter Smits — Dutch translation review
  • mighty-notification-bar/trunk/templates/notification-bar.php

    r3450977 r3451337  
    1515     style="background-color: <?php echo esc_attr($options['background_color']); ?>;
    1616            color: <?php echo esc_attr($options['text_color']); ?>;
    17             z-index: <?php echo esc_attr($options['z_index']); ?>;">
     17            z-index: 99999;">
    1818   
    1919    <div class="mighty-notification-bar-container">
Note: See TracChangeset for help on using the changeset viewer.