Plugin Directory

Changeset 1797270


Ignore:
Timestamp:
01/04/2018 10:29:54 PM (8 years ago)
Author:
magblogapi
Message:

3.9.1 Release

Location:
bmlt-wordpress-satellite-plugin/trunk
Files:
62 edited

Legend:

Unmodified
Added
Removed
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/README.md

    r1795059 r1797270  
    2222CHANGELIST
    2323----------
     24
     25***Version 3.9.1* ** *- January 4, 2018*
     26
     27- Fixed an issue where some translated versions had bad settings in the BMLT options initial map type.
     28- New Italian Translation.
     29- Fixed a bug in the admin screen where it was possible to cause problems with translated strings containing apostrophes.
    2430
    2531***Version 3.9.0* ** *- December 31, 2017*
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/admin_javascript.js

    r1795059 r1797270  
    22* \file admin_javascript.js                                                                 *
    33* \brief The javascript for the BMLTPlugin class (Admin options).                           *
    4 *   \version 3.9.0                                                                          *
     4*   \version 3.9.1                                                                          *
    55   
    66    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/admin_styles.css

    r1795059 r1797270  
    22* \file admin_styles.css                                                                    *
    33* \brief The CSS for the BMLTPlugin class (Admin options).                                  *
    4 *   \version 3.9.0                                                                          *
     4*   \version 3.9.1                                                                          *
    55   
    66    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/bmlt-cms-satellite-plugin.php

    r1795059 r1797270  
    44*                                                                                           *
    55*   \brief  This is a generic CMS plugin class for a BMLT satellite client.                 *
    6 *   \version 3.9.0                                                                          *
     6*   \version 3.9.1                                                                          *
    77*                                                                                           *
    88*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
     
    10721072                        // This is a trick I use to hide irrelevant content from non-JS browsers. The element is drawn, hidden, then uses JS to show. No JS, no element.
    10731073                        $html .= "document.getElementById('BMLTPlugin_options_container').style.display='block';" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
    1074                         $html .= "var c_g_BMLTPlugin_no_name = '".$this->process_text ( $this->my_current_language->local_options_no_name_string )."';" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
    1075                         $html .= "var c_g_BMLTPlugin_no_root = '".$this->process_text ( $this->my_current_language->local_options_no_root_server_string )."';" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
     1074                        $html .= "var c_g_BMLTPlugin_no_name = '".$this->process_text ( str_replace ("'", "\\'", $this->my_current_language->local_options_no_name_string ) )."';" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
     1075                        $html .= "var c_g_BMLTPlugin_no_root = '".$this->process_text ( str_replace ("'", "\\'", $this->my_current_language->local_options_no_root_server_string ) )."';" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
    10761076                        $html .= "var c_g_BMLTPlugin_root_canal = '".$this->my_current_language->local_options_url_bad.(defined ( '_DEBUG_MODE_' ) ? "';\n" : "';");
    1077                         $html .= "var c_g_BMLTPlugin_success_message = '".$this->process_text ( $this->my_current_language->local_options_save_success )."';" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
    1078                         $html .= "var c_g_BMLTPlugin_failure_message = '".$this->process_text ( $this->my_current_language->local_options_save_failure )."';" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
     1077                        $html .= "var c_g_BMLTPlugin_success_message = '".$this->process_text ( str_replace ("'", "\\'", $this->my_current_language->local_options_save_success ) )."';" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
     1078                        $html .= "var c_g_BMLTPlugin_failure_message = '".$this->process_text ( str_replace ("'", "\\'", $this->my_current_language->local_options_save_failure ) )."';" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
    10791079                        $html .= "var c_g_BMLTPlugin_success_time = ".intval ( self::$local_options_success_time ).";" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
    10801080                        $html .= "var c_g_BMLTPlugin_failure_time = ".intval ( self::$local_options_failure_time ).";" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
    1081                         $html .= "var c_g_BMLTPlugin_unsaved_prompt = '".$this->process_text ( $this->my_current_language->local_options_unsaved_message )."';" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
    1082                         $html .= "var c_g_BMLTPlugin_test_server_success = '".$this->process_text ( $this->my_current_language->local_options_test_server_success )."';" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
    1083                         $html .= "var c_g_BMLTPlugin_test_server_failure = '".$this->process_text ( $this->my_current_language->local_options_test_server_failure )."';" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
     1081                        $html .= "var c_g_BMLTPlugin_unsaved_prompt = '".$this->process_text ( str_replace ("'", "\\'", $this->my_current_language->local_options_unsaved_message ) )."';" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
     1082                        $html .= "var c_g_BMLTPlugin_test_server_success = '".$this->process_text ( str_replace ("'", "\\'", $this->my_current_language->local_options_test_server_success ) )."';" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
     1083                        $html .= "var c_g_BMLTPlugin_test_server_failure = '".$this->process_text ( str_replace ("'", "\\'", $this->my_current_language->local_options_test_server_failure ) )."';" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
    10841084                        $html .= "var c_g_BMLTPlugin_coords = new Array();" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
    10851085                        $html .= "var g_BMLTPlugin_TimeToFade = ".intval ( self::$local_options_success_time ).";" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
    1086                         $html .= "var g_BMLTPlugin_no_gkey_string = '".$this->process_text ( $this->my_current_language->local_options_no_gkey_string)."';" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
     1086                        $html .= "var g_BMLTPlugin_no_gkey_string = '".$this->process_text ( str_replace ("'", "\\'", $this->my_current_language->local_options_no_gkey_string) )."';" . (defined ( '_DEBUG_MODE_' ) ? "\n" : '');
    10871087                        if ( is_array ( $options_coords ) && count ( $options_coords ) )
    10881088                            {
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/bmlt-unit-test-satellite-plugin.php

    r1795059 r1797270  
    44*                                                                                           *
    55*   \brief  This is a standalone unit test plugin of a BMLT satellite client.               *
    6 *   \version 3.9.0                                                                          *
     6*   \version 3.9.1                                                                          *
    77*                                                                                           *
    88*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/fast_mobile_lookup.js

    r1795059 r1797270  
    22* \file fast_mobile_lookup.js                                                               *
    33* \brief Javascript functions for the fast mobile lookup map interface.                     *
    4 *   \version 3.9.0                                                                          *
     4*   \version 3.9.1                                                                          *
    55*                                                                                           *
    66*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/javascript.js

    r1795059 r1797270  
    22* \file javascript.js                                                                       *
    33* \brief The javascript for the BMLTPlugin class.                                           *
    4 *   \version 3.9.0                                                                          *
     4*   \version 3.9.1                                                                          *
    55   
    66    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/lang/BMLT_Localized_BaseClass.class.php

    r1795059 r1797270  
    55*                                                                                           *
    66*   \brief  This file contains The base localizations c;ass                                 *
    7 *   \version 3.9.0                                                                          *
     7*   \version 3.9.1                                                                          *
    88*                                                                                           *
    99*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
     
    9090
    9191    var $local_options_google_api_label;       ///< The label for the Google Maps API Key Text Entry.
    92 
     92    var $local_options_auto_search_radius_prompt;    ///< The label for the Auto Search Density popup.
     93    var $local_options_auto_search_radius_display_names;             ///< The values for the auto-search density popup.
    9394    var $local_options_week_begins_on_prompt;       ///< This is the label for the week start popup menu.
    9495
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/lang/lang_da.php

    r1795059 r1797270  
    55*                                                                                           *
    66*   \brief  This file contains Danish localizations.                                        *
    7 *   \version 3.9.0                                                                          *
     7*   \version 3.9.1                                                                          *
    88*                                                                                           *
    99*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
     
    7878        $this->local_options_mobile_time_offset_label = 'Time Offset:';       ///< This may have an offset (time zone difference) from the main server.
    7979        $this->local_options_initial_view = array (                           ///< The list of choices for presentation in the popup.
    80                                                     'kort' => 'Kort', 'tekst' => 'Tekst', 'advanceret_kort' => 'Advanceret Kort', 'advanceret_tekst' => 'Advanceret Tekst'
     80                                                    'map' => 'Kort',
     81                                                    'text' => 'Tekst',
     82                                                    'advanced_map' => 'Advanceret Kort',
     83                                                    'advanced_text' => 'Advanceret Tekst'
    8184                                                    );
    8285        $this->local_options_initial_view_prompt = 'Standard Søgning:';    ///< The label for the initial view popup.
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/lang/lang_de.php

    r1795059 r1797270  
    55*                                                                                           *
    66*   \brief  This file contains German localizations.                                        *
    7 *   \version 3.9.0                                                                          *
     7*   \version 3.9.1                                                                          *
    88*                                                                                           *
    99*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
     
    7878        $this->local_options_mobile_time_offset_label = 'Zeitverschiebung:';       ///< This may have an offset (time zone difference) from the main server.
    7979        $this->local_options_initial_view = array (                           ///< The list of choices for presentation in the popup.
    80                                                     'map' => 'karte', 'text' => 'Text', 'advanced_map' => 'Erweiterte karte', 'advanced_text' => 'Erweiterter Text'
     80                                                    'map' => 'karte',
     81                                                    'text' => 'Text',
     82                                                    'advanced_map' => 'Erweiterte karte',
     83                                                    'advanced_text' => 'Erweiterter Text'
    8184                                                    );
    8285        $this->local_options_initial_view_prompt = 'Anfänglicher Suchtyp:';    ///< The label for the initial view popup.
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/lang/lang_en.php

    r1795059 r1797270  
    55*                                                                                           *
    66*   \brief  This file contains English localizations.                                       *
    7 *   \version 3.9.0                                                                          *
     7*   \version 3.9.1                                                                          *
    88*                                                                                           *
    99*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
     
    7878        $this->local_options_mobile_time_offset_label = 'Time Offset:';       ///< This may have an offset (time zone difference) from the main server.
    7979        $this->local_options_initial_view = array (                           ///< The list of choices for presentation in the popup.
    80                                                     'map' => 'Map', 'text' => 'Text', 'advanced_map' => 'Advanced Map', 'advanced_text' => 'Advanced Text'
     80                                                    'map' => 'Map',
     81                                                    'text' => 'Text',
     82                                                    'advanced_map' => 'Advanced Map',
     83                                                    'advanced_text' => 'Advanced Text'
    8184                                                    );
    8285        $this->local_options_initial_view_prompt = 'Initial Search Type:';    ///< The label for the initial view popup.
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/lang/lang_es.php

    r1795059 r1797270  
    7878        $this->local_options_mobile_time_offset_label = 'Diferencia de Uso Horario para el Root Server:';       ///< This may have an offset (time zone difference) from the main server.
    7979        $this->local_options_initial_view = array (                           ///< The list of choices for presentation in the popup.
    80                                                     'map' => 'Mapa', 'text' => 'Texto', 'advanced_map' => 'Mapa Avanzado', 'advanced_text' => 'Texto Avanzado'
     80                                                    'map' => 'Mapa',
     81                                                    'text' => 'Texto',
     82                                                    'advanced_map' => 'Mapa Avanzado',
     83                                                    'advanced_text' => 'Texto Avanzado'
    8184                                                    );
    8285        $this->local_options_initial_view_prompt = 'Tipo de Búsqueda Inicial:';    ///< The label for the initial view popup.
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/lang/lang_fr.php

    r1795059 r1797270  
    55*                                                                                           *
    66*   \brief  This file contains French localizations.                                        *
    7 *   \version 3.9.0                                                                          *
     7*   \version 3.9.1                                                                          *
    88*                                                                                           *
    99*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
     
    7878        $this->local_options_mobile_time_offset_label = 'Écart de temps: ';       ///< This may have an offset (time zone difference) from the main server.
    7979        $this->local_options_initial_view = array (                           ///< The list of choices for presentation in the popup.
    80                                                     'map' => 'Carte', 'text' => 'Texte', 'advanced_map' => 'Carte Avancée', 'advanced_text' => 'Texte Avancé'
     80                                                    'map' => 'Carte',
     81                                                    'text' => 'Texte',
     82                                                    'advanced_map' => 'Carte Avancée',
     83                                                    'advanced_text' => 'Texte Avancé'
    8184                                                    );
    8285        $this->local_options_initial_view_prompt = 'Type de recherche innitial: ';    ///< The label for the initial view popup.
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/lang/lang_it.php

    r1795059 r1797270  
    55*                                                                                           *
    66*   \brief  This file contains Italian localizations.                                       *
    7 *   \version 3.9.0                                                                          *
     7*   \version 3.9.1                                                                          *
    88*                                                                                           *
    99*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
     
    3939   
    4040        /// These are all for the admin pages.
    41         $this->local_options_lang_prompt = 'Language:';                       ///< The label for the Language Selector.
    42         $this->local_options_title = 'Basic Meeting List Toolbox Options';    ///< This is the title that is displayed over the options.
     41        $this->local_options_lang_prompt = 'Lingua:';                       ///< The label for the Language Selector.
     42        $this->local_options_title = 'Opzioni del Basic Meeting List Toolbox';    ///< This is the title that is displayed over the options.
    4343        $this->local_menu_string = 'Opzioni BMLT';                            ///< 'BMLT Options' - The name of the menu item.
    4444        $this->local_options_prefix = 'Seleziona impostazioni ';              ///< 'Select Setting ' - The string displayed before each number in the options popup.
     
    5353        $this->local_options_save_success = 'Le impostazioni sono state aggiornate con successo.';   ///< 'The settings were created successfully.' - The string displayed upon successful update of an option page.
    5454        $this->local_options_save_failure = 'Le impostazioni non sono state aggiornate.';     ///< 'The settings were not updated.' - The string displayed upon unsuccessful update of an option page.
    55         $this->local_options_url_bad = 'This root server URL will not work for this plugin.';        ///< The string displayed if a root server URI fails to point to a valid root server.
     55        $this->local_options_url_bad = 'Questa URL root server non funzionerà per questo plugin.';        ///< The string displayed if a root server URI fails to point to a valid root server.
    5656        $this->local_options_access_failure = 'Non hai i permessi per compiere questa operazione.';  ///< 'You are not allowed to perform this operation.' - This is displayed if a user attempts a no-no.
    5757        $this->local_options_unsaved_message = 'Hai modifiche non salvate. Sei sicuro di voler uscire senza salvarle?';   ///< 'You have unsaved changes. Are you sure you want to leave without saving them?' - This is displayed if a user attempts to leave a page without saving the options.
    5858        $this->local_options_settings_id_prompt = 'L\'ID per questa impostazione è ';    ///< 'The ID for this Setting is ' - This is so that users can see the ID for the setting.
    59         $this->local_options_settings_location_checkbox_label = 'Text Searches Start Off with the "Location" Checkbox On.';   ///< This is so that users can see the ID for the setting.
     59        $this->local_options_settings_location_checkbox_label = 'La ricerca testuale inizia con la casella "Località" attiva.';   ///< 'Text Searches Start Off with the "Location" Checkbox On.' This is so that users can see the ID for the setting.
    6060   
    6161        /// These are all for the admin page option sheets.
    62         $this->local_options_name_label = 'Setting Name:';                    ///< The Label for the setting name item.
     62        $this->local_options_name_label = 'Nome dell\'impostazione:';                    /// 'Setting Name:' < The Label for the setting name item.
    6363        $this->local_options_rootserver_label = 'Root Server:';               ///< The Label for the root server item.
    64         $this->local_options_new_search_label = 'New Search URL:';            ///< The Label for the new search item.
    65         $this->local_options_gkey_label = 'Google Maps API Key:';             ///< The Label for the Google Maps API Key item.
    66         $this->local_options_no_name_string = 'Enter Setting Name';           ///< The Value to use for a name field for a setting with no name.
    67         $this->local_options_no_root_server_string = 'Enter a Root Server URL';                               ///< The Value to use for a root with no URL.
    68         $this->local_options_no_new_search_string = 'Enter a New Search URL'; ///< The Value to use for a new search with no URL.
    69         $this->local_options_no_gkey_string = 'Enter a New API Key';          ///< The Value to use for a new search with no URL.
    70         $this->local_options_test_server = 'Test';                            ///< This is the title for the "test server" button.
    71         $this->local_options_test_server_success = 'Version ';                ///< This is a prefix for the version, on success.
    72         $this->local_options_test_server_failure = 'This Root Server URL is not Valid';                       ///< This is a prefix for the version, on failure.
    73         $this->local_options_test_server_tooltip = 'This tests the root server, to see if it is OK.';         ///< This is the tooltip text for the "test server" button.
    74         $this->local_options_map_label = 'Select a Center Point and Zoom Level for Map Displays';             ///< The Label for the map.
    75         $this->local_options_mobile_legend = 'These affect the Various Interactive Searches (such as Map, Mobile and Advanced)';  ///< This indicates that the enclosed settings are for the fast mobile lookup.
    76         $this->local_options_mobile_grace_period_label = 'Grace Period:';     ///< When you do a "later today" search, you get a "Grace Period."
    77         $this->local_options_mobile_region_bias_label = 'Region Bias:';       ///< The label for the Region Bias Selector.
    78         $this->local_options_mobile_time_offset_label = 'Time Offset:';       ///< This may have an offset (time zone difference) from the main server.
     64        $this->local_options_new_search_label = 'URL della nuova ricerca:';            ///'New Search URL:' < The Label for the new search item.
     65        $this->local_options_gkey_label = 'Chiave (key) delle API di Google Maps:';             /// 'Google Maps API Key:' < The Label for the Google Maps API Key item.
     66        $this->local_options_no_name_string = 'Inserisci il nome dell\'impostazione';           /// 'Enter Setting Name' < The Value to use for a name field for a setting with no name.
     67        $this->local_options_no_root_server_string = 'Inserisci un indirizzo per il Root Server';                               /// 'Enter a Root Server URL' < The Value to use for a root with no URL.
     68        $this->local_options_no_new_search_string = 'Inserisci un nuovo indirizzo di ricerca'; /// 'Enter a New Search URL' < The Value to use for a new search with no URL.
     69        $this->local_options_no_gkey_string = 'Inserisci una nuova chiave (key) API';          /// 'Enter a New API Key' < The Value to use for a new search with no URL.
     70        $this->local_options_test_server = 'Test';                            /// 'Test' < This is the title for the "test server" button.
     71        $this->local_options_test_server_success = 'Versione ';                /// 'Version ' < This is a prefix for the version, on success.
     72        $this->local_options_test_server_failure = 'Questo indirizzo del Root Server non è valido';                       /// 'This Root Server URL is not Valid' < This is a prefix for the version, on failure.
     73        $this->local_options_test_server_tooltip = 'Questo testa il Root server, per vedere se è a posto (OK).';         /// 'This tests the root server, to see if it is OK.'< This is the tooltip text for the "test server" button.
     74        $this->local_options_map_label = 'Scegli un punto centrale e un livello di zoom per le visualizzazioni della mappa';             /// 'Select a Center Point and Zoom Level for Map Displays'< The Label for the map.
     75        $this->local_options_mobile_legend = 'Questi riguardano le diverse ricerche interattive (come Mappa, Mobile e Avanzate)';  /// 'These affect the Various Interactive Searches (such as Map, Mobile and Advanced)'< This indicates that the enclosed settings are for the fast mobile lookup.
     76        $this->local_options_mobile_grace_period_label = 'Periodo di grazia:';     /// 'Grace Period:'< When you do a "later today" search, you get a "Grace Period."
     77        $this->local_options_mobile_region_bias_label = 'Discrimina regione:';       /// 'Region Bias:'< The label for the Region Bias Selector.
     78        $this->local_options_mobile_time_offset_label = 'Sbilanciamento (offset) temporale:';       /// 'Time Offset:'< This may have an offset (time zone difference) from the main server.
    7979        $this->local_options_initial_view = array (                           ///< The list of choices for presentation in the popup.
    80                                                     'map' => 'Map', 'text' => 'Text', 'advanced_map' => 'Advanced Map', 'advanced_text' => 'Advanced Text'
     80                                                    'map'           => 'Mappa',
     81                                                    'text'          => 'Testo',
     82                                                    'advanced_map'  => 'Mappa (avanzata)',
     83                                                    'advanced_text' => 'Testo (avanzato)' /// 'map' => 'Map', 'text' => 'Text', 'advanced_map' => 'Advanced Map', 'advanced_text' => 'Advanced Text'
    8184                                                    );
    82         $this->local_options_initial_view_prompt = 'Initial Search Type:';    ///< The label for the initial view popup.
    83         $this->local_options_theme_prompt = 'Select a Color Theme:';          ///< The label for the theme selection popup.
    84         $this->local_options_more_styles_label = 'Add CSS Styles to the Plugin:';                             ///< The label for the Additional CSS textarea.
    85         $this->local_options_distance_prompt = 'Distance Units:';             ///< This is for the distance units select.
    86         $this->local_options_distance_disclaimer = 'This will not affect all of the displays.';               ///< This tells the admin that only some stuff will be affected.
    87         $this->local_options_grace_period_disclaimer = 'Minutes Elapsed Before A Meeting is Considered "Past" (For the fast Lookup Searches).';      ///< This explains what the grace period means.
    88         $this->local_options_time_offset_disclaimer = 'Hours of Difference From the Main Server (This is usually not necessary).';            ///< This explains what the time offset means.
    89         $this->local_options_miles = 'Miles';                                 ///< The string for miles.
    90         $this->local_options_kilometers = 'Kilometers';                       ///< The string for kilometers.
    91         $this->local_options_selectLocation_checkbox_text = 'Only Display Location Services for Mobile Devices';  ///< The label for the location services checkbox.
    92    
    93         $this->local_options_time_format_prompt = 'Time Format:';             ///< The label for the time format selection popup.
    94         $this->local_options_time_format_ampm = 'Ante Meridian (HH:MM AM/PM)';    ///< Ante Meridian Format Option
    95         $this->local_options_time_format_military = 'Military (HH:MM)';           ///< Military Time Format Option
    96    
    97         $this->local_options_google_api_label = 'Google Maps API Key:';       ///< The label for the Google Maps API Key Text Entry.
     85        $this->local_options_initial_view_prompt = 'Tipo iniziale di ricerca:';    /// 'Initial Search Type:' < The label for the initial view popup.
     86        $this->local_options_theme_prompt = 'Scegli il tema in base al colore:';          /// 'Select a Color Theme:' < The label for the theme selection popup.
     87        $this->local_options_more_styles_label = 'Aggiungi stili CSS al plugin:';                             ///< The label for the Additional CSS textarea.
     88        $this->local_options_distance_prompt = 'Unità di distanza:';             /// 'Distance Units:' < This is for the distance units select.
     89        $this->local_options_distance_disclaimer = 'Questo non riguarda tutte le visualizzazioni.';               /// 'This will not affect all of the displays.' < This tells the admin that only some stuff will be affected.
     90        $this->local_options_grace_period_disclaimer = 'Minuti rimanenti prima che una riunione sia da considerarsi passata (per ricerche veloci).';      /// 'Minutes Elapsed Before A Meeting is Considered "Past" (For the fast Lookup Searches).' < This explains what the grace period means.
     91        $this->local_options_time_offset_disclaimer = 'Ore di differenza dal Main server (dato di solito non necessario).';            /// 'Hours of Difference From the Main Server (This is usually not necessary).' < This explains what the time offset means.
     92        $this->local_options_miles = 'miglia';                                 /// 'Miles' < The string for miles.
     93        $this->local_options_kilometers = 'chilometri';                       /// 'Kilometers' < The string for kilometers.
     94        $this->local_options_selectLocation_checkbox_text = 'Mostra servizi di localizzazione solo per dispositivi mobili';  /// 'Only Display Location Services for Mobile Devices' < The label for the location services checkbox.
     95   
     96        $this->local_options_time_format_prompt = 'Formato orario:';             /// 'Time Format:' < The label for the time format selection popup.
     97        $this->local_options_time_format_ampm = 'Antimeridiano (HH:MM AM/PM)';    /// 'Ante Meridian (HH:MM AM/PM)' < Ante Meridian Format Option
     98        $this->local_options_time_format_military = 'Militare (HH:MM)';           /// 'Military (HH:MM)' < Military Time Format Option
     99   
     100        $this->local_options_google_api_label = 'Chiave (key) delle API di Google Maps:';       ///< The label for the Google Maps API Key Text Entry.
    98101       
    99102        $this->local_options_auto_search_radius_prompt = 'Densità automatica (della ricerca):';    ///< The label for the Auto Search Density popup.
    100103        $this->local_options_auto_search_radius_display_names = array (             ///< The values for the auto-search density popup.
    101                                                                         'Minimo'            => -2,
    102                                                                         'Minore (Less)'     => -5,
    103                                                                         'Normale'           => -10,
    104                                                                         'Maggiore (More)'   => -15,
    105                                                                         'Massimo'           => -30,
     104                                                                        'Minimo'    => -2,
     105                                                                        'Minore'    => -5,
     106                                                                        'Normale'   => -10,
     107                                                                        'Maggiore'  => -15,
     108                                                                        'Massimo'   => -30
    106109                                                                        );
    107110   
    108         $this->local_options_week_begins_on_prompt = 'Weeks begin on:';       ///< This is the label for the week start popup menu.
    109 
    110         $this->local_no_root_server = 'You need to provide a root server URI in order for this to work.';    ///< Displayed if there was no root server provided.
     111        $this->local_options_week_begins_on_prompt = 'La settimana inizia di:';       /// 'Weeks begin on:' < This is the label for the week start popup menu.
     112
     113        $this->local_no_root_server = 'Devi fornire l\'indirizzo di un root server affinché questo funzioni.';    /// 'You need to provide a root server URI in order for this to work.' < Displayed if there was no root server provided.
    111114
    112115        /// These are for the actual search displays
     
    114117        $this->local_clear_search = 'Cancella i risultati della ricerca';     ///< Clear Search Results; Used for the "Clear" item in the quick search popup.
    115118        $this->local_menu_new_search_text = 'Nuova ricerca';                  ///< For the new search menu in the old-style BMLT search.
    116         $this->local_cant_find_meetings_display = 'Nessuna riunione trovata in questa ricerca'; ///< 'No Meetings Found In This Search'; When the new map search cannot find any meetings.
    117         $this->local_single_meeting_tooltip = 'Segui questo link per dettagli su questa riunione.'; ///< 'Follow This Link for Details About This Meeting.';The tooltip shown for a single meeting.
     119        $this->local_cant_find_meetings_display = 'Nessuna riunione trovata con questa ricerca'; ///< 'No Meetings Found In This Search'; When the new map search cannot find any meetings.
     120        $this->local_single_meeting_tooltip = 'Segui questo link per i dettagli su questa riunione.'; ///< 'Follow This Link for Details About This Meeting.';The tooltip shown for a single meeting.
    118121        $this->local_gm_link_tooltip = 'Segui questo link per visualizzare questa riunione su Google Maps.';    ///< 'Follow This Link to be Taken to A Google Maps Location for This Meeting.'; The tooltip shown for the Google Maps link.
    119122   
    120123        /// These are for the change display
    121124        $this->local_change_label_date =  'Cambio data:';                     ///< 'Change Date:'; The date when the change was made.
    122         $this->local_change_label_meeting_name =  'Gruppo';            ///< 'Meeting Name:'; The name of the changed meeting.
    123         $this->local_change_label_service_body_name =  'Area:';               ///< 'Service Body:'; The name of the meeting's Service body.
     125        $this->local_change_label_meeting_name =  'Nome della riunione';            ///< 'Meeting Name:'; The name of the changed meeting.
     126        $this->local_change_label_service_body_name =  'Struttura di servizio:';               ///< 'Service Body:'; The name of the meeting's Service body.
    124127        $this->local_change_label_admin_name =  'Modificato da:';             ///< 'Changed By:'; The name of the Service Body Admin that made the change.
    125128        $this->local_change_label_description =  'Descrizione:';              ///< 'Description:'; The description of the change.
    126         $this->local_change_date_format = 'F j Y, \a\t g:i A';                ///< The format in which the change date/time is displayed.
     129        $this->local_change_date_format = 'F j Y, \a\t g:i A';                ///< 'F j Y, \a\t g:i A' The format in which the change date/time is displayed.
    127130   
    128131        /// A simple message for most <noscript> elements. We have a different one for the older interactive search (below).
     
    154157        $this->local_nouveau_display_map_results_text = 'Mostra i risultati della ricerca sulla mappa';    ///< The text for the display map results disclosure link.
    155158        $this->local_nouveau_display_list_results_text = 'Mostra i risultati della ricerca in una lista';  ///< The text for the display list results disclosure link.
    156         $this->local_nouveau_table_header_array = array ( 'Nazione', 'Stato', 'County', 'Città', 'Gruppo', 'Giorno', 'Orario', 'Località', 'Formato', 'Dettagli' );
     159        $this->local_nouveau_table_header_array = array ( 'Nazione', 'Regione', 'Provincia', 'Città', 'Gruppo', 'Giorno', 'Orario', 'Località', 'Formato', 'Dettagli' );
    157160        $this->local_nouveau_weekday_long_array = array ( 'Domenica', 'Lunedì', 'Martedì', 'Mercoledì', 'Giovedì', 'Venerdì', 'Sabato' );
    158161        $this->local_nouveau_weekday_short_array = array ( 'Dom', 'Lun', 'Mar', 'Mer', 'Gio', 'Ven', 'Sab' );
     
    261264                                                    'location_text' => 'Nome della struttura', /// 'Location Name'
    262265                                                    'location_street' => 'Indirizzo', /// Street Address
    263                                                     'location_city_subsection' => 'Borough', ///< 'Borough'
     266                                                    'location_city_subsection' => 'Frazione', ///< 'Borough'
    264267                                                    'location_neighborhood' => 'Quartiere', ///< 'Neighborhood'
    265268                                                    'location_municipality' => 'Città', ///< Town'
    266                                                     'location_sub_province' => 'County', ///< 'County'
    267                                                     'location_province' => 'State', ///< 'State'
     269                                                    'location_sub_province' => 'Provincia', ///< 'County'
     270                                                    'location_province' => 'Regione', ///< 'State'
    268271                                                    'location_nation' => 'Nazione', ///< 'Nation'
    269272                                                    'location_postal_code_1' => 'CAP', ///< 'Zip Code'
     
    274277        *                   TABLE SHORTCODE STATIC DATA MEMBERS (LOCALIZABLE)                    *
    275278        ****************************************************************************************/
    276         $this->local_table_tab_loading_title_format     = 'Getting meetings for %s';
    277         $this->local_table_header_time_label            = 'Time';
    278         $this->local_table_header_meeting_name_label    = 'Meeting Name';
    279         $this->local_table_header_town_label            = 'Town';
    280         $this->local_table_header_address_label         = 'Address';
    281         $this->local_table_header_format_label          = 'Format';
    282         $this->local_table_header_tab_title_format      = 'Display meetings for %s';
    283         $this->local_table_ante_meridian                = '"AM","PM","Noon","Midnight"';
    284         $this->local_table_no_meetings_format           = 'No meetings on %s';
     279        $this->local_table_tab_loading_title_format       = 'Trova riunioni per %s'; /// 'Getting meetings for %s';
     280        $this->local_table_header_time_label              = 'Orario'; /// 'Time';
     281        $this->local_table_header_meeting_name_label      = 'Nome del gruppo'; /// 'Meeting Name';
     282        $this->local_table_header_town_label              = 'Città'; /// 'Town';
     283        $this->local_table_header_address_label           = 'Indirizzo'; /// 'Address';
     284        $this->local_table_header_format_label            = 'Formato'; /// 'Format';
     285        $this->local_table_header_tab_title_format        = 'Mostra riunioni per %s'; /// 'Display meetings for %s';
     286        $this->local_table_ante_meridian                  = '"AM","PM","Mezzogiorno","Mezzanotte"'; /// '"AM","PM","Noon","Midnight"';
     287        $this->local_table_no_meetings_format             = 'Nessuna riunione il %s'; /// 'No meetings on %s';
    285288                                               
    286289        /************************************************************************************//**
     
    294297        *                       STATIC DATA MEMBERS (NEW MAP LOCALIZABLE)                       *
    295298        ****************************************************************************************/
    296         $this->local_new_map_option_1_label = 'Opzioni di Ricerca (Non si applica a meno che questa sezione non sia aperta):'; // 'Search Options (Not Applied Unless This Section Is Open):'
     299        $this->local_new_map_option_1_label = 'Opzioni di ricerca (non si applica a meno che questa sezione non sia aperta):'; // 'Search Options (Not Applied Unless This Section Is Open):'
    297300        $this->local_new_map_weekdays = 'Le riunioni avvengono in questi giorni della settimana:'; ///< 'Meetings Gather on These Weekdays:'
    298301        $this->local_new_map_all_weekdays = 'Tutti i giorni della settimana'; ///<  'All'
     
    329332   
    330333        /// The page titles.
    331         $this->local_mobile_results_page_title = 'Risultati Ricerca Veloce'; ///< 'Quick Meeting Search Results'
    332         $this->local_mobile_results_form_title = 'Ricerca Veloce di riunioni vicine'; ///< 'Find Nearby Meetings Quickly'   
     334        $this->local_mobile_results_page_title = 'Risultati della ricerca Vvloce'; ///< 'Quick Meeting Search Results'
     335        $this->local_mobile_results_form_title = 'Ricerca veloce delle riunioni vicine'; ///< 'Find Nearby Meetings Quickly'   
    333336        /// The fast GPS lookup links.
    334337        $this->local_GPS_banner = 'Seleziona ricerca veloce'; ///<'Select A Fast Meeting Lookup'
    335         $this->local_GPS_banner_subtext = 'Aggiungi ai preferiti questi link per ricerche ancora più veloci in futuro.'; ///<'Bookmark these links for even faster searches in the future.'
     338        $this->local_GPS_banner_subtext = 'Aggiungi questi link ai preferiti per ricerche ancora più veloci in futuro.'; ///<'Bookmark these links for even faster searches in the future.'
    336339        $this->local_search_all = 'Cerca tutte le riunioni vicine alla mia attuale località'; ///< 'Search for all meetings near my present location.';
    337340        $this->local_search_today = 'Oggi, più tardi'; ///< 'Later Today'
     
    376379        ****************************************************************************************/
    377380        $this->local_quicksearch_select_option_0 = 'Cerca Ovunque';
    378         $this->local_quicksearch_display_too_large = 'Too many results. Please narrow your search.';
     381        $this->local_quicksearch_display_too_large = 'Troppi risultati. Per favore, restringi la tua ricerca.';
    379382        }
    380383    };
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/lang/lang_pt.php

    r1795059 r1797270  
    55*                                                                                           *
    66*   \brief  This file contains Brazilian Portuguese localizations.                          *
    7 *   \version 3.9.0                                                                          *
     7*   \version 3.9.1                                                                          *
    88*                                                                                           *
    99*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
     
    7878        $this->local_options_mobile_time_offset_label = 'Diferença de Fuso Horário para o Servidor Raiz:';       ///< This may have an offset (time zone difference) from the main server.
    7979        $this->local_options_initial_view = array (                           ///< The list of choices for presentation in the popup.
    80                                                     'map' => 'Mapa', 'text' => 'Texto', 'advanced_map' => 'Mapa Avançado', 'advanced_text' => 'Texto Avançado'
     80                                                    'map' => 'Mapa',
     81                                                    'text' => 'Texto',
     82                                                    'advanced_map' => 'Mapa Avançado',
     83                                                    'advanced_text' => 'Texto Avançado'
    8184                                                    );
    8285        $this->local_options_initial_view_prompt = 'Tipo de Busca Inicial:';    ///< The label for the initial view popup.
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/lang/lang_sv.php

    r1795059 r1797270  
    55*                                                                                           *
    66* \brief This file contains Swedish localizations.                                          *
    7 * \version 3.9.0                                                                           *
     7* \version 3.9.1                                                                           *
    88*                                                                                           *
    99* This file is part of the BMLT Common Satellite Base Class Project. The project GitHub     *
     
    7878        $this->local_options_mobile_time_offset_label = 'Tids Offset:'; ///< This may have an offset (time zone difference) from the main server.
    7979        $this->local_options_initial_view = array ( ///< The list of choices for presentation in the popup.
    80                                                     'karta' => 'Karta', 'text' => 'Text', 'avanserad_karta' => 'Avanserad karta', 'avanserad_text' => 'Avanserad Text'
     80                                                    'map' => 'Karta',
     81                                                    'text' => 'Text',
     82                                                    'advanced_map' => 'Avanserad karta',
     83                                                    'advanced_text' => 'Avanserad Text'
    8184                                                    );
    8285        $this->local_options_initial_view_prompt = 'Standard söksätt:'; ///< The label for the initial view popup.
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/map_search.js

    r1795059 r1797270  
    22* \file map_search.js                                                                       *
    33* \brief Javascript functions for the new map search implementation.                        *
    4 *   \version 3.9.0                                                                          *
     4*   \version 3.9.1                                                                          *
    55*                                                                                           *
    66*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/nouveau_map_search.js

    r1795059 r1797270  
    1010*   robust, complete CSS presentation management.                                           *
    1111*                                                                                           *
    12 *   \version 3.9.0                                                                          *
     12*   \version 3.9.1                                                                          *
    1313*                                                                                           *
    1414*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/quicksearch.css

    r1795059 r1797270  
    55    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    66
    7     \version 3.9.0
     7    \version 3.9.1
    88   
    99    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
     
    223223}
    224224
    225 @media only screen and (max-width: 820px)
    226 {
    227     div#bmlt_page_items.bmlt_page_items div.quicksearch_div ul.bmlt_quicksearch_data_ul li.bmlt_quicksearch_data_ul_li_weekday
    228     {
    229         width: 35%;
    230     }
    231 
    232     div#bmlt_page_items.bmlt_page_items div.quicksearch_div ul.bmlt_quicksearch_data_ul li.bmlt_quicksearch_data_ul_li_time
    233     {
    234         width: 10%;
    235         text-align:center;
    236     }
    237 
    238     div#bmlt_page_items.bmlt_page_items div.quicksearch_div ul.bmlt_quicksearch_data_ul li.bmlt_quicksearch_data_ul_li_town
    239     {
    240         text-align: right;
    241         width: 55%;
    242     }
    243 
    244     div#bmlt_page_items.bmlt_page_items div.quicksearch_div ul.bmlt_quicksearch_data_ul li.bmlt_quicksearch_data_ul_li_name
    245     {
    246         clear:left;
    247         width: 100%;
    248     }
    249 
    250     div#bmlt_page_items.bmlt_page_items div.quicksearch_div ul.bmlt_quicksearch_data_ul li.bmlt_quicksearch_data_ul_li_address
    251     {
    252         clear:left;
    253         width: 100%;
    254     }
    255 
    256     div#bmlt_page_items.bmlt_page_items div.quicksearch_div ul.bmlt_quicksearch_data_ul li.bmlt_quicksearch_data_ul_li_formats
    257     {
    258         clear:left;
    259         width: 100%;
    260         text-align: center;
    261     }
    262    
    263     div#bmlt_page_items.bmlt_page_items div.quicksearch_div ul.bmlt_quicksearch_data_ul li.bmlt_quicksearch_data_ul_li_formats div.bmlt_quicksearch_formats_internal_div
    264     {
    265         display: table;
    266         margin: auto;
    267     }
    268    
    269     div#bmlt_page_items.bmlt_page_items div.quicksearch_div ul.bmlt_quicksearch_data_ul li.bmlt_quicksearch_data_ul_li_formats span.bmlt_quicksearch_format_span
    270     {
    271         float:none;
    272         display:table-cell;
    273     }
    274 }
    275 
    276 @media only screen and (max-width: 410px)
    277 {
    278     div#bmlt_page_items.bmlt_page_items div.quicksearch_div div.quicksearch_search_results_div ul.bmlt_quicksearch_data_ul li
    279     {
    280         font-size: x-small;
    281     }
    282 }
    283 
    284225@media only print
    285226{
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/quicksearch.js

    r1795059 r1797270  
    22* \file quicksearch.js                                                                      *
    33* \brief The javascript for the [[bmlt_quicksearch]] shortcode of the BMLTPlugin class.     *
    4 *   \version 3.9.0                                                                          *
     4*   \version 3.9.1                                                                          *
    55   
    66    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/responsiveness.css

    r1795059 r1797270  
    33    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    44
    5     \version 3.9.0
     5    \version 3.9.1
    66   
    77    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
     
    2525    along with this code.  If not, see <http://www.gnu.org/licenses/>.
    2626*/
     27
     28@media only screen and (max-width: 820px)
     29{
     30    div#bmlt_page_items.bmlt_page_items div.quicksearch_div ul.bmlt_quicksearch_data_ul li.bmlt_quicksearch_data_ul_li_weekday
     31    {
     32        width: 35%;
     33    }
     34
     35    div#bmlt_page_items.bmlt_page_items div.quicksearch_div ul.bmlt_quicksearch_data_ul li.bmlt_quicksearch_data_ul_li_time
     36    {
     37        width: 10%;
     38        text-align:center;
     39    }
     40
     41    div#bmlt_page_items.bmlt_page_items div.quicksearch_div ul.bmlt_quicksearch_data_ul li.bmlt_quicksearch_data_ul_li_town
     42    {
     43        text-align: right;
     44        width: 55%;
     45    }
     46
     47    div#bmlt_page_items.bmlt_page_items div.quicksearch_div ul.bmlt_quicksearch_data_ul li.bmlt_quicksearch_data_ul_li_name
     48    {
     49        clear:left;
     50        width: 100%;
     51    }
     52
     53    div#bmlt_page_items.bmlt_page_items div.quicksearch_div ul.bmlt_quicksearch_data_ul li.bmlt_quicksearch_data_ul_li_address
     54    {
     55        clear:left;
     56        width: 100%;
     57    }
     58
     59    div#bmlt_page_items.bmlt_page_items div.quicksearch_div ul.bmlt_quicksearch_data_ul li.bmlt_quicksearch_data_ul_li_formats
     60    {
     61        clear:left;
     62        width: 100%;
     63        text-align: center;
     64    }
     65   
     66    div#bmlt_page_items.bmlt_page_items div.quicksearch_div ul.bmlt_quicksearch_data_ul li.bmlt_quicksearch_data_ul_li_formats div.bmlt_quicksearch_formats_internal_div
     67    {
     68        display: table;
     69        margin: auto;
     70    }
     71   
     72    div#bmlt_page_items.bmlt_page_items div.quicksearch_div ul.bmlt_quicksearch_data_ul li.bmlt_quicksearch_data_ul_li_formats span.bmlt_quicksearch_format_span
     73    {
     74        float:none;
     75        display:table-cell;
     76    }
     77}
     78
     79@media only screen and (max-width: 700px)
     80{
     81    div.bmlt_table_display_div .bmlt_table_header_weekday_list li.bmlt_table_header_weekday_list_element
     82    {
     83        border-top:none;
     84        border-radius: 0em;
     85        -moz-border-radius: 0em;
     86        -webkit-border-radius: 0em;
     87        list-style-type:none;
     88        list-style-position:outside;
     89    }
     90       
     91    div.bmlt_table_display_div div.bmlt_table_div
     92    {
     93        width: 100%;
     94    }
     95   
     96    div.bmlt_table_display_div ul.bmlt_table_header_ul
     97    {
     98        width: 100%;
     99        font-size:1em;
     100        margin:0;
     101        padding:0;
     102        border:none;
     103    }
     104   
     105    div.bmlt_table_display_div ul.bmlt_table_header_ul li.bmlt_table_header_li,
     106    div.bmlt_table_display_div ul.bmlt_table_data_ul li,
     107    div.bmlt_table_display_div ul.bmlt_table_data_ul li.bmlt_table_data_ul_li_ul_li
     108    {
     109        width: 100%;
     110        clear:both;
     111        float:none;
     112    }
     113   
     114    div.bmlt_table_display_div ul.bmlt_table_data_ul li.bmlt_table_data_ul_li_ul_li
     115    {
     116        padding: 0.25em;
     117    }
     118
     119    div.bmlt_table_display_div ul.bmlt_table_data_ul li.bmlt_table_data_ul_li_ul_li_formats div.bmlt_formats_div span
     120    {
     121        clear:none;
     122        float:left;
     123    }
     124   
     125    div.bmlt_table_display_div ul.bmlt_table_data_ul li.bmlt_table_data_ul_li_ul_li_time span
     126    {
     127        text-align: left;
     128    }
     129   
     130    div.bmlt_table_display_div ul.bmlt_table_data_ul li.bmlt_table_data_ul_li_ul_li_comments span
     131    {
     132        padding-left: 0;
     133    }
     134   
     135    div.bmlt_table_display_div ul.bmlt_table_header_ul li.bmlt_table_header_li.bmlt_table_header_li_format
     136    {
     137        display:none;
     138    }
     139}
    27140
    28141@media only screen and (max-width: 639px)
     
    71184    }
    72185}
     186
     187@media only screen and (max-width: 410px)
     188{
     189    div#bmlt_page_items.bmlt_page_items div.quicksearch_div div.quicksearch_search_results_div ul.bmlt_quicksearch_data_ul li
     190    {
     191        font-size: x-small;
     192    }
     193}
     194
     195@media only screen and (max-width: 320px)
     196{
     197    div.bmlt_table_display_div ul.bmlt_table_header_weekday_list
     198    {
     199        font-size:0.5em;
     200    }
     201   
     202    div.bmlt_table_display_div ul.bmlt_table_header_ul li.bmlt_table_header_li
     203    {
     204        font-size:smaller;
     205        line-height:1.5em;
     206        height:1.5em;
     207    }
     208}
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/table_display.js

    r1795059 r1797270  
    33  \brief Javascript functions for the basic table display.                                  *
    44                                                                                            *
    5     \version 3.9.0                                                                          *
     5    \version 3.9.1                                                                          *
    66                                                                                            *
    77    This file contains a function/object that implements the Fast Table Shortcode. Upon     *
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/table_styles.css

    r1795059 r1797270  
    11/*   
    2     \version 3.9.0
     2    \version 3.9.1
    33   
    44    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
     
    385385    font-size:smaller;
    386386}
    387 
    388 @media only screen and (max-width: 700px)
    389 {
    390     div.bmlt_table_display_div .bmlt_table_header_weekday_list li.bmlt_table_header_weekday_list_element
    391     {
    392         border-top:none;
    393         border-radius: 0em;
    394         -moz-border-radius: 0em;
    395         -webkit-border-radius: 0em;
    396         list-style-type:none;
    397         list-style-position:outside;
    398     }
    399        
    400     div.bmlt_table_display_div div.bmlt_table_div
    401     {
    402         width: 100%;
    403     }
    404    
    405     div.bmlt_table_display_div ul.bmlt_table_header_ul
    406     {
    407         width: 100%;
    408         font-size:1em;
    409         margin:0;
    410         padding:0;
    411         border:none;
    412     }
    413    
    414     div.bmlt_table_display_div ul.bmlt_table_header_ul li.bmlt_table_header_li,
    415     div.bmlt_table_display_div ul.bmlt_table_data_ul li,
    416     div.bmlt_table_display_div ul.bmlt_table_data_ul li.bmlt_table_data_ul_li_ul_li
    417     {
    418         width: 100%;
    419         clear:both;
    420         float:none;
    421     }
    422    
    423     div.bmlt_table_display_div ul.bmlt_table_data_ul li.bmlt_table_data_ul_li_ul_li
    424     {
    425         padding: 0.25em;
    426     }
    427 
    428     div.bmlt_table_display_div ul.bmlt_table_data_ul li.bmlt_table_data_ul_li_ul_li_formats div.bmlt_formats_div span
    429     {
    430         clear:none;
    431         float:left;
    432     }
    433    
    434     div.bmlt_table_display_div ul.bmlt_table_data_ul li.bmlt_table_data_ul_li_ul_li_time span
    435     {
    436         text-align: left;
    437     }
    438    
    439     div.bmlt_table_display_div ul.bmlt_table_data_ul li.bmlt_table_data_ul_li_ul_li_comments span
    440     {
    441         padding-left: 0;
    442     }
    443    
    444     div.bmlt_table_display_div ul.bmlt_table_header_ul li.bmlt_table_header_li.bmlt_table_header_li_format
    445     {
    446         display:none;
    447     }
    448 }
    449 
    450 @media only screen and (max-width: 320px)
    451 {
    452     div.bmlt_table_display_div ul.bmlt_table_header_weekday_list
    453     {
    454         font-size:0.5em;
    455     }
    456    
    457     div.bmlt_table_display_div ul.bmlt_table_header_ul li.bmlt_table_header_li
    458     {
    459         font-size:smaller;
    460         line-height:1.5em;
    461         height:1.5em;
    462     }
    463 }
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/table_styles.php

    r1795059 r1797270  
    33/**     \file   loadTable_StyleFiles.php
    44
    5     \version 3.9.0
     5    \version 3.9.1
    66   
    77    \brief  This file reads in a CSS file, and optimizes it by stripping
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndRed/fast_mobile_lookup.css

    r1795059 r1797270  
    22* \file fast_mobile_lookup.css                                                              *
    33* \brief Contains the CSS to apply to the XHTML version of the satellite.                   *
    4 *   \version 3.9.0                                                                          *
     4*   \version 3.9.1                                                                          *
    55   
    66    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndRed/nouveau_map_styles.css

    r1795059 r1797270  
    33    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    44
    5     \version 3.9.0
     5    \version 3.9.1
    66   
    77    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndRed/quicksearch.css

    r1795059 r1797270  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.9.0
     6    \version 3.9.1
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndRed/styles.css

    r1795059 r1797270  
    33    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    44
    5     \version 3.9.0
     5    \version 3.9.1
    66   
    77    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndRed/table_styles.css

    r1795059 r1797270  
    11/*   
    2     \version 3.9.0
     2    \version 3.9.1
    33   
    44    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndWhite/fast_mobile_lookup.css

    r1795059 r1797270  
    66    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    77
    8     \version 3.9.0
     8    \version 3.9.1
    99   
    1010    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndWhite/nouveau_map_styles.css

    r1795059 r1797270  
    33    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    44
    5     \version 3.9.0
     5    \version 3.9.1
    66   
    77    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndWhite/quicksearch.css

    r1795059 r1797270  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.9.0
     6    \version 3.9.1
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndWhite/styles.css

    r1795059 r1797270  
    33    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    44
    5     \version 3.9.0
     5    \version 3.9.1
    66   
    77    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndWhite/table_styles.css

    r1795059 r1797270  
    11/*   
    2     \version 3.9.0
     2    \version 3.9.1
    33   
    44    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR/fast_mobile_lookup.css

    r1795059 r1797270  
    66    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    77
    8     \version 3.9.0
     8    \version 3.9.1
    99   
    1010    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR/nouveau_map_styles.css

    r1795059 r1797270  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.9.0
     6    \version 3.9.1
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR/quicksearch.css

    r1795059 r1797270  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.9.0
     6    \version 3.9.1
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR/styles.css

    r1795059 r1797270  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.9.0
     6    \version 3.9.1
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR/table_styles.css

    r1795059 r1797270  
    11/*   
    2     \version 3.9.0
     2    \version 3.9.1
    33   
    44    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR2/fast_mobile_lookup.css

    r1795059 r1797270  
    66    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    77
    8     \version 3.9.0
     8    \version 3.9.1
    99   
    1010    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR2/nouveau_map_styles.css

    r1795059 r1797270  
    33    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    44
    5     \version 3.9.0
     5    \version 3.9.1
    66   
    77    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR2/quicksearch.css

    r1795059 r1797270  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.9.0
     6    \version 3.9.1
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR2/styles.css

    r1795059 r1797270  
    33    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    44
    5     \version 3.9.0
     5    \version 3.9.1
    66   
    77    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR2/table_styles.css

    r1795059 r1797270  
    11/*   
    2     \version 3.9.0
     2    \version 3.9.1
    33   
    44    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreenAndGold/fast_mobile_lookup.css

    r1795059 r1797270  
    66    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    77
    8     \version 3.9.0
     8    \version 3.9.1
    99   
    1010    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreenAndGold/nouveau_map_styles.css

    r1795059 r1797270  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.9.0
     6    \version 3.9.1
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreenAndGold/quicksearch.css

    r1795059 r1797270  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.9.0
     6    \version 3.9.1
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreenAndGold/styles.css

    r1795059 r1797270  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.9.0
     6    \version 3.9.1
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreenAndGold/table_styles.css

    r1795059 r1797270  
    11/*   
    2     \version 3.9.0
     2    \version 3.9.1
    33   
    44    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreyAndMaroon/fast_mobile_lookup.css

    r1795059 r1797270  
    66    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    77
    8     \version 3.9.0
     8    \version 3.9.1
    99   
    1010    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreyAndMaroon/nouveau_map_styles.css

    r1795059 r1797270  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.9.0
     6    \version 3.9.1
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreyAndMaroon/quicksearch.css

    r1795059 r1797270  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.9.0
     6    \version 3.9.1
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreyAndMaroon/styles.css

    r1795059 r1797270  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.9.0
     6    \version 3.9.1
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreyAndMaroon/table_styles.css

    r1795059 r1797270  
    11/*   
    2     \version 3.9.0
     2    \version 3.9.1
    33   
    44    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/default/fast_mobile_lookup.css

    r1795059 r1797270  
    66    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    77
    8     \version 3.9.0
     8    \version 3.9.1
    99   
    1010    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/default/nouveau_map_styles.css

    r1795059 r1797270  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.9.0
     6    \version 3.9.1
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/default/quicksearch.css

    r1795059 r1797270  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.9.0
     6    \version 3.9.1
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/default/styles.css

    r1795059 r1797270  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.9.0
     6    \version 3.9.1
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/default/table_styles.css

    r1795059 r1797270  
    11/*   
    2     \version 3.9.0
     2    \version 3.9.1
    33   
    44    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/unit_test.php

    r1795059 r1797270  
    33* \file unit_test.php                                                                       *
    44* \brief A unit test harness for the BMLTPlugin class.                                      *
    5 *   \version 3.9.0                                                                          *
     5*   \version 3.9.1                                                                          *
    66   
    77    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/bmlt-wordpress-satellite-plugin.php

    r1795059 r1797270  
    1010Author: MAGSHARE
    1111Description: This is a WordPress plugin satellite of the Basic Meeting List Toolbox.
    12 Version: 3.9.0
     12Version: 3.9.1
    1313Install: Drop this directory into the "wp-content/plugins/" directory and activate it.
    1414********************************************************************************************/
  • bmlt-wordpress-satellite-plugin/trunk/readme.txt

    r1795059 r1797270  
    66Author: MAGSHARE
    77Requires at least: 2.6
    8 Tested up to: 4.9
    9 Stable tag: 3.9.0
     8Tested up to: 4.9.1
     9Stable tag: 3.9.1
    1010
    1111This is a "satellite" plugin for the Basic Meeting List Toolbox (BMLT).
     
    2828
    2929== Changelist ==
     30
     31***Version 3.9.1 ** *- January 4, 2018*
     32
     33- Fixed an issue where some translated versions had bad settings in the BMLT options initial map type.
     34- New Italian Translation.
     35- Fixed a bug in the admin screen where it was possible to cause problems with translated strings containing apostrophes.
    3036
    3137***Version 3.9.0 ** *- December 31, 2017*
Note: See TracChangeset for help on using the changeset viewer.