Plugin Directory

Changeset 2873773


Ignore:
Timestamp:
03/02/2023 03:46:17 PM (3 years ago)
Author:
christer_f
Message:

Better popup modal for events. Fixed end date for events displayed in Fullcalendar month-view

Location:
hello-event/trunk
Files:
16 edited

Legend:

Unmodified
Added
Removed
  • hello-event/trunk/css/frontend.css

    r1893011 r2873773  
    99
    1010
    11 
  • hello-event/trunk/hello_event.php

    r2272675 r2873773  
    1313 * Author URI:   https://www.tekomatik.com/about
    1414 *
    15  * Version:      1.3.2
     15 * Version:      1.3.4
    1616 *
    1717 * Text Domain:  hello-event
  • hello-event/trunk/includes/css/frontend-calendar.css

    r1893011 r2873773  
    2424}
    2525
     26div.event-modal-description div.date {color: #888;}
     27div.event-modal-description div.date::before {
     28  font-family: "Font Awesome\ 5 Free";
     29  content: "\f073"; /* calendar icon */
     30  display: inline-block;
     31  padding-right: 3px;
     32  vertical-align: top;;
     33}
     34
    2635div.event-modal-description div.time {color: #888;}
    2736div.event-modal-description div.time::before {
  • hello-event/trunk/includes/css/frontend-maps.css

    r1893011 r2873773  
    77/* Openstreet Maps */
    88#open-map {
    9   width:100%; height:400px; border:2px solid #888;
     9  width:100%; height:400px; border:2px solid #5f6f7f;
    1010}
     11
     12div.event-location {padding:1em; background: #5f6f7f; color: white;}
  • hello-event/trunk/includes/hello-event-calendar.php

    r2272675 r2873773  
    3737  $start = $_REQUEST['start'] ;
    3838  $end = $_REQUEST['end'] ;
     39  // Fullcalendar needs 1 day to be added to the end date
     40  $fix_end_date = isset($_REQUEST['fix_end_date']) ? $_REQUEST['fix_end_date'] : false;
    3941  $cf_query = array(
    4042    'post_type' => HELLO_EVENT::EVENT_SLUG,
     
    6769    // debug_log("On with ID = " . $id);
    6870    $url = get_permalink($id);
     71    $start_date = get_post_meta( $id, 'start_date', true );
     72    $end_date = get_post_meta( $id, 'end_date', true );
    6973    $start_time = get_post_meta( $id, 'start_time', true );
    7074    $end_time = get_post_meta( $id, 'end_time', true );
     
    7478      $start_time = $hello_event_object->transform_iso_time($start_time);
    7579    $location = get_post_meta( $id, 'location', true );
     80    $dates_html = "<div class='date'>$start_date - $end_date</div>";
    7681    $start_html = "<div class='time'>$start_time</div>";
    7782    $location_html = "<div class='location'>$location</div>";
     
    8388    $ev['end'] = get_post_meta( $id, 'end_date', true );
    8489    if ( !$ev['end'] ) { $ev['end'] = get_post_meta( $id, 'start_date', true ); }
     90    // For the end date to display correctly in fullcalendar we need to add 1 day to the end date!
     91    if ($fix_end_date) {
     92      $end_fixed_date = new \DateTime($ev['end']);
     93      $end_fixed_date->modify('+1 day');
     94      $ev['end'] = $end_fixed_date->format('Y-m-d');
     95    }
     96   
    8597    //$excerpt = apply_filters('the_excerpt', get_post_field('post_excerpt', $post->ID));
    8698    //$ev['description'] = $excerpt . $see_more ;
    87     $ev['description'] = "<div class='event-modal-description'>" . $start_html . $location_html . $hello_event_object->real_or_computed_excerpt($id) . $see_more ."</div>";
     99    $ev['description'] = "<div class='event-modal-description'>" . $dates_html . $start_html . $location_html . $hello_event_object->real_or_computed_excerpt($id) . $see_more ."</div>";
    88100    $ev['url'] = $url;
    89101    $ev = apply_filters('event-information', $ev, $id); // Allow other plugin to complement the event information
     
    99111  ));
    100112  $events = json_encode($events);
    101   //debug_log("Events: " . $events);
    102113  echo $events;
    103114  wp_die();
  • hello-event/trunk/includes/hello-event-list-events.php

    r2272674 r2873773  
    104104        list($start_year, $start_month, $start_day) = explode("-", $start_date_db);
    105105        $start_month_long = $wp_locale->get_month_abbrev($wp_locale->get_month($start_month));
    106         list($end_year, $end_month, $end_day) = explode("-", $end_date_db);
     106        if ($end_date_db)
     107          list($end_year, $end_month, $end_day) = explode("-", $end_date_db);
     108        else
     109          list($end_year, $end_month, $end_day) = explode("-", $start_date_db);
    107110        $end_month_long = $wp_locale->get_month_abbrev($wp_locale->get_month($end_month));
    108111        $start_time = get_post_meta( $id, 'start_time', true );
     
    373376    $args = shortcode_atts( array(
    374377           'limit' => -1,
    375            'show' => 'default'
     378           'show' => 'default',
     379           'link_to_book' => false,
    376380       ), $args );
    377381    wp_enqueue_script('jquery-ui-tabs');
     
    388392      'select' => 'future',
    389393        'limit' => $args['limit'],
    390         'show' => $args['show']
     394        'show' => $args['show'],
     395        'link_to_book' => $args['link_to_book'],
    391396    ));
    392397    $past_txt = __('Earlier events', 'hello-event');
  • hello-event/trunk/includes/hello-event-map.php

    r1893011 r2873773  
    2626 
    2727 
    28   function get_map($post_id) {
     28  function get_map($args) {
    2929    global $post;
    30     $id = $post_id ? $post_id : $post->ID;
    31     $mapservice = isset(get_option( 'hello_event')['hello_field_select_map_api']) ? get_option( 'hello_event')['hello_field_select_map_api'] : 'undefined';
    32     switch ($mapservice) {
    33       case 'openstreetmap':
    34         $html = $this->get_openstreet_map($id);
    35         break;
     30    $args = shortcode_atts( array(
     31        'id' => $post->ID,
     32        'show_map_links' => false,
     33        'show_map' => true,
     34    ), $args );
     35   
     36    $id = $args['id'];
     37    $location = get_post_meta($id, 'location', true);
     38   
     39    $coordinates = get_post_meta($id, 'coordinates');
     40    // global $hello_event_again;
     41    // debug_log("MAP LOCATION for id $id : " . print_r($location, true));
     42    // $mycat = $hello_event_again->get_category_of_event_id($id);
     43    // debug_log("Category ". print_r($mycat, true));
     44    // debug_log("Coordinates ". print_r($coordinates, true));
     45   
     46    $html = '';
     47    $html = '<div class="event-location">';
     48    $html .= '<b>' . __( 'Location', 'hello-event' ) . ':</b> ';
     49    if ($location) {
     50      $html .= $location;
     51      if ($args['show_map_links']) {
     52        $escaped_location = urlencode($location);
     53        $google_url = "https://www.google.com/maps/search/?api=1&zoom=14&query=".$escaped_location;
     54        $google_url = "https://www.google.com/maps/search/?api=1&zoom=14&q=".$coordinates['lat'].",".$coordinates['lng'];
     55        $open_street_url = "http://www.openstreetmap.org/search?query=".$escaped_location;
     56        // $html .= '<br/><a href="'.$google_url.'" target="_blank">' . __( 'See in Google Maps', 'hello-event' ) .'</a>';
     57        $html .= '<br/><a href="'.$open_street_url.'" target="_blank">' . __( 'See in Open Street Map', 'hello-event' ) .'</a>';
     58      }
     59    }
     60    else
     61      $html .= __('No location given', 'hello-event');
     62    $html .='</div>';
     63   
     64    if ($args['show_map']) {
     65      $mapservice = isset(get_option( 'hello_event')['hello_field_select_map_api']) ? get_option( 'hello_event')['hello_field_select_map_api'] : 'undefined';
     66      switch ($mapservice) {
     67        case 'openstreetmap':
     68          $html .= $this->get_openstreet_map($id);
     69          break;
    3670     
    37       case 'googlemap' :
    38         $html = $this->get_google_map($id);
    39         break;
     71        case 'googlemap' :
     72          $html .= $this->get_google_map($id);
     73          break;
    4074     
    41       case 'undefined' :
    42         $html = __("Undefined map services", 'hello-event');
    43         break;
     75        case 'undefined' :
     76          $html .= __("Undefined map services", 'hello-event');
     77          break;
    4478     
     79      }
    4580    }
    4681    return $html;
  • hello-event/trunk/includes/hello-event-openstreet-map.php

    r2122866 r2873773  
    5050      $event_id = $args['event_id'];
    5151      $location = $args['location'];
     52   
    5253      $html = '';
     54      // $html .= "LAT=$lat LNG=$lng LOCATION=$location";
    5355      $html .= '<div id="open-map""></div>';
    5456      $html .= "<script>var lat=".$lat.";" ;
  • hello-event/trunk/includes/sass/frontend-list.scss

    r2272672 r2873773  
    136136  vertical-align: top;;
    137137}
    138 
    139 
  • hello-event/trunk/languages/hello-event-en_US.mo

    • Property svn:executable set to *
  • hello-event/trunk/languages/hello-event-fr_FR.mo

    • Property svn:executable set to *
  • hello-event/trunk/languages/hello-event-fr_FR.po

    • Property svn:executable set to *
    r2272672 r2873773  
    33"Project-Id-Version: Hello Event\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2020-02-02 14:57+0000\n"
    6 "PO-Revision-Date: 2020-02-02 18:35+0000\n"
    7 "Last-Translator: Christer Fernström <christer@fernstromOnThe.net>\n"
     5"POT-Creation-Date: 2020-05-04 14:59+0000\n"
     6"PO-Revision-Date: 2020-05-10 06:09+0000\n"
     7"Last-Translator: Christer Fernstrom <christer@fernstromonthe.net>\n"
    88"Language-Team: French (France)\n"
    99"Language: fr_FR\n"
     
    1313"Content-Transfer-Encoding: 8bit\n"
    1414"X-Generator: Loco https://localise.biz/\n"
    15 "X-Loco-Version: 2.3.0; wp-5.2.3"
    16 
    17 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:223
    18 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:224
     15"X-Loco-Version: 2.3.1; wp-5.3.2"
     16
     17#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:226
     18#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:227
    1919msgid "Add New"
    2020msgstr "Ajouter"
    2121
    22 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:225
     22#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:228
    2323msgid "New"
    2424msgstr "Nouveau"
    2525
    26 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:226
     26#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:229
    2727msgid "Edit"
    2828msgstr "Modifier"
    2929
    30 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:227
     30#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:230
    3131msgid "View"
    3232msgstr "Voir"
    3333
    34 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:228
     34#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:231
    3535msgid "All"
    3636msgstr "Tous les"
    3737
    38 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:229
     38#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:232
    3939msgid "Search"
    4040msgstr "Chercher"
    4141
    42 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:231
    43 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:232
     42#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:234
     43#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:235
    4444msgid "Nono"
    4545msgstr "Aucun"
    4646
    47 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:261
     47#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:264
    4848msgid "Dates and time"
    4949msgstr "Date et l'heure"
    5050
    51 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:269
    52 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:482
    53 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1520
    54 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1542
     51#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:272
     52#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:485
     53#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1535
     54#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1557
     55#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:40
    5556msgid "Location"
    5657msgstr "Lieu"
    5758
    58 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:277
    59 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:530
     59#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:280
     60#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:533
    6061msgid "Tickets"
    6162msgstr "Billets"
    6263
    63 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:442
     64#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:445
    6465msgid "Start date"
    6566msgstr "Date de début"
    6667
    67 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:451
     68#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:454
    6869msgid "Start time"
    6970msgstr "Heure de début"
    7071
    71 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:460
     72#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:463
    7273msgid "End date"
    7374msgstr "Date de fin"
    7475
    75 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:470
     76#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:473
    7677msgid "End time"
    7778msgstr "Heure de fin"
    7879
    79 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:494
     80#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:497
    8081msgid "Sell tickets in the shop"
    8182msgstr "Vendre des billets dans la boutique"
    8283
    83 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:505
     84#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:508
    8485msgid "Shop link"
    8586msgstr "Liens vers la boutique"
    8687
    87 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:507
    88 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:557
     88#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:510
     89#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:560
    8990msgid "Edit ticket"
    9091msgstr "Modifier billet"
    9192
    92 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:510
     93#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:513
    9394msgid "Tickets are not yet available in the shop."
    9495msgstr "Des billets ne sont pas encore en vente dans la boutique."
    9596
    96 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:511
     97#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:514
    9798msgid "Fill in the checkbox above to start sell tickets"
    9899msgstr "Cocher la case ci-dessus pour commencer la vente de billets"
    99100
    100 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:512
     101#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:515
    101102msgid ""
    102103"then after saving the event a new link will appear to allow you to set the "
     
    106107"permettra de définir tarif et quantité de billets."
    107108
    108 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:516
     109#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:519
    109110msgid "To sell tickets Woocommerce needs to be installed and actived"
    110111msgstr "Afine de vendre des billet, Woocommerce doit être installé et activé"
    111112
    112 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:528
    113 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1519
    114 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1532
     113#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:531
     114#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1534
     115#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1547
    115116msgid "Start"
    116117msgstr "Début"
    117118
    118 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:529
    119 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1537
     119#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:532
     120#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1552
    120121msgid "End"
    121122msgstr "Fin"
    122123
    123 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:531
     124#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:534
    124125msgid "Sales"
    125126msgstr "Ventes"
    126127
    127 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:568
     128#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:571
    128129msgid "Tickets sold"
    129130msgstr "Billets vendus"
    130131
    131 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:610
     132#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:613
    132133msgid "Event:"
    133134msgstr "Evénement :"
    134135
    135 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:616
     136#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:619
    136137msgid "No event corresponds to the event id in the URL"
    137138msgstr ""
    138139"Aucun événement ne correspond à l'identifiant de l'événement dans l'URL"
    139140
    140 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:620
     141#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:623
    141142msgid "No event id in the URL"
    142143msgstr "Aucun identifiant d'événement dans l'URL"
    143144
    144 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:642
     145#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:645
     146#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:654
    145147msgid "Event ticket"
    146148msgstr "Billet d'événement"
    147149
    148 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:813
    149 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1247
     150#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:657
     151msgid "Tickets to Events"
     152msgstr "billets d'événements"
     153
     154#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:828
     155#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1262
     156#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:300
     157#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:344
    150158msgid "Goto the event"
    151159msgstr "Aller à l'événement"
    152160
    153 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:979
     161#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:994
    154162msgid "Ticket sales status"
    155163msgstr "Situation de vente de billets"
    156164
    157 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:982
     165#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:997
    158166msgid "Date"
    159167msgstr "Date"
    160168
    161 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:983
    162169#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:998
     170#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1013
    163171msgid "Order"
    164172msgstr "Commande"
    165173
    166 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:984
     174#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:999
    167175msgid "Last name"
    168176msgstr "Nom"
    169177
    170 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:984
     178#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:999
    171179msgid "First name"
    172180msgstr "Prénom"
    173181
    174 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:985
     182#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1000
    175183msgid "Quantity"
    176184msgstr "Quantité"
    177185
    178 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:985
     186#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1000
    179187msgid "Paid"
    180188msgstr "Réglé"
    181189
    182 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1007
     190#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1022
    183191msgid "Total"
    184192msgstr "Total"
    185193
    186 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1021
    187 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1189
    188 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1277
    189 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1289
    190 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1314
    191 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1331
    192 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1344
    193 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1356
    194 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1368
     194#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1036
     195#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1204
     196#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1292
     197#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1304
     198#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1329
     199#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1346
     200#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1359
     201#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1371
     202#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1383
    195203msgid "Shortcode can only be used when displaying events"
    196204msgstr "Shortcode à utiliser uniquement avec des événements"
    197205
    198 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1024
    199 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1158
     206#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1039
     207#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1173
    200208msgid "The Woocommerce plugin is not activated"
    201209msgstr "L'extension Woocommerce n'est pas activée"
    202210
    203 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1159
     211#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1174
    204212msgid "You need to set the check box to sell tickets in the event!"
    205213msgstr "Vous devez cocher la case pour vendre des billets !"
    206214
    207 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1160
     215#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1175
    208216msgid "There is no link from the event to a ticket. Save the event again!"
    209217msgstr ""
     
    211219"l'événement de nouveau !"
    212220
    213 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1161
     221#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1176
    214222msgid ""
    215223"The link from the event does not point to a ticket in Woocommerce. Save the "
     
    219227"Veuillez enregistrer l'événement de nouveau !"
    220228
    221 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1162
     229#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1177
    222230msgid "The ticket exists in Woocommerce, but you need to set it as published"
    223231msgstr ""
     
    225233"en publié"
    226234
    227 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1163
     235#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1178
    228236msgid ""
    229237"The ticket exists in Woocommerce, and is published, but you need to set its "
     
    233241"devez aussi définir son prix"
    234242
    235 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1178
     243#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1193
    236244msgid "Tickets to participate are available in our shop"
    237245msgstr "Des billets pour participer sont en vente dans notre boutique"
    238246
    239 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1186
     247#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1201
    240248msgid "Tickets not fully configured"
    241249msgstr "Les billets ne sont pas complètement configurés"
    242250
    243 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1236
    244 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1260
     251#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1251
     252#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1275
    245253msgid "Shortcode can only be used for products of the Hello Event category"
    246254msgstr ""
     
    248256"Event"
    249257
    250 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1239
    251 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1263
     258#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1254
     259#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1278
    252260msgid "Product is orphaned"
    253261msgstr "Aucun événement correspond au produit"
    254262
    255 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1311
    256 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1328
     263#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1326
     264#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1343
    257265msgid "at"
    258266msgstr "à"
    259267
    260 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1376
     268#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1391
    261269msgid "Add to Calendar"
    262270msgstr "Ajouter au calendrier"
    263271
    264 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1551
     272#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1566
    265273msgid "Participate"
    266274msgstr "Participer"
    267275
    268 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1637
     276#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1652
    269277msgid "No event points to the ticket"
    270278msgstr "Aucun événement est associé au billet"
    271279
    272 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1641
     280#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1656
    273281msgid "There is already a ticket for the event in the shop"
    274282msgstr "Il y a déjà un ticket pour l'événement dans la boutique"
    275283
    276 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1645
     284#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1660
    277285msgid "No start date given. The date has been set to today."
    278286msgstr "Aucune date de début donnée. La date d'aujourd'hui est utilisée."
    279287
    280 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1649
     288#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1664
    281289msgid "No end date given. The date has been set to today."
    282290msgstr "Aucune date de fin donnée. La date d'aujourd'hui est utilisée."
    283291
    284 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1653
     292#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1668
    285293msgid "End date is earlier than start date"
    286294msgstr "La date de fin est avant la date de début"
    287295
    288 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1657
     296#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1672
    289297msgid "Unknown error"
    290298msgstr "Erreur inconnue"
    291299
    292 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1669
     300#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1684
    293301msgid "The product was saved but there are error(s)"
    294302msgstr "Le billet a été enregistré mais il y a des erreur(s)"
    295303
    296 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1671
     304#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1686
    297305msgid "The event was saved but there are error(s)"
    298306msgstr "L'événement a été enregistré mais il y a des erreur(s)"
    299307
    300 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:42
     308#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:47
     309msgid "See in Google Maps"
     310msgstr "Vois dans Google Maps"
     311
     312#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:48
     313msgid "See in Open Street Map"
     314msgstr "Voir dans Open Street Map"
     315
     316#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:52
     317msgid "No location given"
     318msgstr "Aucune position donnée"
     319
     320#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:67
    301321msgid "Undefined map services"
    302322msgstr "Service de cartographie non defini"
    303323
    304 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:61
     324#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:87
    305325msgid ""
    306326"You need to register your Google Maps API Key before the map can be shown"
     
    309329"la carte"
    310330
    311 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:104
     331#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:118
    312332msgid "Full day"
    313333msgstr "Journée entière"
    314334
    315 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:280
     335#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:367
    316336msgid "There is no event to show"
    317337msgstr "Il n'y a pas d'événement à montrer"
    318338
    319 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:307
     339#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:397
    320340msgid "Earlier events"
    321341msgstr "Evénements  précédents"
    322342
    323 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:308
     343#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:398
    324344msgid "Upcoming events"
    325345msgstr ""
  • hello-event/trunk/languages/hello-event-sv_SE.mo

    • Property svn:executable set to *
  • hello-event/trunk/languages/hello-event-sv_SE.po

    • Property svn:executable set to *
  • hello-event/trunk/languages/hello-event.pot

    • Property svn:executable set to *
    r2272670 r2873773  
    44"Project-Id-Version: Hello Event\n"
    55"Report-Msgid-Bugs-To: \n"
    6 "POT-Creation-Date: 2020-02-02 14:57+0000\n"
     6"POT-Creation-Date: 2020-05-04 14:59+0000\n"
    77"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    88"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1515"X-Generator: Loco https://localise.biz/"
    1616
    17 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:223
    18 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:224
     17#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:226
     18#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:227
    1919msgid "Add New"
    2020msgstr ""
    2121
    22 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:225
     22#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:228
    2323msgid "New"
    2424msgstr ""
    2525
    26 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:226
     26#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:229
    2727msgid "Edit"
    2828msgstr ""
    2929
    30 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:227
     30#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:230
    3131msgid "View"
    3232msgstr ""
    3333
    34 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:228
     34#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:231
    3535msgid "All"
    3636msgstr ""
    3737
    38 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:229
     38#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:232
    3939msgid "Search"
    4040msgstr ""
    4141
    42 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:231
    43 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:232
     42#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:234
     43#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:235
    4444msgid "Nono"
    4545msgstr ""
    4646
    47 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:261
     47#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:264
    4848msgid "Dates and time"
    4949msgstr ""
    5050
    51 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:269
    52 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:482
    53 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1520
    54 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1542
     51#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:272
     52#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:485
     53#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1535
     54#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1557
     55#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:40
    5556msgid "Location"
    5657msgstr ""
    5758
    58 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:277
    59 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:530
     59#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:280
     60#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:533
    6061msgid "Tickets"
    6162msgstr ""
    6263
    63 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:442
     64#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:445
    6465msgid "Start date"
    6566msgstr ""
    6667
    67 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:451
     68#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:454
    6869msgid "Start time"
    6970msgstr ""
    7071
    71 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:460
     72#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:463
    7273msgid "End date"
    7374msgstr ""
    7475
    75 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:470
     76#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:473
    7677msgid "End time"
    7778msgstr ""
    7879
    79 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:494
     80#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:497
    8081msgid "Sell tickets in the shop"
    8182msgstr ""
    8283
    83 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:505
     84#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:508
    8485msgid "Shop link"
    8586msgstr ""
    8687
    87 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:507
    88 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:557
     88#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:510
     89#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:560
    8990msgid "Edit ticket"
    9091msgstr ""
    9192
    92 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:510
     93#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:513
    9394msgid "Tickets are not yet available in the shop."
    9495msgstr ""
    9596
    96 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:511
     97#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:514
    9798msgid "Fill in the checkbox above to start sell tickets"
    9899msgstr ""
    99100
    100 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:512
     101#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:515
    101102msgid ""
    102103"then after saving the event a new link will appear to allow you to set the "
     
    104105msgstr ""
    105106
    106 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:516
     107#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:519
    107108msgid "To sell tickets Woocommerce needs to be installed and actived"
    108109msgstr ""
    109110
    110 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:528
    111 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1519
    112 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1532
     111#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:531
     112#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1534
     113#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1547
    113114msgid "Start"
    114115msgstr ""
    115116
    116 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:529
    117 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1537
     117#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:532
     118#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1552
    118119msgid "End"
    119120msgstr ""
    120121
    121 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:531
     122#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:534
    122123msgid "Sales"
    123124msgstr ""
    124125
    125 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:568
     126#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:571
    126127msgid "Tickets sold"
    127128msgstr ""
    128129
    129 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:610
     130#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:613
    130131msgid "Event:"
    131132msgstr ""
    132133
    133 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:616
     134#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:619
    134135msgid "No event corresponds to the event id in the URL"
    135136msgstr ""
    136137
    137 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:620
     138#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:623
    138139msgid "No event id in the URL"
    139140msgstr ""
    140141
    141 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:642
     142#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:645
     143#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:654
    142144msgid "Event ticket"
    143145msgstr ""
    144146
    145 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:813
    146 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1247
     147#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:657
     148msgid "Tickets to Events"
     149msgstr ""
     150
     151#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:828
     152#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1262
     153#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:300
     154#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:344
    147155msgid "Goto the event"
    148156msgstr ""
    149157
    150 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:979
     158#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:994
    151159msgid "Ticket sales status"
    152160msgstr ""
    153161
    154 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:982
     162#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:997
    155163msgid "Date"
    156164msgstr ""
    157165
    158 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:983
    159166#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:998
     167#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1013
    160168msgid "Order"
    161169msgstr ""
    162170
    163 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:984
     171#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:999
    164172msgid "Last name"
    165173msgstr ""
    166174
    167 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:984
     175#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:999
    168176msgid "First name"
    169177msgstr ""
    170178
    171 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:985
     179#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1000
    172180msgid "Quantity"
    173181msgstr ""
    174182
    175 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:985
     183#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1000
    176184msgid "Paid"
    177185msgstr ""
    178186
    179 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1007
     187#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1022
    180188msgid "Total"
    181189msgstr ""
    182190
    183 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1021
    184 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1189
    185 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1277
    186 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1289
    187 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1314
    188 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1331
    189 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1344
    190 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1356
    191 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1368
     191#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1036
     192#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1204
     193#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1292
     194#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1304
     195#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1329
     196#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1346
     197#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1359
     198#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1371
     199#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1383
    192200msgid "Shortcode can only be used when displaying events"
    193201msgstr ""
    194202
    195 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1024
    196 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1158
     203#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1039
     204#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1173
    197205msgid "The Woocommerce plugin is not activated"
    198206msgstr ""
    199207
    200 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1159
     208#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1174
    201209msgid "You need to set the check box to sell tickets in the event!"
    202210msgstr ""
    203211
    204 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1160
     212#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1175
    205213msgid "There is no link from the event to a ticket. Save the event again!"
    206214msgstr ""
    207215
    208 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1161
     216#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1176
    209217msgid ""
    210218"The link from the event does not point to a ticket in Woocommerce. Save the "
     
    212220msgstr ""
    213221
    214 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1162
     222#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1177
    215223msgid "The ticket exists in Woocommerce, but you need to set it as published"
    216224msgstr ""
    217225
    218 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1163
     226#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1178
    219227msgid ""
    220228"The ticket exists in Woocommerce, and is published, but you need to set its "
     
    222230msgstr ""
    223231
    224 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1178
     232#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1193
    225233msgid "Tickets to participate are available in our shop"
    226234msgstr ""
    227235
    228 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1186
     236#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1201
    229237msgid "Tickets not fully configured"
    230238msgstr ""
    231239
    232 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1236
    233 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1260
     240#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1251
     241#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1275
    234242msgid "Shortcode can only be used for products of the Hello Event category"
    235243msgstr ""
    236244
    237 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1239
    238 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1263
     245#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1254
     246#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1278
    239247msgid "Product is orphaned"
    240248msgstr ""
    241249
    242 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1311
    243 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1328
     250#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1326
     251#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1343
    244252msgid "at"
    245253msgstr ""
    246254
    247 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1376
     255#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1391
    248256msgid "Add to Calendar"
    249257msgstr ""
    250258
    251 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1551
     259#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1566
    252260msgid "Participate"
    253261msgstr ""
    254262
    255 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1637
     263#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1652
    256264msgid "No event points to the ticket"
    257265msgstr ""
    258266
    259 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1641
     267#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1656
    260268msgid "There is already a ticket for the event in the shop"
    261269msgstr ""
    262270
    263 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1645
     271#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1660
    264272msgid "No start date given. The date has been set to today."
    265273msgstr ""
    266274
    267 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1649
     275#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1664
    268276msgid "No end date given. The date has been set to today."
    269277msgstr ""
    270278
    271 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1653
     279#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1668
    272280msgid "End date is earlier than start date"
    273281msgstr ""
    274282
    275 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1657
     283#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1672
    276284msgid "Unknown error"
    277285msgstr ""
    278286
    279 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1669
     287#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1684
    280288msgid "The product was saved but there are error(s)"
    281289msgstr ""
    282290
    283 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1671
     291#: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1686
    284292msgid "The event was saved but there are error(s)"
    285293msgstr ""
    286294
    287 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:42
     295#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:47
     296msgid "See in Google Maps"
     297msgstr ""
     298
     299#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:48
     300msgid "See in Open Street Map"
     301msgstr ""
     302
     303#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:52
     304msgid "No location given"
     305msgstr ""
     306
     307#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:67
    288308msgid "Undefined map services"
    289309msgstr ""
    290310
    291 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:61
     311#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:87
    292312msgid ""
    293313"You need to register your Google Maps API Key before the map can be shown"
    294314msgstr ""
    295315
    296 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:104
     316#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:118
    297317msgid "Full day"
    298318msgstr ""
    299319
    300 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:280
     320#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:367
    301321msgid "There is no event to show"
    302322msgstr ""
    303323
    304 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:307
     324#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:397
    305325msgid "Earlier events"
    306326msgstr ""
    307327
    308 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:308
     328#: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:398
    309329msgid "Upcoming events"
    310330msgstr ""
  • hello-event/trunk/readme.txt

    r2272675 r2873773  
    7272== Changelog ==
    7373
     74= 1.3.4 =
     75* Added parameters to the hello-event-map shortcode to allow more control (show the address, show links to open Google Maps or Open Street Maps on the location, show or not the map)
     76
     77= 1.3.3 =
     78* Both the start date and the end date should be defined for avants, but if end date is not defined we use the start date as a substitute to avoid PHP warnings (but such events will still show up in lists and tabs with past events)
     79
    7480= 1.3.2 =
    7581* Added optional parameter to list events shortcode to allow "book now" button directly in the event list
Note: See TracChangeset for help on using the changeset viewer.