Plugin Directory

Changeset 3117834


Ignore:
Timestamp:
07/14/2024 06:04:46 PM (19 months ago)
Author:
christer_f
Message:

Added "ADVICE" property to events, and a setting to enable/display its automatic display
Added "LOCATION NAME" as a complement to "LOCATION", which bencomes "LOCATION ADDRESS", but backwards compatible
Fixed various displays of the location to take into account the location name
Accept a slug in addition to ID for the default event used when creating custom event page
Add end time in the list displays where only start time was previously shown

Location:
hello-event/trunk
Files:
18 deleted
14 edited
4 copied
2 moved

Legend:

Unmodified
Added
Removed
  • hello-event/trunk/hello_event.php

    r3108894 r3117834  
    1313 * Author URI:   https://www.tekomatik.com/about
    1414 *
    15  * Version:      1.3.15
     15 * Version:      1.3.16
    1616 *
    1717 * Text Domain:  hello-event
     
    6666  private $enable_product_save_error_messages = true;
    6767  private $default_event_id = false;
    68   private $dayNames;
    6968 
    7069
     
    114113    add_shortcode('hello-title', array($this, 'event_title'));
    115114    add_shortcode('hello-thumbnail', array($this, 'event_thumbnail'));
     115    add_shortcode('hello-thumbnail-url', array($this, 'event_thumbnail_url'));
    116116    add_shortcode('hello-start-date', array($this, 'event_start_date'));
    117117    add_shortcode('hello-start-time', array($this, 'event_start_time'));
     
    120120    add_shortcode('hello-end-time', array($this, 'event_end_time'));
    121121    add_shortcode('hello-end-date-and-time', array($this, 'event_end_date_and_time'));
     122    add_shortcode('hello-location-name', array($this, 'event_location_name'));
    122123    add_shortcode('hello-location', array($this, 'event_location'));
     124    add_shortcode('hello-location-address', array($this, 'event_location'));
     125    add_shortcode('hello-advice', array($this, 'event_advice'));
    123126    add_shortcode('hello-content', array($this, 'event_content'));
    124127    add_shortcode('hello-excerpt', array($this, 'event_excerpt'));
     
    221224 
    222225  function load_textdomain(){
    223     load_plugin_textdomain('hello-event', false, basename( dirname( __FILE__ ) ) . '/languages');
    224     $this->dayNames = array(
    225       __('Sunday', 'hello-event'),
    226       __('Monday', 'hello-event'),
    227       __('Tuesday', 'hello-event'),
    228       __('Wednesday', 'hello-event'),
    229       __('Thursday', 'hello-event'),
    230       __('Friday', 'hello-event'),
    231       __('Saturday', 'hello-event'),
    232      );
    233    
     226    load_plugin_textdomain('hello-event', false, basename( dirname( __FILE__ ) ) . '/languages');   
    234227  }
    235228 
     
    298291    );
    299292    add_meta_box(
     293      'advice_meta_box',
     294      __( 'Advice', 'hello-event' ),
     295      array($this, 'render_meta_box'),
     296      Hello_Event::EVENT_SLUG,
     297      'advanced',
     298      'high'
     299    );
     300    add_meta_box(
    300301      'tickets_meta_box',
    301302      __( 'Tickets', 'hello-event' ),
     
    378379    $end_time = $end_time ? $end_time : "00:00";
    379380    update_post_meta( $post_id, 'end_time', $end_time );
     381
     382    $mydata = sanitize_text_field( $_POST['location_name_meta_box_field'] );
     383    update_post_meta( $post_id, 'location_name', $mydata );
    380384   
    381385    $mydata = sanitize_text_field( $_POST['location_meta_box_field'] );
     
    384388    delete_post_meta($post_id, 'location_lng');
    385389         
     390    $mydata = sanitize_text_field( $_POST['advice_meta_box_field'] );
     391    update_post_meta( $post_id, 'advice', $mydata );
     392
     393
    386394    $sell_tickets_cb = isset($_POST['sell_tickets_meta_box_field']) && $_POST['sell_tickets_meta_box_field'];
    387395   
     
    520528       
    521529      case 'location_meta_box':
     530        $html = '<table>';
     531        $html .= '<tr>';
     532        $value = get_post_meta( $post->ID, 'location_name', true );
     533        $html .= '<td><label for="location_meta_box_field">';
     534        $html .= __('Location Name', 'hello-event');
     535        $html .= '</label></td>';
     536        $html .= '<td><input type="text" id="location_name_meta_box_field" name="location_name_meta_box_field" value="'. esc_attr( $value ) . '
     537" size="25" /></td>';
     538        $html .= '</tr><tr>';
     539        $html .= '<td colspan=2><div class="hint">' . __("The (optional) location name can for example be the name of a concert hall", "hello-event") . '.</div></td>';
     540       
     541       
     542        $html .= '</tr><tr>';
    522543        $value = get_post_meta( $post->ID, 'location', true );
    523         $html = '<label for="location_meta_box_field">';
    524         $html .= __('Location', 'hello-event');
    525         $html .= '</label>';
    526         $html .= '<input type="text" id="location_meta_box_field" name="location_meta_box_field" value="'. esc_attr( $value ) . '
    527 " size="25" />';
     544        $html .= '<td><label for="location_meta_box_field">';
     545        $html .= __('Location address', 'hello-event');
     546        $html .= '</label></td>';
     547        $html .= '<td><input type="text" id="location_meta_box_field" name="location_meta_box_field" value="'. esc_attr( $value ) . '
     548" size="25" /></td>';
     549        $html .= '</tr><tr>';
     550        $html .= '<td colspan=2><div class="hint">' . __("The location address should be detailed enough to geo-localize the place", "hello-event") . '.</div></td>';
     551        $html .= '</tr></table>';
     552        break;
     553       
     554      case 'advice_meta_box':
     555        $html = '';
     556        $html .= '<table><tr>';
     557        $value = get_post_meta( $post->ID, 'advice', true );
     558        $html .= '<td style="vertical-align: top; padding-right:10px;"><label for="advice_meta_box_field">';
     559        $html .= __('Advice', 'hello-event').' ';
     560        $html .= '</label></td>';
     561        $html .= '<td><textarea id="advice_meta_box_field" name="advice_meta_box_field" rows="4" cols="30">';
     562        $html .= esc_attr( $value );
     563        $html .= '</textarea></td>';
     564        $html .= '</tr></table>';
     565        $html .= '<div class="hint">' . __("Advice to participants, for example related to parking or public transportation", "hello-event") . '.</div>';
    528566        break;
    529567       
     
    674712    if ($pages)
    675713      return get_permalink($pages[0]);
     714    else
     715      return false;
     716  }
     717 
     718  function event_id_by_slug($slug) {
     719    $args = array(
     720        'post_type'       => Hello_Event::EVENT_SLUG,
     721        'name'            => $slug,
     722        'posts_per_page'  => 1
     723    );
     724    $events = get_posts($args);
     725    if ($events and isset($events[0]))
     726      return $events[0]->ID;
    676727    else
    677728      return false;
     
    11741225        }
    11751226        else {
    1176           return $this->debug_msg(__("Tickets not fully configured", 'hello_event') . ". ".
     1227          return $this->debug_msg(__("Tickets not fully configured", 'hello-event') . ". ".
    11771228                               $this->ticket_config_error($rc));
    11781229        }
     
    12151266    // Return: date in current format or false the date is not on iso-format
    12161267    // The date will be preceeded by the weekday name if this setting is positioned AND $hide_weekday is false
     1268    $dayNames = array(
     1269      __('Sunday', 'hello-event'),
     1270      __('Monday', 'hello-event'),
     1271      __('Tuesday', 'hello-event'),
     1272      __('Wednesday', 'hello-event'),
     1273      __('Thursday', 'hello-event'),
     1274      __('Friday', 'hello-event'),
     1275      __('Saturday', 'hello-event'),
     1276     );
     1277   
    12171278    $d = explode("-", $date);
    12181279    if (count($d) != 3) { return false;}
     
    12251286      $t = mktime(0,0,0,(int)$d[1], (int)$d[2], (int)$d[0]);
    12261287      $weekday_number = date("w", $t);
    1227       $weekday = $this->dayNames[$weekday_number]. " ";
     1288      $weekday = $dayNames[$weekday_number]. " ";
    12281289    }
    12291290    if ($hide_weekday)
     
    15361597  }
    15371598
     1599  public function event_thumbnail_url($args) {
     1600    $args = shortcode_atts( array(
     1601           'id' => get_the_ID(),
     1602           'width' => false,
     1603    ), $args );
     1604    $args['id'] = isset($_GET['event_id']) ? $_GET['event_id'] : $args['id'];
     1605    $id = $args['id'];
     1606    if (get_post_type($id) != Hello_Event::EVENT_SLUG)
     1607      $id = $this->default_event_id;
     1608    if (get_post_type($id) == Hello_Event::EVENT_SLUG) {
     1609      if ($args['width']) {
     1610        $html = '<div style="display:inline-block; width:'.$args['width'].'px">';
     1611        $html .= get_the_post_thumbnail_url($id);
     1612        $html .= '</div>';
     1613        return $html;
     1614      }
     1615      else
     1616          return get_the_post_thumbnail_url($id);
     1617    }
     1618    else { return $this->debug_msg(__("Shortcode can only be used when displaying events", 'hello-event')); }
     1619  }
     1620
    15381621
    15391622  public function event_content($args){
     
    16681751  }
    16691752
     1753  public function event_location_name($args) {
     1754    $args = shortcode_atts( array(
     1755           'id' => get_the_ID(),
     1756    ), $args );
     1757    $args['id'] = isset($_GET['event_id']) ? $_GET['event_id'] : $args['id'];
     1758    $id = $args['id'];
     1759    if (get_post_type($id) != Hello_Event::EVENT_SLUG)
     1760      $id = $this->default_event_id;
     1761    if (get_post_type($id) == Hello_Event::EVENT_SLUG) {
     1762      $html = get_post_meta($id, 'location_name', true);
     1763      return $html;
     1764    }
     1765    else { return $this->debug_msg(__("Shortcode can only be used when displaying events", 'hello-event')); }
     1766  }
     1767 
    16701768  public function event_location($args) {
    16711769    $args = shortcode_atts( array(
     
    16821780    else { return $this->debug_msg(__("Shortcode can only be used when displaying events", 'hello-event')); }
    16831781  }
     1782
     1783  public function event_advice($args) {
     1784    $args = shortcode_atts( array(
     1785           'id' => get_the_ID(),
     1786    ), $args );
     1787    $args['id'] = isset($_GET['event_id']) ? $_GET['event_id'] : $args['id'];
     1788    $id = $args['id'];
     1789    if (get_post_type($id) != Hello_Event::EVENT_SLUG)
     1790      $id = $this->default_event_id;
     1791    if (get_post_type($id) == Hello_Event::EVENT_SLUG) {
     1792      $html = get_post_meta($id, 'advice', true);
     1793      return $html;
     1794    }
     1795    else { return $this->debug_msg(__("Shortcode can only be used when displaying events", 'hello-event')); }
     1796  }
     1797 
    16841798 
    16851799  function event_ics($args) {
     
    17221836    // Set a default event id that can be used in the various shortcodes if no other id is available
    17231837    // This is in particular useful when editing and testing the custom event page
     1838    // Add slog
     1839    // Possibly : set as meta on the page ??? (as with elementor plugin)
    17241840    $args = shortcode_atts( array(
    17251841           'id' => false,
     
    17281844    if ($args['id'])
    17291845      $this->default_event_id = $args['id'];
     1846    if ($args['slug']) {
     1847      $this->default_event_id = $this->event_id_by_slug($args['slug']);
     1848    }
    17301849  }
    17311850
     
    17511870          date('Ymd', strtotime(get_post_meta( $id, 'end_date', true )));
    17521871      $args = array (
     1872      'location_name' => get_post_meta($id, 'location_name', true),
    17531873      'location' => get_post_meta($id, 'location', true),
    17541874      'summary' => get_the_title($id),
     
    17711891DTSTART:'. $args['dstart'] .'
    17721892DTEND:'. $args['dend'] .'
    1773 LOCATION:'. $args['location'] .'
     1893LOCATION:'. $args['location_name'] . ": ". $args['location'] .'
    17741894DESCRIPTION:'. strip_tags( $args['description'] ) .'
    17751895END:VEVENT
     
    18091929    $start_date_time = get_post_meta($id, 'start_date', true)."T".get_post_meta($id, 'start_time', true);
    18101930    $end_date_time = get_post_meta($id, 'end_date', true)."T".get_post_meta($id, 'end_time', true);
     1931    $location_name = get_post_meta($id, 'location_name', true);
    18111932    $location = get_post_meta($id, 'location', true);
    18121933    $content_post = get_post($id);
     
    18251946    "location": {
    18261947      "@type": "Place",
     1948      "name": "$location_name",
    18271949      "address": {
    18281950        "@type": "PostalAddress",
     
    18651987          $excerpt = substr(strip_tags($content), 0, 150) . '...';
    18661988        }
     1989        $location_name = $this->event_location_name([]) ? '<b>'.$this->event_location_name([]).'</b>, ' : "";
    18671990        $before = "<table class='hello-event-venue'>";
    18681991        $before .= "<tr><th>" . __("Start", 'hello-event') . ": </th><td>" . $this->event_start_date_and_time([]) . "</td></tr>";
    1869         $before .= "<tr><th>" . __("Location", 'hello-event') . ": </th><td>" . $this->event_location([]) . "</td></tr>";
     1992        $before .= "<tr><th>" . __("Location", 'hello-event') . ": </th><td>" . $location_name . $this->event_location([]) . "</td></tr>";
    18701993        $before .= "<tr><td></td></tr>";
    18711994        $before .= "</table>";
     
    18892012        if ( isset(get_option( 'hello_event')['hello_field_autolocation_event']) &&
    18902013             get_option( 'hello_event')['hello_field_autolocation_event']=="on" ) {
    1891           $before .= "<tr><th>" . __("Location", 'hello-event') . ": </th><td>" . $this->event_location([]) . "</td></tr>";
     2014          $location_name = $this->event_location_name([]) ? '<b>'.$this->event_location_name([]).'</b>, ' : "";
     2015          $before .= "<tr><th>" . __("Location", 'hello-event') . ": </th><td>";
     2016          $before .=  $location_name . $this->event_location([]) . "</td></tr>";
    18922017        }
    18932018       
     
    18972022          list($link, $rc) = $this->get_link_to_product($post_id, true);
    18982023          if ($rc > 0) {
    1899             $before .= $this->debug_msg(__("Tickets not fully configured", 'hello_event') . ". ".
     2024            $before .= $this->debug_msg(__("Tickets not fully configured", 'hello-event') . ". ".
    19002025                                           $this->ticket_config_error($rc));
    19012026          }
     
    19222047        $before = apply_filters('hello_event_autoinsert_before_content', $before);
    19232048        $after = "";
     2049        // Include advice if appropriate
     2050        if ( isset(get_option( 'hello_event')['hello_field_autoadvice_event']) &&
     2051                get_option( 'hello_event')['hello_field_autoadvice_event']=="on" ) {
     2052          $advice = $this->event_advice($post_id);
     2053          if($advice)
     2054            $after .= "<p><i>$advice</i></p>";
     2055        }       
    19242056        // Include map if appropriate
    19252057        if ( isset(get_option( 'hello_event')['hello_field_automap_event']) &&
  • hello-event/trunk/includes/hello-event-list-events.php

    r3108893 r3117834  
    127127          $start_time = $hello_event_object->transform_iso_time($start_time);
    128128        $location = get_post_meta( $id, 'location', true );
     129        $location_name = get_post_meta( $id, 'location_name', true );
     130        if ($location_name) {
     131          $location = "<b>$location_name</b>, " . $location;
     132        }
    129133        $excerpt = $hello_event_object->real_or_computed_excerpt($id);
    130134        $excerpt = wpautop($excerpt);
     
    168172            $start_and_end_time_string = "
    169173              <div class='time'>
    170                 $start_time-$end_time
     174                $start_time" . ' - ' ." $end_time
    171175              </div>
    172176              ";
     
    217221            // }
    218222            $g_dates = '<i class="far fa-calendar"></i> ' . $g_start_date .'<br/>';
    219             $g_times = '<i class="far fa-clock"></i> ' . $start_time .'<br/>';
     223            // Show end time
     224            // $g_times = '<i class="far fa-clock"></i> ' . $start_time .'<br/>';
     225            $g_times =  $start_and_end_time_string .'<br/>';
    220226            // $g_place = '<div class="location"><i class="fab fa-fort-awesome"></i> ' . $location . '</div>';
    221227            $g_place = '<i class="fab fa-fort-awesome"></i> ' . $location . '<br/>';
     
    245251            <div class='hello-event style1 list gallery " . $event_type_class ."'>
    246252              <div class='thumbnail ".$args['thumbnail']."'>" . get_the_post_thumbnail() . "</div>
    247               $g_title
    248               $g_dates
    249               $g_times
    250               $g_place
    251               $g_ticket_link
    252               $g_excerpt
     253              <div class='description'>
     254                $g_title
     255                $g_dates
     256                $g_times
     257                $g_place
     258                $g_ticket_link
     259                $g_excerpt
     260              </div>
    253261            </div>";
    254262            break;
     
    271279                </div>
    272280                <div class='thumbnail ".$args['thumbnail']."'>" . get_the_post_thumbnail() . "</div>
    273                 $start_time_string
     281                $start_and_end_time_string
    274282                <div class='location'>
    275283                  $location
     
    299307                </div>
    300308                <div class='description'>
    301                   $start_time_string
     309                  $start_and_end_time_string
    302310                  <div class='location'>
    303311                    $location
     
    328336                </div>
    329337                <div class='description'>
    330                   $start_time_string
     338                  $start_and_end_time_string
    331339                  $start_date_string
    332340                  <div class='location'>
     
    357365                      <tr>
    358366                        <td>
    359                           $start_time_string
     367                          $start_and_end_time_string
    360368                          <div class='location'>
    361369                            $location
     
    400408                  </div>
    401409                  <div class='description'>
    402                     $start_time_string
     410                    $start_and_end_time_string
    403411                    <div class='location'>
    404412                      $location
  • hello-event/trunk/includes/hello-event-settings.php

    r3108894 r3117834  
    257257
    258258    add_settings_field(
    259       'hello_field_autolocation_event',                // Field slug
    260       __( 'Location of event', 'hello-event' ),// Title
     259      'hello_field_autolocation_event',                 // Field slug
     260      __( 'Location of event', 'hello-event' ), // Title
    261261      array($this, 'hello_field_autocontent'),          // Callback to fill the field
    262262      'hello_event',                                    // page
     
    269269    );
    270270
    271     add_settings_field(
    272       'hello_field_autolocation_event',                // Field slug
    273       __( 'Location of event', 'hello-event' ),// Title
    274       array($this, 'hello_field_autocontent'),          // Callback to fill the field
    275       'hello_event',                                    // page
    276       'hello_section_6',                                // section
    277       [                                                 // Arguments passed to the callback function
    278         'label_for' => 'hello_field_autolocation_event',
    279         'class' => 'hello_row',
    280         'hello_custom_data' => 'custom',
    281       ]
    282     );
    283271   
    284272    add_settings_field(
     
    296284
    297285    add_settings_field(
    298       'hello_field_automap_event',                // Field slug
    299       __( 'Location map', 'hello-event' ),// Title
     286      'hello_field_automap_event',                      // Field slug
     287      __( 'Location map', 'hello-event' ),              // Title
    300288      array($this, 'hello_field_autocontent'),          // Callback to fill the field
    301289      'hello_event',                                    // page
     
    303291      [                                                 // Arguments passed to the callback function
    304292        'label_for' => 'hello_field_automap_event',
     293        'class' => 'hello_row',
     294        'hello_custom_data' => 'custom',
     295      ]
     296    );
     297
     298    add_settings_field(
     299      'hello_field_autoadvice_event',                    // Field slug
     300      __( 'Advice', 'hello-event' ),                    // Title
     301      array($this, 'hello_field_autocontent'),          // Callback to fill the field
     302      'hello_event',                                    // page
     303      'hello_section_6',                                // section
     304      [                                                 // Arguments passed to the callback function
     305        'label_for' => 'hello_field_autoadvice_event',
    305306        'class' => 'hello_row',
    306307        'hello_custom_data' => 'custom',
     
    377378        'hello_field_autoical_event' => 'on',
    378379        'hello_field_automap_event' => 'on',
     380        'hello_field_autoadvice_event' => 'on',
    379381        'hello_field_autolink_to_product' => 'on',
    380382        'hello_field_autolink_to_event' => 'on',
  • hello-event/trunk/languages/hello-event-backup-202407100739180.pot~

    • Property svn:executable deleted
  • hello-event/trunk/languages/hello-event-backup-202407100748200.pot~

    r3108894 r3117834  
    44"Project-Id-Version: Hello Event\n"
    55"Report-Msgid-Bugs-To: \n"
    6 "POT-Creation-Date: 2024-06-27 10:40+0000\n"
     6"POT-Creation-Date: 2024-07-10 07:39+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/includes/hello-event-settings.php:395
     17#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:397
    1818msgid "A plugin for managing events and sell tickets with Woocommerce"
    1919msgstr ""
    2020
    21 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:247
    22 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:248
     21#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:240
     22#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:241
    2323msgid "Add New"
    2424msgstr ""
    2525
    26 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1685
     26#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1802
    2727msgid "Add to Calendar"
    2828msgstr ""
    2929
    3030#. Field slug
    31 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:286
     31#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:274
    3232msgid "Add-to-calendar button"
    3333msgstr ""
    3434
    35 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:252
     35#. Field slug
     36#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:294
     37#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:559
     38#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:300
     39msgid "Advice"
     40msgstr ""
     41
     42#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:245
    3643msgid "All"
    3744msgstr ""
    3845
    39 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:461
     46#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:463
    4047msgid ""
    4148"Any items not selected can always be inserted into the content parts of "
     
    4350msgstr ""
    4451
    45 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:443
     52#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:445
    4653msgid ""
    4754"As of July 2018 you will be able to do 28500 requests per month free of "
     
    4956msgstr ""
    5057
    51 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1605
    52 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1626
     58#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1691
     59#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1712
    5360msgid "at"
    5461msgstr ""
    5562
    5663#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:82
    57 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:453
     64#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:455
    5865msgid "Auto inserted content"
    5966msgstr ""
    6067
    61 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:203
     68#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:207
    6269msgid "Book now"
    6370msgstr ""
    6471
    65 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:444
     72#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:446
    6673msgid ""
    6774"but please notice that the pricing plans are quite complex and you should "
     
    7885msgstr ""
    7986
    80 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:460
     87#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:462
    8188msgid ""
    8289"Choose what should be AUTOMAICALLY inserted into the content of events and "
     
    9299msgstr ""
    93100
    94 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1141
     101#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1192
    95102msgid "Date"
    96103msgstr ""
     
    106113msgstr ""
    107114
    108 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:285
     115#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:278
    109116msgid "Dates and time"
    110117msgstr ""
     
    118125msgstr ""
    119126
    120 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:426
     127#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:428
    121128msgid "Default is \"Event\" in singular and \"Events\" in plural."
    122129msgstr ""
    123130
    124 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:512
     131#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:514
    125132msgid "don't show"
    126133msgstr ""
    127134
    128 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:468
     135#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:476
    129136msgid "Earlier events"
    130137msgstr ""
    131138
    132 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:250
     139#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:243
    133140msgid "Edit"
    134141msgstr ""
    135142
    136 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:549
    137 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:599
     143#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:587
     144#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:637
    138145msgid "Edit ticket"
    139146msgstr ""
    140147
    141 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:571
    142 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1883
     148#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:609
     149#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2009
    143150msgid "End"
    144151msgstr ""
    145152
    146 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:502
     153#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:510
    147154msgid "End date"
    148155msgstr ""
     
    153160msgstr ""
    154161
    155 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2010
     162#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2145
    156163msgid "End date is earlier than start date"
    157164msgstr ""
    158165
    159 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:512
     166#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:520
    160167msgid "End time"
    161168msgstr ""
    162169
    163 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:715
    164 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:724
     170#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:766
     171#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:775
    165172msgid "Event ticket"
    166173msgstr ""
    167174
    168 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:652
     175#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:690
    169176msgid "Event:"
    170177msgstr ""
    171178
    172 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:553
     179#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:591
    173180msgid "Fill in the checkbox above to start sell tickets"
    174181msgstr ""
    175182
    176 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:671
     183#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:673
    177184msgid "Fill in the slug of the custom event page, or leave blank for default."
    178185msgstr ""
    179186
    180 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1143
     187#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1194
    181188msgid "First name"
    182189msgstr ""
    183190
    184 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:230
     191#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1274
    185192msgid "Friday"
    186193msgstr ""
     
    190197msgstr ""
    191198
    192 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:574
     199#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:576
    193200msgid "generated by the shortcodes in case of problems"
    194201msgstr ""
    195202
    196 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:588
     203#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:590
    197204msgid "Go to the event page"
    198205msgstr ""
    199206
    200 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:898
    201 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1459
    202 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:368
    203 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:412
     207#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:949
     208#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1523
     209#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:376
     210#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:420
    204211msgid "Goto the event"
    205212msgstr ""
     
    209216msgstr ""
    210217
    211 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:424
     218#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:426
    212219msgid ""
    213220"Here you can change the name for the event custom type that you see on the "
     
    216223
    217224#. Field slug
    218 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:350
     225#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:351
    219226msgid "Hide ticket from shop unless the event is in the future"
    220227msgstr ""
     
    228235msgstr ""
    229236
    230 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:453
     237#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:455
    231238msgid ""
    232239"If no custom page is defined, events will be displayed using the standard "
     
    234241msgstr ""
    235242
    236 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:522
     243#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:524
    237244msgid "If shown it will be localized into the selected language of the site"
    238245msgstr ""
    239246
    240 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:672
     247#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:674
    241248msgid "If the page does not exist the default will be used."
    242249msgstr ""
    243250
    244 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:469
     251#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:471
    245252msgid ""
    246253"if the ticket title should be automatically updated to the event title when "
     
    248255msgstr ""
    249256
    250 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:470
     257#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:472
    251258msgid ""
    252259"if tickets to past events and tickets to events that have been deleted "
     
    254261msgstr ""
    255262
    256 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:445
     263#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:447
    257264msgid ""
    258265"If you choose to use Google Maps, no maps will be displayed on the event "
     
    260267msgstr ""
    261268
    262 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:600
     269#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:602
    263270msgid ""
    264271"If you want to use Bootstrap modals your theme must be built with Bootstrap"
    265272msgstr ""
    266273
    267 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:499
     274#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:501
    268275msgid "Internally all dates are stored in the ISO-format (YYYY-mm-dd)."
    269276msgstr ""
    270277
    271 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:452
     278#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:454
    272279msgid "It is possible to create a custom page used to display the events."
    273280msgstr ""
    274281
    275 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:440
     282#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:442
    276283msgid ""
    277284"It is possible to use either Google Maps or OpenStreetMap to display the "
     
    283290msgstr ""
    284291
    285 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1143
     292#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1194
    286293msgid "Last name"
    287294msgstr ""
    288295
    289 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:428
     296#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:430
    290297msgid "Leave blank to keep the defaults."
    291298msgstr ""
    292299
    293300#. Field slug
    294 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:312
     301#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:313
    295302msgid "Link from event to ticket"
    296303msgstr ""
    297304
    298305#. Field slug
    299 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:324
     306#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:325
    300307msgid "Link from ticket to event"
    301308msgstr ""
    302309
    303 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:293
    304 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:524
    305 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1866
    306 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1888
     310#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:286
     311#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1992
     312#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2015
    307313#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-map.php:48
    308314msgid "Location"
    309315msgstr ""
    310316
    311 #. Field slug
    312 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:299
     317#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:545
     318msgid "Location address"
     319msgstr ""
     320
     321#. Field slug
     322#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:287
    313323msgid "Location map"
    314324msgstr ""
    315325
     326#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:534
     327msgid "Location Name"
     328msgstr ""
     329
    316330#. Field slug
    317331#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:260
    318 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:273
    319332msgid "Location of event"
    320333msgstr ""
     
    332345msgstr ""
    333346
    334 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:226
     347#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1270
    335348msgid "Monday"
    336349msgstr ""
     
    348361msgstr ""
    349362
    350 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:249
     363#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:242
    351364msgid "New"
    352365msgstr ""
    353366
    354 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2006
     367#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2141
    355368msgid "No end date given. The date has been set to today."
    356369msgstr ""
    357370
    358 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:658
     371#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:696
    359372msgid "No event corresponds to the event id in the URL"
    360373msgstr ""
    361374
    362 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:662
     375#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:700
    363376msgid "No event id in the URL"
    364377msgstr ""
    365378
    366 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1994
     379#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2129
    367380msgid "No event points to the ticket"
    368381msgstr ""
     
    372385msgstr ""
    373386
    374 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2002
     387#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2137
    375388msgid "No start date given. The date has been set to today."
    376389msgstr ""
    377390
    378 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:255
    379 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:256
     391#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:248
     392#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:249
    380393msgid "Nono"
    381394msgstr ""
    382395
    383 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:569
    384 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:619
    385 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:689
     396#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:571
     397#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:621
     398#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:691
    386399msgid "off"
    387400msgstr ""
    388401
    389 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:565
    390 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:615
    391 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:685
     402#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:567
     403#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:617
     404#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:687
    392405msgid "on"
    393406msgstr ""
    394407
    395 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:441
     408#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:443
    396409msgid ""
    397410"OpenStreetMap is a community-based free service, which is sufficient in most "
     
    399412msgstr ""
    400413
    401 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1142
    402 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1157
     414#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1193
     415#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1208
    403416msgid "Order"
    404417msgstr ""
    405418
    406 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1144
     419#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1195
    407420msgid "Paid"
    408421msgstr ""
    409422
    410 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1906
     423#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2034
    411424msgid "Participate"
    412425msgstr ""
    413426
    414 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:462
     427#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:464
    415428msgid ""
    416429"Please notice that a link from an event to a ticket will only appear when "
     
    418431msgstr ""
    419432
    420 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:601
     433#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:603
    421434msgid ""
    422435"Please notice that modals may not work properly with older versions of "
     
    424437msgstr ""
    425438
    426 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:446
     439#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:448
    427440msgid ""
    428441"Please notice that the maps presented by either of the map services contain "
     
    430443msgstr ""
    431444
    432 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1451
    433 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1475
     445#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1515
     446#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1539
    434447msgid "Product is orphaned"
    435448msgstr ""
    436449
    437 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1144
     450#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1195
    438451msgid "Quantity"
    439452msgstr ""
    440453
    441 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:573
     454#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:611
    442455msgid "Sales"
    443456msgstr ""
    444457
    445 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:231
     458#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1275
    446459msgid "Saturday"
    447460msgstr ""
    448461
    449 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:410
     462#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:412
    450463msgid "Save Settings"
    451464msgstr ""
    452465
    453 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:253
     466#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:246
    454467msgid "Search"
    455468msgstr ""
     
    459472msgstr ""
    460473
     474#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-calendar.php:85
     475msgid "See more"
     476msgstr ""
     477
    461478#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:195
    462479msgid "Select map service"
    463480msgstr ""
    464481
    465 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:498
     482#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:500
    466483msgid "Select the dateformat used in datepickers and displays."
    467484msgstr ""
    468485
    469 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:435
     486#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:437
    470487msgid ""
    471488"Select what should happen when a user clicks on an event in the calendar"
    472489msgstr ""
    473490
    474 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:536
     491#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:574
    475492msgid "Sell tickets in the shop"
    476493msgstr ""
    477494
    478 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:547
     495#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:585
    479496msgid "Shop link"
    480497msgstr ""
    481498
    482 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1448
    483 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1472
     499#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1512
     500#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1536
    484501msgid "Shortcode can only be used for products of the Hello Event category"
    485502msgstr ""
    486503
    487 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1180
    488 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1370
    489 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1398
    490 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1496
    491 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1510
    492 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1532
    493 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1548
    494 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1563
    495 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1579
    496 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1608
    497 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1629
     504#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1231
     505#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1434
     506#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1462
     507#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1560
     508#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1574
     509#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1596
     510#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1618
     511#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1634
    498512#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1649
    499 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1664
    500 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1679
    501 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1699
     513#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1665
     514#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1694
    502515#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1715
     516#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1735
     517#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1750
     518#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1765
     519#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1780
     520#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1795
     521#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1816
     522#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1832
    503523msgid "Shortcode can only be used when displaying events"
    504524msgstr ""
    505525
    506 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:521
     526#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:523
    507527msgid "Should the weekday name (eg. Monday) be shown in front of the date"
    508528msgstr ""
    509529
    510 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:516
     530#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:518
    511531msgid "show"
    512532msgstr ""
    513533
    514 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:592
     534#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:594
    515535msgid "Show event summary in a Bootstrap modal"
    516536msgstr ""
    517537
    518 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:596
     538#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:598
    519539msgid "Show event summary in a jQuery UI modal"
    520540msgstr ""
     
    524544msgstr ""
    525545
    526 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:570
    527 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1865
    528 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1878
     546#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:608
     547#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1991
     548#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2004
    529549msgid "Start"
    530550msgstr ""
    531551
    532 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:484
     552#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:492
    533553msgid "Start date"
    534554msgstr ""
     
    539559msgstr ""
    540560
    541 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:493
     561#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:501
    542562msgid "Start time"
    543563msgstr ""
    544564
    545 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:225
     565#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1269
    546566msgid "Sunday"
    547567msgstr ""
    548568
    549 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2028
     569#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2163
    550570msgid "The event was saved but there are error(s)"
    551571msgstr ""
    552572
    553 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1339
     573#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1403
    554574msgid ""
    555575"The link from the event does not point to a ticket in Woocommerce. Save the "
     
    557577msgstr ""
    558578
    559 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2026
     579#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2161
    560580msgid "The product was saved but there are error(s)"
    561581msgstr ""
    562582
    563 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1341
     583#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1405
    564584msgid ""
    565585"The ticket exists in Woocommerce, and is published, but you need to set its "
     
    567587msgstr ""
    568588
    569 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1340
     589#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1404
    570590msgid "The ticket exists in Woocommerce, but you need to set it as published"
    571591msgstr ""
    572592
    573 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1183
    574 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1336
     593#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1234
     594#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1400
    575595msgid "The Woocommerce plugin is not activated"
    576596msgstr ""
    577597
    578 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:554
     598#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:592
    579599msgid ""
    580600"then after saving the event a new link will appear to allow you to set the "
     
    582602msgstr ""
    583603
    584 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1998
     604#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2133
    585605msgid "There is already a ticket for the event in the shop"
    586606msgstr ""
    587607
    588 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:436
     608#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:444
    589609msgid "There is no event to show"
    590610msgstr ""
    591611
    592 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1338
     612#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1402
    593613msgid "There is no link from the event to a ticket. Save the event again!"
    594614msgstr ""
    595615
    596 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:657
     616#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:659
    597617msgid "this page"
    598618msgstr ""
    599619
    600 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:229
     620#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1273
    601621msgid "Thursday"
    602622msgstr ""
    603623
    604 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1138
     624#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1189
    605625msgid "Ticket sales status"
    606626msgstr ""
    607627
    608 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:301
    609 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:572
    610 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:227
     628#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:302
     629#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:610
     630#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:233
    611631msgid "Tickets"
    612632msgstr ""
    613633
    614 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:552
     634#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:590
    615635msgid "Tickets are not yet available in the shop."
    616636msgstr ""
    617637
    618 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1367
    619 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1395
     638#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1431
     639#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1459
    620640msgid "Tickets not fully configured"
    621641msgstr ""
    622642
    623 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:610
     643#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:648
    624644msgid "Tickets sold"
    625645msgstr ""
    626646
    627 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:727
     647#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:778
    628648msgid "Tickets to Events"
    629649msgstr ""
    630650
    631 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1357
    632 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1378
     651#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1421
     652#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1442
    633653msgid "Tickets to participate are available in our shop"
    634654msgstr ""
     
    638658msgstr ""
    639659
    640 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:655
     660#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:657
    641661msgid "To obtain the API Key and read Google's explanation go to"
    642662msgstr ""
    643663
    644 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:558
     664#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:596
    645665msgid "To sell tickets Woocommerce needs to be installed and actived"
    646666msgstr ""
    647667
    648 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1166
     668#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1217
    649669msgid "Total"
    650670msgstr ""
    651671
    652 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:227
     672#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1271
    653673msgid "Tuesday"
    654674msgstr ""
     
    658678msgstr ""
    659679
    660 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2014
     680#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2149
    661681msgid "Unknown error"
    662682msgstr ""
    663683
    664 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:469
     684#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:477
    665685msgid "Upcoming events"
    666686msgstr ""
    667687
    668688#. Field slug
    669 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:338
     689#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:339
    670690msgid "Update the ticket title when the event title is changed"
    671691msgstr ""
    672692
    673 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:251
     693#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:244
    674694msgid "View"
    675695msgstr ""
    676696
    677 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:228
     697#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1272
    678698msgid "Wednesday"
    679699msgstr ""
     
    684704msgstr ""
    685705
    686 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:573
     706#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:575
    687707msgid "When switched on admins and editors will see debug information"
    688708msgstr ""
    689709
    690 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:454
     710#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:456
    691711msgid ""
    692712"When using a custom event page you must use shortcodes to show the event "
     
    694714msgstr ""
    695715
    696 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:442
     716#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:444
    697717msgid ""
    698718"With Google Maps comes many additional features (street view, driving "
     
    701721msgstr ""
    702722
    703 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:453
     723#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:455
    704724msgid "you can decide what information should be automatically inserted"
    705725msgstr ""
     
    710730msgstr ""
    711731
    712 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1337
     732#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1401
    713733msgid "You need to set the check box to sell tickets in the event!"
    714734msgstr ""
  • hello-event/trunk/languages/hello-event-fr_FR-backup-202407100741200.po~

    • Property svn:executable deleted
  • hello-event/trunk/languages/hello-event-fr_FR-backup-202407100750420.po~

    r3108894 r3117834  
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: 2020-05-04 14:59+0000\n"
    6 "PO-Revision-Date: 2024-06-27 10:44+0000\n"
     6"PO-Revision-Date: 2024-07-10 07:41+0000\n"
    77"Last-Translator: Christer Fernstrom <[email protected]>\n"
    88"Language-Team: French (France)\n"
     
    1515"X-Loco-Version: 2.3.1; wp-5.3.2"
    1616
    17 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:395
     17#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:397
    1818msgid "A plugin for managing events and sell tickets with Woocommerce"
    1919msgstr ""
     
    2121"Woocommerce"
    2222
    23 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:247
    24 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:248
     23#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:240
     24#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:241
    2525msgid "Add New"
    2626msgstr "Ajouter"
    2727
    28 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1685
     28#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1802
    2929msgid "Add to Calendar"
    3030msgstr "Ajouter au calendrier"
    3131
    3232#. Field slug
    33 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:286
     33#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:274
    3434msgid "Add-to-calendar button"
    3535msgstr "Bouton ajouter-au-calendrier"
    3636
    37 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:252
     37#. Field slug
     38#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:294
     39#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:559
     40#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:300
     41msgid "Advice"
     42msgstr "Conseil"
     43
     44#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:245
    3845msgid "All"
    3946msgstr "Tous les"
    4047
    41 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:461
     48#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:463
    4249msgid ""
    4350"Any items not selected can always be inserted into the content parts of "
     
    4754"contenu des événements et des tickets à l'aide de shortcodes."
    4855
    49 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:443
     56#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:445
    5057msgid ""
    5158"As of July 2018 you will be able to do 28500 requests per month free of "
     
    5562"par mois,"
    5663
    57 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1605
    58 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1626
     64#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1691
     65#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1712
    5966msgid "at"
    6067msgstr "à"
    6168
    6269#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:82
    63 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:453
     70#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:455
    6471msgid "Auto inserted content"
    6572msgstr "Contenu inséré automatiquement"
    6673
    67 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:203
     74#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:207
    6875msgid "Book now"
    6976msgstr "Réserver maintenant"
    7077
    71 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:444
     78#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:446
    7279msgid ""
    7380"but please notice that the pricing plans are quite complex and you should "
     
    8693msgstr "Choisir le fonctionnement"
    8794
    88 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:460
     95#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:462
    8996msgid ""
    9097"Choose what should be AUTOMAICALLY inserted into the content of events and "
     
    102109msgstr "Page d'événement personnalisée"
    103110
    104 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1141
     111#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1192
    105112msgid "Date"
    106113msgstr "Date"
     
    116123msgstr "Format date"
    117124
    118 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:285
     125#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:278
    119126msgid "Dates and time"
    120127msgstr "Date et l'heure"
     
    128135msgstr "Débougage"
    129136
    130 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:426
     137#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:428
    131138msgid "Default is \"Event\" in singular and \"Events\" in plural."
    132139msgstr "Par defaut \"Event\" en singulier et \"Events\" au pluriel."
    133140
    134 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:512
     141#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:514
    135142msgid "don't show"
    136143msgstr "ne pas afficher"
    137144
    138 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:468
     145#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:476
    139146msgid "Earlier events"
    140147msgstr "Evénements  précédents"
    141148
    142 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:250
     149#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:243
    143150msgid "Edit"
    144151msgstr "Modifier"
    145152
    146 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:549
    147 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:599
     153#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:587
     154#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:637
    148155msgid "Edit ticket"
    149156msgstr "Modifier billet"
    150157
    151 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:571
    152 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1883
     158#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:609
     159#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2009
    153160msgid "End"
    154161msgstr "Fin"
    155162
    156 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:502
     163#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:510
    157164msgid "End date"
    158165msgstr "Date de fin"
     
    163170msgstr "Date et heure de fin de l'événement"
    164171
    165 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2010
     172#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2145
    166173msgid "End date is earlier than start date"
    167174msgstr "La date de fin est avant la date de début"
    168175
    169 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:512
     176#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:520
    170177msgid "End time"
    171178msgstr "Heure de fin"
    172179
    173 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:715
    174 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:724
     180#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:766
     181#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:775
    175182msgid "Event ticket"
    176183msgstr "Billet d'événement"
    177184
    178 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:652
     185#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:690
    179186msgid "Event:"
    180187msgstr "Evénement :"
    181188
    182 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:553
     189#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:591
    183190msgid "Fill in the checkbox above to start sell tickets"
    184191msgstr "Cocher la case ci-dessus pour commencer la vente de billets"
    185192
    186 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:671
     193#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:673
    187194msgid "Fill in the slug of the custom event page, or leave blank for default."
    188195msgstr ""
    189196"Renseigner le slug de la page personnalisée ou laisser vide pour défaut"
    190197
    191 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1143
     198#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1194
    192199msgid "First name"
    193200msgstr "Prénom"
    194201
    195 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:230
     202#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1274
    196203msgid "Friday"
    197204msgstr "Vendredi"
     
    201208msgstr "Journée entière"
    202209
    203 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:574
     210#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:576
    204211msgid "generated by the shortcodes in case of problems"
    205212msgstr "générée par le shortcode en cas de problème"
    206213
    207 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:588
     214#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:590
    208215msgid "Go to the event page"
    209216msgstr "Aller à la page de l'événement"
    210217
    211 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:898
    212 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1459
    213 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:368
    214 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:412
     218#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:949
     219#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1523
     220#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:376
     221#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:420
    215222msgid "Goto the event"
    216223msgstr "Aller à l'événement"
     
    220227msgstr "Hello Event"
    221228
    222 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:424
     229#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:426
    223230msgid ""
    224231"Here you can change the name for the event custom type that you see on the "
     
    229236
    230237#. Field slug
    231 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:350
     238#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:351
    232239msgid "Hide ticket from shop unless the event is in the future"
    233240msgstr "Masquer le billet de la boutique sauf si l'événement est dans le futur"
     
    242249"https://www.tekomatik.com/plugins/hello-event\n"
    243250
    244 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:453
     251#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:455
    245252msgid ""
    246253"If no custom page is defined, events will be displayed using the standard "
     
    250257"utilisé, et les réglages ci-dessous"
    251258
    252 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:522
     259#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:524
    253260msgid "If shown it will be localized into the selected language of the site"
    254261msgstr ""
    255262"Si affiché, le nom de jour sera localisé dans la langue sélectionnée du site"
    256263
    257 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:672
     264#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:674
    258265msgid "If the page does not exist the default will be used."
    259266msgstr "Si la page n'existe pas le défaut sera utilisé"
    260267
    261 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:469
     268#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:471
    262269msgid ""
    263270"if the ticket title should be automatically updated to the event title when "
     
    267274"l'événement lorsque l'événement est enregistré."
    268275
    269 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:470
     276#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:472
    270277msgid ""
    271278"if tickets to past events and tickets to events that have been deleted "
     
    276283"boutique"
    277284
    278 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:445
     285#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:447
    279286msgid ""
    280287"If you choose to use Google Maps, no maps will be displayed on the event "
     
    285292"enregistrée ici."
    286293
    287 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:600
     294#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:602
    288295#| msgid "Tu use Bootstrap modals your theme MUST be built with Bootstrap"
    289296msgid ""
     
    293300"inclure Bootstrap"
    294301
    295 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:499
     302#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:501
    296303msgid "Internally all dates are stored in the ISO-format (YYYY-mm-dd)."
    297304msgstr ""
    298305"En interne les dates sont maintenues au format standard ISO (AAAA-mm-jj)"
    299306
    300 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:452
     307#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:454
    301308msgid "It is possible to create a custom page used to display the events."
    302309msgstr ""
    303310"Il est possible de créer une page personnalisée pour montrer les événements"
    304311
    305 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:440
     312#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:442
    306313msgid ""
    307314"It is possible to use either Google Maps or OpenStreetMap to display the "
     
    315322msgstr "Maintenir les billets synchronisés avec les événements"
    316323
    317 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1143
     324#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1194
    318325msgid "Last name"
    319326msgstr "Nom"
    320327
    321 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:428
     328#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:430
    322329msgid "Leave blank to keep the defaults."
    323330msgstr "Laisser vide pour garder les défauts"
    324331
    325332#. Field slug
    326 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:312
     333#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:313
    327334msgid "Link from event to ticket"
    328335msgstr "Lien de l'événement vers le billet"
    329336
    330337#. Field slug
    331 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:324
     338#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:325
    332339msgid "Link from ticket to event"
    333340msgstr "Lien de l'événement vers le billet "
    334341
    335 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:293
    336 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:524
    337 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1866
    338 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1888
     342#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:286
     343#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1992
     344#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2015
    339345#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-map.php:48
    340346msgid "Location"
    341347msgstr "Lieu"
    342348
    343 #. Field slug
    344 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:299
     349#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:545
     350msgid "Location address"
     351msgstr "Adress du lieu"
     352
     353#. Field slug
     354#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:287
    345355msgid "Location map"
    346356msgstr "Carte"
    347357
     358#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:534
     359msgid "Location Name"
     360msgstr "Nom du lieu"
     361
    348362#. Field slug
    349363#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:260
    350 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:273
    351364msgid "Location of event"
    352365msgstr "Lieu de l'événement"
     
    364377msgstr "Clé de l'API Google Maps"
    365378
    366 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:226
     379#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1270
    367380msgid "Monday"
    368381msgstr "Lundi"
     
    380393msgstr "Nommage des événements"
    381394
    382 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:249
     395#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:242
    383396msgid "New"
    384397msgstr "Nouveau"
    385398
    386 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2006
     399#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2141
    387400msgid "No end date given. The date has been set to today."
    388401msgstr "Aucune date de fin donnée. La date d'aujourd'hui est utilisée."
    389402
    390 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:658
     403#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:696
    391404msgid "No event corresponds to the event id in the URL"
    392405msgstr ""
    393406"Aucun événement ne correspond à l'identifiant de l'événement dans l'URL"
    394407
    395 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:662
     408#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:700
    396409msgid "No event id in the URL"
    397410msgstr "Aucun identifiant d'événement dans l'URL"
    398411
    399 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1994
     412#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2129
    400413msgid "No event points to the ticket"
    401414msgstr "Aucun événement est associé au billet"
     
    405418msgstr "Aucune position donnée"
    406419
    407 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2002
     420#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2137
    408421msgid "No start date given. The date has been set to today."
    409422msgstr "Aucune date de début donnée. La date d'aujourd'hui est utilisée."
    410423
    411 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:255
    412 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:256
     424#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:248
     425#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:249
    413426msgid "Nono"
    414427msgstr "Aucun"
    415428
    416 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:569
    417 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:619
    418 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:689
     429#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:571
     430#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:621
     431#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:691
    419432msgid "off"
    420433msgstr "désactivé"
    421434
    422 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:565
    423 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:615
    424 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:685
     435#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:567
     436#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:617
     437#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:687
    425438msgid "on"
    426439msgstr "activé"
    427440
    428 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:441
     441#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:443
    429442msgid ""
    430443"OpenStreetMap is a community-based free service, which is sufficient in most "
     
    434447"suffisant dans la plupart des cas."
    435448
    436 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1142
    437 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1157
     449#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1193
     450#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1208
    438451msgid "Order"
    439452msgstr "Commande"
    440453
    441 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1144
     454#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1195
    442455msgid "Paid"
    443456msgstr "Réglé"
    444457
    445 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1906
     458#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2034
    446459msgid "Participate"
    447460msgstr "Participer"
    448461
    449 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:462
     462#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:464
    450463msgid ""
    451464"Please notice that a link from an event to a ticket will only appear when "
     
    455468"lorsque la vente des billets pour l'événement est active."
    456469
    457 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:601
     470#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:603
    458471msgid ""
    459472"Please notice that modals may not work properly with older versions of "
     
    463476"les anciennes versions de Bootstrap"
    464477
    465 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:446
     478#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:448
    466479msgid ""
    467480"Please notice that the maps presented by either of the map services contain "
     
    472485"fournisseur de service."
    473486
    474 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1451
    475 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1475
     487#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1515
     488#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1539
    476489msgid "Product is orphaned"
    477490msgstr "Aucun événement correspond au produit"
    478491
    479 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1144
     492#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1195
    480493msgid "Quantity"
    481494msgstr "Quantité"
    482495
    483 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:573
     496#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:611
    484497msgid "Sales"
    485498msgstr "Ventes"
    486499
    487 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:231
     500#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1275
    488501msgid "Saturday"
    489502msgstr "Samedi"
    490503
    491 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:410
     504#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:412
    492505msgid "Save Settings"
    493506msgstr "Enregister réglages"
    494507
    495 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:253
     508#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:246
    496509msgid "Search"
    497510msgstr "Chercher"
     
    501514msgstr "Voir dans Open Street Map"
    502515
     516#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-calendar.php:85
     517msgid "See more"
     518msgstr "Montrer plus"
     519
    503520#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:195
    504521msgid "Select map service"
    505522msgstr "Choisir le services de cartographie"
    506523
    507 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:498
     524#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:500
    508525msgid "Select the dateformat used in datepickers and displays."
    509526msgstr "Choisir le format de présentation des dates"
    510527
    511 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:435
     528#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:437
    512529msgid ""
    513530"Select what should happen when a user clicks on an event in the calendar"
     
    516533"calendrier"
    517534
    518 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:536
     535#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:574
    519536msgid "Sell tickets in the shop"
    520537msgstr "Vendre des billets dans la boutique"
    521538
    522 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:547
     539#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:585
    523540msgid "Shop link"
    524541msgstr "Liens vers la boutique"
    525542
    526 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1448
    527 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1472
     543#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1512
     544#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1536
    528545msgid "Shortcode can only be used for products of the Hello Event category"
    529546msgstr ""
     
    531548"Event"
    532549
    533 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1180
    534 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1370
    535 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1398
    536 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1496
    537 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1510
    538 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1532
    539 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1548
    540 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1563
    541 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1579
    542 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1608
    543 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1629
     550#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1231
     551#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1434
     552#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1462
     553#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1560
     554#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1574
     555#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1596
     556#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1618
     557#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1634
    544558#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1649
    545 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1664
    546 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1679
    547 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1699
     559#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1665
     560#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1694
    548561#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1715
     562#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1735
     563#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1750
     564#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1765
     565#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1780
     566#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1795
     567#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1816
     568#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1832
    549569msgid "Shortcode can only be used when displaying events"
    550570msgstr "Shortcode à utiliser uniquement avec des événements"
    551571
    552 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:521
     572#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:523
    553573msgid "Should the weekday name (eg. Monday) be shown in front of the date"
    554574msgstr ""
     
    556576"la date"
    557577
    558 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:516
     578#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:518
    559579msgid "show"
    560580msgstr "afficher"
    561581
    562 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:592
     582#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:594
    563583msgid "Show event summary in a Bootstrap modal"
    564584msgstr "Afficher le résumé de l'événement dans un modal de Bootstrap"
    565585
    566 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:596
     586#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:598
    567587msgid "Show event summary in a jQuery UI modal"
    568588msgstr "Afficher le résumé de l'événement dans un modal de jQuery UI"
     
    572592msgstr "Slug de la page personnalisée"
    573593
    574 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:570
    575 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1865
    576 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1878
     594#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:608
     595#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1991
     596#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2004
    577597msgid "Start"
    578598msgstr "Début"
    579599
    580 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:484
     600#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:492
    581601msgid "Start date"
    582602msgstr "Date de début"
     
    587607msgstr "Date et heure de début de l'événement"
    588608
    589 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:493
     609#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:501
    590610msgid "Start time"
    591611msgstr "Heure de début"
    592612
    593 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:225
     613#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1269
    594614msgid "Sunday"
    595615msgstr "Dimanche"
    596616
    597 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2028
     617#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2163
    598618msgid "The event was saved but there are error(s)"
    599619msgstr "L'événement a été enregistré mais il y a des erreur(s)"
    600620
    601 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1339
     621#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1403
    602622msgid ""
    603623"The link from the event does not point to a ticket in Woocommerce. Save the "
     
    607627"Veuillez enregistrer l'événement de nouveau !"
    608628
    609 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2026
     629#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2161
    610630msgid "The product was saved but there are error(s)"
    611631msgstr "Le billet a été enregistré mais il y a des erreur(s)"
    612632
    613 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1341
     633#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1405
    614634msgid ""
    615635"The ticket exists in Woocommerce, and is published, but you need to set its "
     
    619639"devez aussi définir son prix"
    620640
    621 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1340
     641#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1404
    622642msgid "The ticket exists in Woocommerce, but you need to set it as published"
    623643msgstr ""
     
    625645"en publié"
    626646
    627 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1183
    628 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1336
     647#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1234
     648#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1400
    629649msgid "The Woocommerce plugin is not activated"
    630650msgstr "L'extension Woocommerce n'est pas activée"
    631651
    632 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:554
     652#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:592
    633653msgid ""
    634654"then after saving the event a new link will appear to allow you to set the "
     
    638658"permettra de définir tarif et quantité de billets."
    639659
    640 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1998
     660#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2133
    641661msgid "There is already a ticket for the event in the shop"
    642662msgstr "Il y a déjà un ticket pour l'événement dans la boutique"
    643663
    644 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:436
     664#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:444
    645665msgid "There is no event to show"
    646666msgstr "Il n'y a pas d'événement à montrer"
    647667
    648 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1338
     668#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1402
    649669msgid "There is no link from the event to a ticket. Save the event again!"
    650670msgstr ""
     
    652672"l'événement de nouveau !"
    653673
    654 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:657
     674#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:659
    655675msgid "this page"
    656676msgstr "cette page"
    657677
    658 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:229
     678#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1273
    659679msgid "Thursday"
    660680msgstr "Jeudi"
    661681
    662 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1138
     682#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1189
    663683msgid "Ticket sales status"
    664684msgstr "Situation de vente de billets"
    665685
    666 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:301
    667 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:572
    668 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:227
     686#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:302
     687#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:610
     688#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:233
    669689msgid "Tickets"
    670690msgstr "Billets"
    671691
    672 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:552
     692#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:590
    673693msgid "Tickets are not yet available in the shop."
    674694msgstr "Des billets ne sont pas encore en vente dans la boutique."
    675695
    676 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1367
    677 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1395
     696#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1431
     697#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1459
    678698msgid "Tickets not fully configured"
    679699msgstr "Les billets ne sont pas complètement configurés"
    680700
    681 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:610
     701#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:648
    682702msgid "Tickets sold"
    683703msgstr "Billets vendus"
    684704
    685 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:727
     705#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:778
    686706msgid "Tickets to Events"
    687707msgstr "billets d'événements"
    688708
    689 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1357
    690 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1378
     709#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1421
     710#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1442
    691711msgid "Tickets to participate are available in our shop"
    692712msgstr "Des billets pour participer sont en vente dans notre boutique"
     
    696716msgstr "Format heure"
    697717
    698 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:655
     718#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:657
    699719msgid "To obtain the API Key and read Google's explanation go to"
    700720msgstr "Pour obtenir la clé API et lire l'explication de Google, allez à"
    701721
    702 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:558
     722#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:596
    703723msgid "To sell tickets Woocommerce needs to be installed and actived"
    704724msgstr "Afine de vendre des billet, Woocommerce doit être installé et activé"
    705725
    706 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1166
     726#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1217
    707727msgid "Total"
    708728msgstr "Total"
    709729
    710 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:227
     730#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1271
    711731msgid "Tuesday"
    712732msgstr "Mardi"
     
    716736msgstr "Service de cartographie non defini"
    717737
    718 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2014
     738#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2149
    719739msgid "Unknown error"
    720740msgstr "Erreur inconnue"
    721741
    722 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:469
     742#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:477
    723743msgid "Upcoming events"
    724744msgstr ""
     
    726746
    727747#. Field slug
    728 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:338
     748#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:339
    729749msgid "Update the ticket title when the event title is changed"
    730750msgstr ""
    731751"Mettre à jour le titre du ticket lorsque le titre de l'événement est modifié"
    732752
    733 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:251
     753#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:244
    734754msgid "View"
    735755msgstr "Voir"
    736756
    737 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:228
     757#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1272
    738758msgid "Wednesday"
    739759msgstr "Mercredi"
     
    744764msgstr "Jour de la semaine"
    745765
    746 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:573
     766#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:575
    747767msgid "When switched on admins and editors will see debug information"
    748768msgstr ""
     
    750770"l'information de débougage "
    751771
    752 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:454
     772#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:456
    753773msgid ""
    754774"When using a custom event page you must use shortcodes to show the event "
     
    758778"pour afficher l'information de l'événement."
    759779
    760 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:442
     780#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:444
    761781msgid ""
    762782"With Google Maps comes many additional features (street view, driving "
     
    768788"une clé API Google Maps."
    769789
    770 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:453
     790#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:455
    771791msgid "you can decide what information should be automatically inserted"
    772792msgstr "vous décidez quelle information sera insérée automatiquement"
     
    779799"la carte"
    780800
    781 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1337
     801#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1401
    782802msgid "You need to set the check box to sell tickets in the event!"
    783803msgstr "Vous devez cocher la case pour vendre des billets !"
  • hello-event/trunk/languages/hello-event-fr_FR.l10n.php

    r3108894 r3117834  
    11<?php
    2 return ['project-id-version'=>'Hello Event','report-msgid-bugs-to'=>'','pot-creation-date'=>'2020-05-04 14:59+0000','po-revision-date'=>'2024-06-27 15:24+0000','last-translator'=>'Christer Fernstrom <[email protected]>','language-team'=>'French (France)','language'=>'fr_FR','plural-forms'=>'nplurals=2; plural=n > 1;','mime-version'=>'1.0','content-type'=>'text/plain; charset=UTF-8','content-transfer-encoding'=>'8bit','x-generator'=>'Loco https://localise.biz/','x-loco-version'=>'2.3.1; wp-5.3.2','messages'=>['A plugin for managing events and sell tickets with Woocommerce'=>'Une extension pour la gestion des événements et pour vendre des billets avec Woocommerce','Add New'=>'Ajouter','Add to Calendar'=>'Ajouter au calendrier','Add-to-calendar button'=>'Bouton ajouter-au-calendrier','All'=>'Tous les','Any items not selected can always be inserted into the content parts of events and tickets using shortcodes.'=>'Tous les éléments non sélectionnés peuvent toujours être insérés dans le contenu des événements et des tickets à l\'aide de shortcodes.','As of July 2018 you will be able to do 28500 requests per month free of charge,'=>'À partir de juillet 2018, vous pourrez effectuer gratuitement 28500 demandes par mois,','at'=>'à','Auto inserted content'=>'Contenu inséré automatiquement','Book now'=>'Réserver maintenant','but please notice that the pricing plans are quite complex and you should consult Google\'s information about the details.'=>'mais veuillez noter que les plans de prix sont assez complexes et vous devriez consulter les informations de Google pour les détails.','Calendar'=>'Calendrier','Choose behaviour'=>'Choisir le fonctionnement','Choose what should be AUTOMAICALLY inserted into the content of events and tickets.'=>'Choisissez ce qui doit être inséré AUTOMATIQUEMENT dans le contenu des événements et des tickets.','Christer Fernstrom'=>'Christer Fernstrom','Custom event page'=>'Page d\'événement personnalisée','Date'=>'Date','Date and Time formats'=>'Format de date et heure','Date format'=>'Format date','Dates and time'=>'Date et l\'heure','Debug'=>'Débougue','Debugging'=>'Débougage','Default is "Event" in singular and "Events" in plural.'=>'Par defaut "Event" en singulier et "Events" au pluriel.','don\'t show'=>'ne pas afficher','Earlier events'=>'Evénements  précédents','Edit'=>'Modifier','Edit ticket'=>'Modifier billet','End'=>'Fin','End date'=>'Date de fin','End date and time of event'=>'Date et heure de fin de l\'événement','End date is earlier than start date'=>'La date de fin est avant la date de début','End time'=>'Heure de fin','Event ticket'=>'Billet d\'événement','Event:'=>'Evénement :','Fill in the checkbox above to start sell tickets'=>'Cocher la case ci-dessus pour commencer la vente de billets','Fill in the slug of the custom event page, or leave blank for default.'=>'Renseigner le slug de la page personnalisée ou laisser vide pour défaut','First name'=>'Prénom','Friday'=>'Vendredi','Full day'=>'Journée entière','generated by the shortcodes in case of problems'=>'générée par le shortcode en cas de problème','Go to the event page'=>'Aller à la page de l\'événement','Goto the event'=>'Aller à l\'événement','Hello Event'=>'Hello Event','Here you can change the name for the event custom type that you see on the admin pages.'=>'Ici vous pouvez modifier le nom du type customisé des événéments tel qu\'affiché sur les pages d\'administration.','Hide ticket from shop unless the event is in the future'=>'Masquer le billet de la boutique sauf si l\'événement est dans le futur','https://www.tekomatik.com/about'=>'https://www.tekomatik.com/about','https://www.tekomatik.com/plugins/hello-event'=>'https://www.tekomatik.com/plugins/hello-event
    3 ','If no custom page is defined, events will be displayed using the standard page template of the theme, and in the settings below'=>'Si la page personnalisée n\'est pas définie le modèle de page du thème sera utilisé, et les réglages ci-dessous','If shown it will be localized into the selected language of the site'=>'Si affiché, le nom de jour sera localisé dans la langue sélectionnée du site','If the page does not exist the default will be used.'=>'Si la page n\'existe pas le défaut sera utilisé','if the ticket title should be automatically updated to the event title when the event is saved.'=>'si le titre du ticket doit être automatiquement mis à jour avec le titre de l\'événement lorsque l\'événement est enregistré.','if tickets to past events and tickets to events that have been deleted should be set to hidden to prevent them from being shown in the shop'=>'si les billets d\'événements passés et les billets d\'événements qui ont été supprimés doivent être masqués pour éviter qu\'ils ne s\'affichent dans la boutique','If you choose to use Google Maps, no maps will be displayed on the event pages until you have obtained the key and registered it here.'=>'Si vous choisissez d\'utiliser Google Maps, aucune carte ne sera affichée sur les pages des événements tant que vous n\'aurez pas obtenu la clé et l\'avez enregistrée ici.','If you want to use Bootstrap modals your theme must be built with Bootstrap'=>'Pour faire fonctionner les modals Bootstrap votre thème doit imperativement inclure Bootstrap','Internally all dates are stored in the ISO-format (YYYY-mm-dd).'=>'En interne les dates sont maintenues au format standard ISO (AAAA-mm-jj)','It is possible to create a custom page used to display the events.'=>'Il est possible de créer une page personnalisée pour montrer les événements','It is possible to use either Google Maps or OpenStreetMap to display the locations of events.'=>'Il est possible d\'utiliser soit Google Maps soit OpenStreetMap pour afficher les emplacements des événements.','Keep tickets in sync with events'=>'Maintenir les billets synchronisés avec les événements','Last name'=>'Nom','Leave blank to keep the defaults.'=>'Laisser vide pour garder les défauts','Link from event to ticket'=>'Lien de l\'événement vers le billet','Link from ticket to event'=>'Lien de l\'événement vers le billet ','Location'=>'Lieu','Location map'=>'Carte','Location of event'=>'Lieu de l\'événement','Manage events and sell tickets with WooCommerce as easy as Hello World'=>'Gerer des événements et vendre des places avec WooCommerce','Maps'=>'Cartes','Maps API Key'=>'Clé de l\'API Google Maps','Monday'=>'Lundi','Name of event (plural)'=>'Nom d\'événement (pluriel)','Name of event (singular)'=>'Nom d\'événement (singulier)','Naming events'=>'Nommage des événements','New'=>'Nouveau','No end date given. The date has been set to today.'=>'Aucune date de fin donnée. La date d\'aujourd\'hui est utilisée.','No event corresponds to the event id in the URL'=>'Aucun événement ne correspond à l\'identifiant de l\'événement dans l\'URL','No event id in the URL'=>'Aucun identifiant d\'événement dans l\'URL','No event points to the ticket'=>'Aucun événement est associé au billet','No location given'=>'Aucune position donnée','No start date given. The date has been set to today.'=>'Aucune date de début donnée. La date d\'aujourd\'hui est utilisée.','Nono'=>'Aucun','off'=>'désactivé','on'=>'activé','OpenStreetMap is a community-based free service, which is sufficient in most cases.'=>'OpenStreetMap est un service gratuit, maintenu par la communauté, et suffisant dans la plupart des cas.','Order'=>'Commande','Paid'=>'Réglé','Participate'=>'Participer','Please notice that a link from an event to a ticket will only appear when the sale of tickets for the event is active.'=>'Veuillez noter qu\'un lien d\'un événement vers un billet n\'apparaîtra que lorsque la vente des billets pour l\'événement est active.','Please notice that modals may not work properly with older versions of Bootstrap'=>'Veuillez noter que les modaux peuvent ne pas fonctionner correctement avec les anciennes versions de Bootstrap','Please notice that the maps presented by either of the map services contain links with credits and contact information to the service provider.'=>'Veuillez noter que les cartes présentées par l\'un ou l\'autre des services de carte contiennent des liens avec crédits et informations de contact au fournisseur de service.','Product is orphaned'=>'Aucun événement correspond au produit','Quantity'=>'Quantité','Sales'=>'Ventes','Saturday'=>'Samedi','Save Settings'=>'Enregister réglages','Search'=>'Chercher','See in Open Street Map'=>'Voir dans Open Street Map','See more'=>'Montrer plus','Select map service'=>'Choisir le services de cartographie','Select the dateformat used in datepickers and displays.'=>'Choisir le format de présentation des dates','Select what should happen when a user clicks on an event in the calendar'=>'Choisir l\'action lorsqu\'un utilisateur clique sur un événement dans la calendrier','Sell tickets in the shop'=>'Vendre des billets dans la boutique','Shop link'=>'Liens vers la boutique','Shortcode can only be used for products of the Hello Event category'=>'Shortcode ne peut être utilisé que pour les produits de la catégorie Hello Event','Shortcode can only be used when displaying events'=>'Shortcode à utiliser uniquement avec des événements','Should the weekday name (eg. Monday) be shown in front of the date'=>'Le nom du jour de la semaine (par exemple Lundi) doit-il être affiché devant la date','show'=>'afficher','Show event summary in a Bootstrap modal'=>'Afficher le résumé de l\'événement dans un modal de Bootstrap','Show event summary in a jQuery UI modal'=>'Afficher le résumé de l\'événement dans un modal de jQuery UI','Slug for custom event page'=>'Slug de la page personnalisée','Start'=>'Début','Start date'=>'Date de début','Start date and time of event'=>'Date et heure de début de l\'événement','Start time'=>'Heure de début','Sunday'=>'Dimanche','The event was saved but there are error(s)'=>'L\'événement a été enregistré mais il y a des erreur(s)','The link from the event does not point to a ticket in Woocommerce. Save the event again!'=>'Le liens depuis l\'événement ne pointe pas sur un billet dans la boutique. Veuillez enregistrer l\'événement de nouveau !','The product was saved but there are error(s)'=>'Le billet a été enregistré mais il y a des erreur(s)','The ticket exists in Woocommerce, and is published, but you need to set its price'=>'Le billet existe bien dans la boutique et avec le status publié, mais vous devez aussi définir son prix','The ticket exists in Woocommerce, but you need to set it as published'=>'Le billet existe bien dans la boutique mais vous devez modifier son status en publié','The Woocommerce plugin is not activated'=>'L\'extension Woocommerce n\'est pas activée','then after saving the event a new link will appear to allow you to set the price and quantity of tickets'=>'et une fois l\'événement enregistré , un nouveau lien va apparaître qui permettra de définir tarif et quantité de billets.','There is already a ticket for the event in the shop'=>'Il y a déjà un ticket pour l\'événement dans la boutique','There is no event to show'=>'Il n\'y a pas d\'événement à montrer','There is no link from the event to a ticket. Save the event again!'=>'Il n\'y a pas de lien de l\'événement vers un billet. Veuillez enregistrer l\'événement de nouveau !','this page'=>'cette page','Thursday'=>'Jeudi','Ticket sales status'=>'Situation de vente de billets','Tickets'=>'Billets','Tickets are not yet available in the shop.'=>'Des billets ne sont pas encore en vente dans la boutique.','Tickets not fully configured'=>'Les billets ne sont pas complètement configurés','Tickets sold'=>'Billets vendus','Tickets to Events'=>'billets d\'événements','Tickets to participate are available in our shop'=>'Des billets pour participer sont en vente dans notre boutique','Time format'=>'Format heure','To obtain the API Key and read Google\'s explanation go to'=>'Pour obtenir la clé API et lire l\'explication de Google, allez à','To sell tickets Woocommerce needs to be installed and actived'=>'Afine de vendre des billet, Woocommerce doit être installé et activé','Total'=>'Total','Tuesday'=>'Mardi','Undefined map services'=>'Service de cartographie non defini','Unknown error'=>'Erreur inconnue','Upcoming events'=>'Événements à venir
     2return ['project-id-version'=>'Hello Event','report-msgid-bugs-to'=>'','pot-creation-date'=>'2020-05-04 14:59+0000','po-revision-date'=>'2024-07-10 07:50+0000','last-translator'=>'Christer Fernstrom <[email protected]>','language-team'=>'French (France)','language'=>'fr_FR','plural-forms'=>'nplurals=2; plural=n > 1;','mime-version'=>'1.0','content-type'=>'text/plain; charset=UTF-8','content-transfer-encoding'=>'8bit','x-generator'=>'Loco https://localise.biz/','x-loco-version'=>'2.3.1; wp-5.3.2','messages'=>['A plugin for managing events and sell tickets with Woocommerce'=>'Une extension pour la gestion des événements et pour vendre des billets avec Woocommerce','Add New'=>'Ajouter','Add to Calendar'=>'Ajouter au calendrier','Add-to-calendar button'=>'Bouton ajouter-au-calendrier','Advice'=>'Conseil','Advice to participants, for example related to parking or public transportation'=>'Conseils aux participants, par exemple concernant le stationnement ou les transports en commun','All'=>'Tous les','Any items not selected can always be inserted into the content parts of events and tickets using shortcodes.'=>'Tous les éléments non sélectionnés peuvent toujours être insérés dans le contenu des événements et des tickets à l\'aide de shortcodes.','As of July 2018 you will be able to do 28500 requests per month free of charge,'=>'À partir de juillet 2018, vous pourrez effectuer gratuitement 28500 demandes par mois,','at'=>'à','Auto inserted content'=>'Contenu inséré automatiquement','Book now'=>'Réserver maintenant','but please notice that the pricing plans are quite complex and you should consult Google\'s information about the details.'=>'mais veuillez noter que les plans de prix sont assez complexes et vous devriez consulter les informations de Google pour les détails.','Calendar'=>'Calendrier','Choose behaviour'=>'Choisir le fonctionnement','Choose what should be AUTOMAICALLY inserted into the content of events and tickets.'=>'Choisissez ce qui doit être inséré AUTOMATIQUEMENT dans le contenu des événements et des tickets.','Christer Fernstrom'=>'Christer Fernstrom','Custom event page'=>'Page d\'événement personnalisée','Date'=>'Date','Date and Time formats'=>'Format de date et heure','Date format'=>'Format date','Dates and time'=>'Date et l\'heure','Debug'=>'Débougue','Debugging'=>'Débougage','Default is "Event" in singular and "Events" in plural.'=>'Par defaut "Event" en singulier et "Events" au pluriel.','don\'t show'=>'ne pas afficher','Earlier events'=>'Evénements  précédents','Edit'=>'Modifier','Edit ticket'=>'Modifier billet','End'=>'Fin','End date'=>'Date de fin','End date and time of event'=>'Date et heure de fin de l\'événement','End date is earlier than start date'=>'La date de fin est avant la date de début','End time'=>'Heure de fin','Event ticket'=>'Billet d\'événement','Event:'=>'Evénement :','Fill in the checkbox above to start sell tickets'=>'Cocher la case ci-dessus pour commencer la vente de billets','Fill in the slug of the custom event page, or leave blank for default.'=>'Renseigner le slug de la page personnalisée ou laisser vide pour défaut','First name'=>'Prénom','Friday'=>'Vendredi','Full day'=>'Journée entière','generated by the shortcodes in case of problems'=>'générée par le shortcode en cas de problème','Go to the event page'=>'Aller à la page de l\'événement','Goto the event'=>'Aller à l\'événement','Hello Event'=>'Hello Event','Here you can change the name for the event custom type that you see on the admin pages.'=>'Ici vous pouvez modifier le nom du type customisé des événéments tel qu\'affiché sur les pages d\'administration.','Hide ticket from shop unless the event is in the future'=>'Masquer le billet de la boutique sauf si l\'événement est dans le futur','https://www.tekomatik.com/about'=>'https://www.tekomatik.com/about','https://www.tekomatik.com/plugins/hello-event'=>'https://www.tekomatik.com/plugins/hello-event
     3','If no custom page is defined, events will be displayed using the standard page template of the theme, and in the settings below'=>'Si la page personnalisée n\'est pas définie le modèle de page du thème sera utilisé, et les réglages ci-dessous','If shown it will be localized into the selected language of the site'=>'Si affiché, le nom de jour sera localisé dans la langue sélectionnée du site','If the page does not exist the default will be used.'=>'Si la page n\'existe pas le défaut sera utilisé','if the ticket title should be automatically updated to the event title when the event is saved.'=>'si le titre du ticket doit être automatiquement mis à jour avec le titre de l\'événement lorsque l\'événement est enregistré.','if tickets to past events and tickets to events that have been deleted should be set to hidden to prevent them from being shown in the shop'=>'si les billets d\'événements passés et les billets d\'événements qui ont été supprimés doivent être masqués pour éviter qu\'ils ne s\'affichent dans la boutique','If you choose to use Google Maps, no maps will be displayed on the event pages until you have obtained the key and registered it here.'=>'Si vous choisissez d\'utiliser Google Maps, aucune carte ne sera affichée sur les pages des événements tant que vous n\'aurez pas obtenu la clé et l\'avez enregistrée ici.','If you want to use Bootstrap modals your theme must be built with Bootstrap'=>'Pour faire fonctionner les modals Bootstrap votre thème doit imperativement inclure Bootstrap','Internally all dates are stored in the ISO-format (YYYY-mm-dd).'=>'En interne les dates sont maintenues au format standard ISO (AAAA-mm-jj)','It is possible to create a custom page used to display the events.'=>'Il est possible de créer une page personnalisée pour montrer les événements','It is possible to use either Google Maps or OpenStreetMap to display the locations of events.'=>'Il est possible d\'utiliser soit Google Maps soit OpenStreetMap pour afficher les emplacements des événements.','Keep tickets in sync with events'=>'Maintenir les billets synchronisés avec les événements','Last name'=>'Nom','Leave blank to keep the defaults.'=>'Laisser vide pour garder les défauts','Link from event to ticket'=>'Lien de l\'événement vers le billet','Link from ticket to event'=>'Lien de l\'événement vers le billet ','Location'=>'Lieu','Location address'=>'Adress du lieu','Location map'=>'Carte','Location Name'=>'Nom du lieu','Location of event'=>'Lieu de l\'événement','Manage events and sell tickets with WooCommerce as easy as Hello World'=>'Gerer des événements et vendre des places avec WooCommerce','Maps'=>'Cartes','Maps API Key'=>'Clé de l\'API Google Maps','Monday'=>'Lundi','Name of event (plural)'=>'Nom d\'événement (pluriel)','Name of event (singular)'=>'Nom d\'événement (singulier)','Naming events'=>'Nommage des événements','New'=>'Nouveau','No end date given. The date has been set to today.'=>'Aucune date de fin donnée. La date d\'aujourd\'hui est utilisée.','No event corresponds to the event id in the URL'=>'Aucun événement ne correspond à l\'identifiant de l\'événement dans l\'URL','No event id in the URL'=>'Aucun identifiant d\'événement dans l\'URL','No event points to the ticket'=>'Aucun événement est associé au billet','No location given'=>'Aucune position donnée','No start date given. The date has been set to today.'=>'Aucune date de début donnée. La date d\'aujourd\'hui est utilisée.','Nono'=>'Aucun','off'=>'désactivé','on'=>'activé','OpenStreetMap is a community-based free service, which is sufficient in most cases.'=>'OpenStreetMap est un service gratuit, maintenu par la communauté, et suffisant dans la plupart des cas.','Order'=>'Commande','Paid'=>'Réglé','Participate'=>'Participer','Please notice that a link from an event to a ticket will only appear when the sale of tickets for the event is active.'=>'Veuillez noter qu\'un lien d\'un événement vers un billet n\'apparaîtra que lorsque la vente des billets pour l\'événement est active.','Please notice that modals may not work properly with older versions of Bootstrap'=>'Veuillez noter que les modaux peuvent ne pas fonctionner correctement avec les anciennes versions de Bootstrap','Please notice that the maps presented by either of the map services contain links with credits and contact information to the service provider.'=>'Veuillez noter que les cartes présentées par l\'un ou l\'autre des services de carte contiennent des liens avec crédits et informations de contact au fournisseur de service.','Product is orphaned'=>'Aucun événement correspond au produit','Quantity'=>'Quantité','Sales'=>'Ventes','Saturday'=>'Samedi','Save Settings'=>'Enregister réglages','Search'=>'Chercher','See in Open Street Map'=>'Voir dans Open Street Map','See more'=>'Montrer plus','Select map service'=>'Choisir le services de cartographie','Select the dateformat used in datepickers and displays.'=>'Choisir le format de présentation des dates','Select what should happen when a user clicks on an event in the calendar'=>'Choisir l\'action lorsqu\'un utilisateur clique sur un événement dans la calendrier','Sell tickets in the shop'=>'Vendre des billets dans la boutique','Shop link'=>'Liens vers la boutique','Shortcode can only be used for products of the Hello Event category'=>'Shortcode ne peut être utilisé que pour les produits de la catégorie Hello Event','Shortcode can only be used when displaying events'=>'Shortcode à utiliser uniquement avec des événements','Should the weekday name (eg. Monday) be shown in front of the date'=>'Le nom du jour de la semaine (par exemple Lundi) doit-il être affiché devant la date','show'=>'afficher','Show event summary in a Bootstrap modal'=>'Afficher le résumé de l\'événement dans un modal de Bootstrap','Show event summary in a jQuery UI modal'=>'Afficher le résumé de l\'événement dans un modal de jQuery UI','Slug for custom event page'=>'Slug de la page personnalisée','Start'=>'Début','Start date'=>'Date de début','Start date and time of event'=>'Date et heure de début de l\'événement','Start time'=>'Heure de début','Sunday'=>'Dimanche','The (optional) location name can for example be the name of a concert hall'=>'Le nom (facultatif) du lieu peut par exemple être le nom d\'une salle de concert','The event was saved but there are error(s)'=>'L\'événement a été enregistré mais il y a des erreur(s)','The link from the event does not point to a ticket in Woocommerce. Save the event again!'=>'Le liens depuis l\'événement ne pointe pas sur un billet dans la boutique. Veuillez enregistrer l\'événement de nouveau !','The location address should be detailed enough to geo-localize the place'=>'L\'adresse du lieu doit être suffisamment détaillée pour géo-localiser la localisation','The product was saved but there are error(s)'=>'Le billet a été enregistré mais il y a des erreur(s)','The ticket exists in Woocommerce, and is published, but you need to set its price'=>'Le billet existe bien dans la boutique et avec le status publié, mais vous devez aussi définir son prix','The ticket exists in Woocommerce, but you need to set it as published'=>'Le billet existe bien dans la boutique mais vous devez modifier son status en publié','The Woocommerce plugin is not activated'=>'L\'extension Woocommerce n\'est pas activée','then after saving the event a new link will appear to allow you to set the price and quantity of tickets'=>'et une fois l\'événement enregistré , un nouveau lien va apparaître qui permettra de définir tarif et quantité de billets.','There is already a ticket for the event in the shop'=>'Il y a déjà un ticket pour l\'événement dans la boutique','There is no event to show'=>'Il n\'y a pas d\'événement à montrer','There is no link from the event to a ticket. Save the event again!'=>'Il n\'y a pas de lien de l\'événement vers un billet. Veuillez enregistrer l\'événement de nouveau !','this page'=>'cette page','Thursday'=>'Jeudi','Ticket sales status'=>'Situation de vente de billets','Tickets'=>'Billets','Tickets are not yet available in the shop.'=>'Des billets ne sont pas encore en vente dans la boutique.','Tickets not fully configured'=>'Les billets ne sont pas complètement configurés','Tickets sold'=>'Billets vendus','Tickets to Events'=>'billets d\'événements','Tickets to participate are available in our shop'=>'Des billets pour participer sont en vente dans notre boutique','Time format'=>'Format heure','To obtain the API Key and read Google\'s explanation go to'=>'Pour obtenir la clé API et lire l\'explication de Google, allez à','To sell tickets Woocommerce needs to be installed and actived'=>'Afine de vendre des billet, Woocommerce doit être installé et activé','Total'=>'Total','Tuesday'=>'Mardi','Undefined map services'=>'Service de cartographie non defini','Unknown error'=>'Erreur inconnue','Upcoming events'=>'Événements à venir
    44','Update the ticket title when the event title is changed'=>'Mettre à jour le titre du ticket lorsque le titre de l\'événement est modifié','View'=>'Voir','Wednesday'=>'Mercredi','Weekday'=>'Jour de la semaine','When switched on admins and editors will see debug information'=>'Quand cette fonction est activée les admins et les editeurs verront de l\'information de débougage ','When using a custom event page you must use shortcodes to show the event information.'=>'Quand une page personnalisée et utilisée on doit utiliser les codes courts pour afficher l\'information de l\'événement.','With Google Maps comes many additional features (street view, driving directions, ...), but in order to use Google maps you need to obtain a Google Maps API Key.'=>'Google Maps propose de nombreuses fonctionnalités supplémentaires (street view, itinéraires, etc.), mais pour utiliser Google Maps, vous devez obtenir une clé API Google Maps.','you can decide what information should be automatically inserted'=>'vous décidez quelle information sera insérée automatiquement','You need to register your Google Maps API Key before the map can be shown'=>'Vous devez enregistrer votre clé API Google Maps avant de pouvoir afficher la carte','You need to set the check box to sell tickets in the event!'=>'Vous devez cocher la case pour vendre des billets !']];
  • hello-event/trunk/languages/hello-event-fr_FR.po

    r3108894 r3117834  
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: 2020-05-04 14:59+0000\n"
    6 "PO-Revision-Date: 2024-06-27 15:24+0000\n"
     6"PO-Revision-Date: 2024-07-10 07:50+0000\n"
    77"Last-Translator: Christer Fernstrom <[email protected]>\n"
    88"Language-Team: French (France)\n"
     
    1515"X-Loco-Version: 2.3.1; wp-5.3.2"
    1616
    17 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:395
     17#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:397
    1818msgid "A plugin for managing events and sell tickets with Woocommerce"
    1919msgstr ""
     
    2121"Woocommerce"
    2222
    23 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:247
    24 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:248
     23#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:240
     24#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:241
    2525msgid "Add New"
    2626msgstr "Ajouter"
    2727
    28 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1688
     28#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1802
    2929msgid "Add to Calendar"
    3030msgstr "Ajouter au calendrier"
    3131
    3232#. Field slug
    33 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:286
     33#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:274
    3434msgid "Add-to-calendar button"
    3535msgstr "Bouton ajouter-au-calendrier"
    3636
    37 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:252
     37#. Field slug
     38#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:294
     39#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:559
     40#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:300
     41msgid "Advice"
     42msgstr "Conseil"
     43
     44#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:565
     45msgid ""
     46"Advice to participants, for example related to parking or public "
     47"transportation"
     48msgstr ""
     49"Conseils aux participants, par exemple concernant le stationnement ou les "
     50"transports en commun"
     51
     52#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:245
    3853msgid "All"
    3954msgstr "Tous les"
    4055
    41 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:461
     56#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:463
    4257msgid ""
    4358"Any items not selected can always be inserted into the content parts of "
     
    4762"contenu des événements et des tickets à l'aide de shortcodes."
    4863
    49 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:443
     64#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:445
    5065msgid ""
    5166"As of July 2018 you will be able to do 28500 requests per month free of "
     
    5570"par mois,"
    5671
    57 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1608
    58 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1629
     72#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1691
     73#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1712
    5974msgid "at"
    6075msgstr "à"
    6176
    6277#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:82
    63 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:453
     78#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:455
    6479msgid "Auto inserted content"
    6580msgstr "Contenu inséré automatiquement"
    6681
    67 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:203
     82#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:207
    6883msgid "Book now"
    6984msgstr "Réserver maintenant"
    7085
    71 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:444
     86#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:446
    7287msgid ""
    7388"but please notice that the pricing plans are quite complex and you should "
     
    86101msgstr "Choisir le fonctionnement"
    87102
    88 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:460
     103#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:462
    89104msgid ""
    90105"Choose what should be AUTOMAICALLY inserted into the content of events and "
     
    102117msgstr "Page d'événement personnalisée"
    103118
    104 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1141
     119#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1192
    105120msgid "Date"
    106121msgstr "Date"
     
    116131msgstr "Format date"
    117132
    118 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:285
     133#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:278
    119134msgid "Dates and time"
    120135msgstr "Date et l'heure"
     
    128143msgstr "Débougage"
    129144
    130 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:426
     145#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:428
    131146msgid "Default is \"Event\" in singular and \"Events\" in plural."
    132147msgstr "Par defaut \"Event\" en singulier et \"Events\" au pluriel."
    133148
    134 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:512
     149#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:514
    135150msgid "don't show"
    136151msgstr "ne pas afficher"
    137152
    138 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:468
     153#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:476
    139154msgid "Earlier events"
    140155msgstr "Evénements  précédents"
    141156
    142 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:250
     157#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:243
    143158msgid "Edit"
    144159msgstr "Modifier"
    145160
    146 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:549
    147 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:599
     161#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:587
     162#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:637
    148163msgid "Edit ticket"
    149164msgstr "Modifier billet"
    150165
    151 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:571
    152 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1886
     166#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:609
     167#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2009
    153168msgid "End"
    154169msgstr "Fin"
    155170
    156 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:502
     171#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:510
    157172msgid "End date"
    158173msgstr "Date de fin"
     
    163178msgstr "Date et heure de fin de l'événement"
    164179
    165 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2013
     180#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2145
    166181msgid "End date is earlier than start date"
    167182msgstr "La date de fin est avant la date de début"
    168183
    169 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:512
     184#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:520
    170185msgid "End time"
    171186msgstr "Heure de fin"
    172187
    173 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:715
    174 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:724
     188#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:766
     189#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:775
    175190msgid "Event ticket"
    176191msgstr "Billet d'événement"
    177192
    178 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:652
     193#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:690
    179194msgid "Event:"
    180195msgstr "Evénement :"
    181196
    182 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:553
     197#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:591
    183198msgid "Fill in the checkbox above to start sell tickets"
    184199msgstr "Cocher la case ci-dessus pour commencer la vente de billets"
    185200
    186 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:671
     201#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:673
    187202msgid "Fill in the slug of the custom event page, or leave blank for default."
    188203msgstr ""
    189204"Renseigner le slug de la page personnalisée ou laisser vide pour défaut"
    190205
    191 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1143
     206#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1194
    192207msgid "First name"
    193208msgstr "Prénom"
    194209
    195 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:230
     210#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1274
    196211msgid "Friday"
    197212msgstr "Vendredi"
     
    201216msgstr "Journée entière"
    202217
    203 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:574
     218#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:576
    204219msgid "generated by the shortcodes in case of problems"
    205220msgstr "générée par le shortcode en cas de problème"
    206221
    207 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:588
     222#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:590
    208223msgid "Go to the event page"
    209224msgstr "Aller à la page de l'événement"
    210225
    211 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:898
    212 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1462
    213 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:368
    214 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:412
     226#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:949
     227#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1523
     228#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:376
     229#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:420
    215230msgid "Goto the event"
    216231msgstr "Aller à l'événement"
     
    220235msgstr "Hello Event"
    221236
    222 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:424
     237#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:426
    223238msgid ""
    224239"Here you can change the name for the event custom type that you see on the "
     
    229244
    230245#. Field slug
    231 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:350
     246#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:351
    232247msgid "Hide ticket from shop unless the event is in the future"
    233248msgstr "Masquer le billet de la boutique sauf si l'événement est dans le futur"
     
    242257"https://www.tekomatik.com/plugins/hello-event\n"
    243258
    244 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:453
     259#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:455
    245260msgid ""
    246261"If no custom page is defined, events will be displayed using the standard "
     
    250265"utilisé, et les réglages ci-dessous"
    251266
    252 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:522
     267#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:524
    253268msgid "If shown it will be localized into the selected language of the site"
    254269msgstr ""
    255270"Si affiché, le nom de jour sera localisé dans la langue sélectionnée du site"
    256271
    257 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:672
     272#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:674
    258273msgid "If the page does not exist the default will be used."
    259274msgstr "Si la page n'existe pas le défaut sera utilisé"
    260275
    261 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:469
     276#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:471
    262277msgid ""
    263278"if the ticket title should be automatically updated to the event title when "
     
    267282"l'événement lorsque l'événement est enregistré."
    268283
    269 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:470
     284#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:472
    270285msgid ""
    271286"if tickets to past events and tickets to events that have been deleted "
     
    276291"boutique"
    277292
    278 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:445
     293#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:447
    279294msgid ""
    280295"If you choose to use Google Maps, no maps will be displayed on the event "
     
    285300"enregistrée ici."
    286301
    287 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:600
     302#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:602
    288303#| msgid "Tu use Bootstrap modals your theme MUST be built with Bootstrap"
    289304msgid ""
     
    293308"inclure Bootstrap"
    294309
    295 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:499
     310#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:501
    296311msgid "Internally all dates are stored in the ISO-format (YYYY-mm-dd)."
    297312msgstr ""
    298313"En interne les dates sont maintenues au format standard ISO (AAAA-mm-jj)"
    299314
    300 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:452
     315#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:454
    301316msgid "It is possible to create a custom page used to display the events."
    302317msgstr ""
    303318"Il est possible de créer une page personnalisée pour montrer les événements"
    304319
    305 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:440
     320#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:442
    306321msgid ""
    307322"It is possible to use either Google Maps or OpenStreetMap to display the "
     
    315330msgstr "Maintenir les billets synchronisés avec les événements"
    316331
    317 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1143
     332#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1194
    318333msgid "Last name"
    319334msgstr "Nom"
    320335
    321 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:428
     336#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:430
    322337msgid "Leave blank to keep the defaults."
    323338msgstr "Laisser vide pour garder les défauts"
    324339
    325340#. Field slug
    326 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:312
     341#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:313
    327342msgid "Link from event to ticket"
    328343msgstr "Lien de l'événement vers le billet"
    329344
    330345#. Field slug
    331 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:324
     346#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:325
    332347msgid "Link from ticket to event"
    333348msgstr "Lien de l'événement vers le billet "
    334349
    335 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:293
    336 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:524
    337 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1869
    338 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1891
     350#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:286
     351#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1992
     352#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2015
    339353#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-map.php:48
    340354msgid "Location"
    341355msgstr "Lieu"
    342356
    343 #. Field slug
    344 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:299
     357#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:545
     358msgid "Location address"
     359msgstr "Adress du lieu"
     360
     361#. Field slug
     362#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:287
    345363msgid "Location map"
    346364msgstr "Carte"
    347365
     366#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:534
     367msgid "Location Name"
     368msgstr "Nom du lieu"
     369
    348370#. Field slug
    349371#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:260
    350 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:273
    351372msgid "Location of event"
    352373msgstr "Lieu de l'événement"
     
    364385msgstr "Clé de l'API Google Maps"
    365386
    366 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:226
     387#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1270
    367388msgid "Monday"
    368389msgstr "Lundi"
     
    380401msgstr "Nommage des événements"
    381402
    382 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:249
     403#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:242
    383404msgid "New"
    384405msgstr "Nouveau"
    385406
    386 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2009
     407#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2141
    387408msgid "No end date given. The date has been set to today."
    388409msgstr "Aucune date de fin donnée. La date d'aujourd'hui est utilisée."
    389410
    390 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:658
     411#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:696
    391412msgid "No event corresponds to the event id in the URL"
    392413msgstr ""
    393414"Aucun événement ne correspond à l'identifiant de l'événement dans l'URL"
    394415
    395 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:662
     416#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:700
    396417msgid "No event id in the URL"
    397418msgstr "Aucun identifiant d'événement dans l'URL"
    398419
    399 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1997
     420#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2129
    400421msgid "No event points to the ticket"
    401422msgstr "Aucun événement est associé au billet"
     
    405426msgstr "Aucune position donnée"
    406427
    407 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2005
     428#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2137
    408429msgid "No start date given. The date has been set to today."
    409430msgstr "Aucune date de début donnée. La date d'aujourd'hui est utilisée."
    410431
    411 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:255
    412 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:256
     432#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:248
     433#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:249
    413434msgid "Nono"
    414435msgstr "Aucun"
    415436
    416 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:569
    417 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:619
    418 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:689
     437#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:571
     438#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:621
     439#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:691
    419440msgid "off"
    420441msgstr "désactivé"
    421442
    422 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:565
    423 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:615
    424 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:685
     443#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:567
     444#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:617
     445#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:687
    425446msgid "on"
    426447msgstr "activé"
    427448
    428 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:441
     449#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:443
    429450msgid ""
    430451"OpenStreetMap is a community-based free service, which is sufficient in most "
     
    434455"suffisant dans la plupart des cas."
    435456
    436 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1142
    437 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1157
     457#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1193
     458#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1208
    438459msgid "Order"
    439460msgstr "Commande"
    440461
    441 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1144
     462#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1195
    442463msgid "Paid"
    443464msgstr "Réglé"
    444465
    445 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1909
     466#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2034
    446467msgid "Participate"
    447468msgstr "Participer"
    448469
    449 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:462
     470#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:464
    450471msgid ""
    451472"Please notice that a link from an event to a ticket will only appear when "
     
    455476"lorsque la vente des billets pour l'événement est active."
    456477
    457 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:601
     478#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:603
    458479msgid ""
    459480"Please notice that modals may not work properly with older versions of "
     
    463484"les anciennes versions de Bootstrap"
    464485
    465 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:446
     486#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:448
    466487msgid ""
    467488"Please notice that the maps presented by either of the map services contain "
     
    472493"fournisseur de service."
    473494
    474 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1454
    475 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1478
     495#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1515
     496#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1539
    476497msgid "Product is orphaned"
    477498msgstr "Aucun événement correspond au produit"
    478499
    479 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1144
     500#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1195
    480501msgid "Quantity"
    481502msgstr "Quantité"
    482503
    483 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:573
     504#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:611
    484505msgid "Sales"
    485506msgstr "Ventes"
    486507
    487 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:231
     508#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1275
    488509msgid "Saturday"
    489510msgstr "Samedi"
    490511
    491 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:410
     512#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:412
    492513msgid "Save Settings"
    493514msgstr "Enregister réglages"
    494515
    495 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:253
     516#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:246
    496517msgid "Search"
    497518msgstr "Chercher"
     
    509530msgstr "Choisir le services de cartographie"
    510531
    511 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:498
     532#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:500
    512533msgid "Select the dateformat used in datepickers and displays."
    513534msgstr "Choisir le format de présentation des dates"
    514535
    515 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:435
     536#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:437
    516537msgid ""
    517538"Select what should happen when a user clicks on an event in the calendar"
     
    520541"calendrier"
    521542
    522 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:536
     543#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:574
    523544msgid "Sell tickets in the shop"
    524545msgstr "Vendre des billets dans la boutique"
    525546
    526 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:547
     547#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:585
    527548msgid "Shop link"
    528549msgstr "Liens vers la boutique"
    529550
    530 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1451
    531 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1475
     551#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1512
     552#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1536
    532553msgid "Shortcode can only be used for products of the Hello Event category"
    533554msgstr ""
     
    535556"Event"
    536557
    537 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1180
    538 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1373
    539 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1401
    540 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1499
    541 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1513
    542 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1535
    543 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1551
    544 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1566
    545 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1582
    546 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1611
    547 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1632
    548 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1652
    549 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1667
    550 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1682
    551 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1702
    552 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1718
     558#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1231
     559#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1434
     560#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1462
     561#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1560
     562#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1574
     563#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1596
     564#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1618
     565#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1634
     566#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1649
     567#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1665
     568#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1694
     569#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1715
     570#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1735
     571#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1750
     572#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1765
     573#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1780
     574#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1795
     575#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1816
     576#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1832
    553577msgid "Shortcode can only be used when displaying events"
    554578msgstr "Shortcode à utiliser uniquement avec des événements"
    555579
    556 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:521
     580#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:523
    557581msgid "Should the weekday name (eg. Monday) be shown in front of the date"
    558582msgstr ""
     
    560584"la date"
    561585
    562 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:516
     586#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:518
    563587msgid "show"
    564588msgstr "afficher"
    565589
    566 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:592
     590#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:594
    567591msgid "Show event summary in a Bootstrap modal"
    568592msgstr "Afficher le résumé de l'événement dans un modal de Bootstrap"
    569593
    570 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:596
     594#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:598
    571595msgid "Show event summary in a jQuery UI modal"
    572596msgstr "Afficher le résumé de l'événement dans un modal de jQuery UI"
     
    576600msgstr "Slug de la page personnalisée"
    577601
    578 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:570
    579 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1868
    580 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1881
     602#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:608
     603#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1991
     604#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2004
    581605msgid "Start"
    582606msgstr "Début"
    583607
    584 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:484
     608#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:492
    585609msgid "Start date"
    586610msgstr "Date de début"
     
    591615msgstr "Date et heure de début de l'événement"
    592616
    593 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:493
     617#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:501
    594618msgid "Start time"
    595619msgstr "Heure de début"
    596620
    597 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:225
     621#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1269
    598622msgid "Sunday"
    599623msgstr "Dimanche"
    600624
    601 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2031
     625#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:539
     626msgid ""
     627"The (optional) location name can for example be the name of a concert hall"
     628msgstr ""
     629"Le nom (facultatif) du lieu peut par exemple être le nom d'une salle de "
     630"concert"
     631
     632#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2163
    602633msgid "The event was saved but there are error(s)"
    603634msgstr "L'événement a été enregistré mais il y a des erreur(s)"
    604635
    605 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1342
     636#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1403
    606637msgid ""
    607638"The link from the event does not point to a ticket in Woocommerce. Save the "
     
    611642"Veuillez enregistrer l'événement de nouveau !"
    612643
    613 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2029
     644#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:550
     645msgid ""
     646"The location address should be detailed enough to geo-localize the place"
     647msgstr ""
     648"L'adresse du lieu doit être suffisamment détaillée pour géo-localiser la "
     649"localisation"
     650
     651#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2161
    614652msgid "The product was saved but there are error(s)"
    615653msgstr "Le billet a été enregistré mais il y a des erreur(s)"
    616654
    617 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1344
     655#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1405
    618656msgid ""
    619657"The ticket exists in Woocommerce, and is published, but you need to set its "
     
    623661"devez aussi définir son prix"
    624662
    625 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1343
     663#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1404
    626664msgid "The ticket exists in Woocommerce, but you need to set it as published"
    627665msgstr ""
     
    629667"en publié"
    630668
    631 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1183
    632 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1339
     669#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1234
     670#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1400
    633671msgid "The Woocommerce plugin is not activated"
    634672msgstr "L'extension Woocommerce n'est pas activée"
    635673
    636 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:554
     674#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:592
    637675msgid ""
    638676"then after saving the event a new link will appear to allow you to set the "
     
    642680"permettra de définir tarif et quantité de billets."
    643681
    644 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2001
     682#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2133
    645683msgid "There is already a ticket for the event in the shop"
    646684msgstr "Il y a déjà un ticket pour l'événement dans la boutique"
    647685
    648 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:436
     686#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:444
    649687msgid "There is no event to show"
    650688msgstr "Il n'y a pas d'événement à montrer"
    651689
    652 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1341
     690#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1402
    653691msgid "There is no link from the event to a ticket. Save the event again!"
    654692msgstr ""
     
    656694"l'événement de nouveau !"
    657695
    658 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:657
     696#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:659
    659697msgid "this page"
    660698msgstr "cette page"
    661699
    662 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:229
     700#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1273
    663701msgid "Thursday"
    664702msgstr "Jeudi"
    665703
    666 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1138
     704#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1189
    667705msgid "Ticket sales status"
    668706msgstr "Situation de vente de billets"
    669707
    670 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:301
    671 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:572
    672 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:227
     708#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:302
     709#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:610
     710#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:233
    673711msgid "Tickets"
    674712msgstr "Billets"
    675713
    676 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:552
     714#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:590
    677715msgid "Tickets are not yet available in the shop."
    678716msgstr "Des billets ne sont pas encore en vente dans la boutique."
    679717
    680 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1370
    681 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1398
     718#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1227
     719#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1431
     720#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1459
     721#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2024
    682722msgid "Tickets not fully configured"
    683723msgstr "Les billets ne sont pas complètement configurés"
    684724
    685 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:610
     725#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:648
    686726msgid "Tickets sold"
    687727msgstr "Billets vendus"
    688728
    689 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:727
     729#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:778
    690730msgid "Tickets to Events"
    691731msgstr "billets d'événements"
    692732
    693 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1360
    694 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1381
     733#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1421
     734#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1442
    695735msgid "Tickets to participate are available in our shop"
    696736msgstr "Des billets pour participer sont en vente dans notre boutique"
     
    700740msgstr "Format heure"
    701741
    702 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:655
     742#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:657
    703743msgid "To obtain the API Key and read Google's explanation go to"
    704744msgstr "Pour obtenir la clé API et lire l'explication de Google, allez à"
    705745
    706 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:558
     746#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:596
    707747msgid "To sell tickets Woocommerce needs to be installed and actived"
    708748msgstr "Afine de vendre des billet, Woocommerce doit être installé et activé"
    709749
    710 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1166
     750#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1217
    711751msgid "Total"
    712752msgstr "Total"
    713753
    714 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:227
     754#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1271
    715755msgid "Tuesday"
    716756msgstr "Mardi"
     
    720760msgstr "Service de cartographie non defini"
    721761
    722 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2017
     762#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2149
    723763msgid "Unknown error"
    724764msgstr "Erreur inconnue"
    725765
    726 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:469
     766#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:477
    727767msgid "Upcoming events"
    728768msgstr ""
     
    730770
    731771#. Field slug
    732 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:338
     772#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:339
    733773msgid "Update the ticket title when the event title is changed"
    734774msgstr ""
    735775"Mettre à jour le titre du ticket lorsque le titre de l'événement est modifié"
    736776
    737 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:251
     777#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:244
    738778msgid "View"
    739779msgstr "Voir"
    740780
    741 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:228
     781#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1272
    742782msgid "Wednesday"
    743783msgstr "Mercredi"
     
    748788msgstr "Jour de la semaine"
    749789
    750 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:573
     790#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:575
    751791msgid "When switched on admins and editors will see debug information"
    752792msgstr ""
     
    754794"l'information de débougage "
    755795
    756 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:454
     796#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:456
    757797msgid ""
    758798"When using a custom event page you must use shortcodes to show the event "
     
    762802"pour afficher l'information de l'événement."
    763803
    764 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:442
     804#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:444
    765805msgid ""
    766806"With Google Maps comes many additional features (street view, driving "
     
    772812"une clé API Google Maps."
    773813
    774 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:453
     814#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:455
    775815msgid "you can decide what information should be automatically inserted"
    776816msgstr "vous décidez quelle information sera insérée automatiquement"
     
    783823"la carte"
    784824
    785 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1340
     825#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1401
    786826msgid "You need to set the check box to sell tickets in the event!"
    787827msgstr "Vous devez cocher la case pour vendre des billets !"
  • hello-event/trunk/languages/hello-event-nl_NL.l10n.php

    r3108894 r3117834  
    11<?php
    2 return ['project-id-version'=>'Hello Event','report-msgid-bugs-to'=>'','pot-creation-date'=>'2023-07-31 09:22+0000','po-revision-date'=>'2024-06-27 15:25+0000','last-translator'=>'','language-team'=>'Dutch','language'=>'nl_NL','plural-forms'=>'nplurals=2; plural=n != 1;','mime-version'=>'1.0','content-type'=>'text/plain; charset=UTF-8','content-transfer-encoding'=>'8bit','x-generator'=>'Loco https://localise.biz/','x-loco-version'=>'2.6.9; wp-6.5.3','messages'=>['A plugin for managing events and sell tickets with Woocommerce'=>'Een plug-in voor het beheren van evenementen en het verkopen van tickets met Woocommerce','Add New'=>'Nieuw toevoegen','Add to Calendar'=>'Voeg toe aan Kalender','Add-to-calendar button'=>'Voeg-toe-aan-Kalender knop','All'=>'Alle','Any items not selected can always be inserted into the content parts of events and tickets using shortcodes.'=>'Niet geselecteerde items kunnen steeds ingevoegd worden in de event inhoud met shortcodes.','As of July 2018 you will be able to do 28500 requests per month free of charge,'=>'Vanaf juli 2018 zal je 28500 verzoeken per maand gratis kunnen uitvoeren.','at'=>'om','Auto inserted content'=>'Automatisch toegevoegde inhoud','Book now'=>'Boek nu','but please notice that the pricing plans are quite complex and you should consult Google\'s information about the details.'=>'merk wel op dat de prijspakketten nogal complex zijn en dat je de informatie van Google moet raadplegen voor de details.','Calendar'=>'Kalender','Choose behaviour'=>'Kies gedrag','Choose what should be AUTOMAICALLY inserted into the content of events and tickets.'=>'Kies wat AUTOMTISCH ingevoegd moet worden in de inhoud van evenementen en tickets.','Christer Fernstrom'=>'Christer Fernstrom','Custom event page'=>'Aangepaste evenementenpagina','Date'=>'Datum','Date and Time formats'=>'Datum en Uur formaat','Date format'=>'Datum formaat','Dates and time'=>'Data en tijden','Debug'=>'Probleemoplossing','Debugging'=>'Probleem aan het oplossen','Default is "Event" in singular and "Events" in plural.'=>'Standaard is het "Evenement" in enkelvoud en "Evenementen" in meervoud.','don\'t show'=>'niet laten zien','Earlier events'=>'Eerdere evenementen','Edit'=>'Pas aan','Edit ticket'=>'Pas ticket aan','End'=>'Einde','End date'=>'Einddatum','End date and time of event'=>'Einddatum en -tijd van het evenement','End date is earlier than start date'=>'De einddatum is eerder dan de startdatum','End time'=>'Eindtijd','Event ticket'=>'Evenement ticket','Event:'=>'Evenement:','Fill in the checkbox above to start sell tickets'=>'Vul de bovenstaande checkbox in om tickets te kunnen gaan verkopen','Fill in the slug of the custom event page, or leave blank for default.'=>'Vul de slug van de aangepaste evenementenpagina in of laat dit standaard leeg.','First name'=>'Voornaam','Friday'=>'Vrijdag','Full day'=>'Volledige dag','generated by the shortcodes in case of problems'=>'gegeneerd met shortcodes in geval van problemen','Go to the event page'=>'Ga naar de evenement pagina','Goto the event'=>'Ga naar het evenement','Hello Event'=>'Hello Event','Here you can change the name for the event custom type that you see on the admin pages.'=>'Hier kan je de naam van het evenement aangepast type dat je op de admin pagina\'s ziet aanpassen.','Hide ticket from shop unless the event is in the future'=>'Verberg het ticket in de winkel tenzij het en toekomstig evenement is','https://www.tekomatik.com/about'=>'https://www.tekomatik.com/about','https://www.tekomatik.com/plugins/hello-event'=>'https://www.tekomatik.com/plugins/hello-event','If no custom page is defined, events will be displayed using the standard page template of the theme, and in the settings below'=>'Als er geen aangepaste pagina is gedefinieerd, worden evenementen weergegeven met behulp van de standaardpaginasjabloon van het thema en in de onderstaande instellingen','If shown it will be localized into the selected language of the site'=>'Indien weergegeven, wordt het gelokaliseerd in de geselecteerde taal van de site','If the page does not exist the default will be used.'=>'Als de pagina niet bestaat, wordt de standaardwaarde gebruikt.','if the ticket title should be automatically updated to the event title when the event is saved.'=>'als het ticket automatisch aangepast moet worden naar de evenement titel als het evenement wordt bewaard.','if tickets to past events and tickets to events that have been deleted should be set to hidden to prevent them from being shown in the shop'=>'als tickets voor voorbije evenementen en verwijderde tickets verborgen moeten worden om te voorkomen dat deze in de winkel zichtbaar zijn','If you choose to use Google Maps, no maps will be displayed on the event pages until you have obtained the key and registered it here.'=>'als je Google maps wil kiezen zullen er geen kaarten vertoond worden op evenement pagina\'s tot je een sleutel verkregen en hier geregistreerd hebt.','If you want to use Bootstrap modals your theme must be built with Bootstrap'=>'als je het Bootstrap models thema wil gebruiken, moet je thema aangemaakt worden met Bootstrap','Internally all dates are stored in the ISO-format (YYYY-mm-dd).'=>'Intern worden alle data bewaard als ISO formaat (YYYY-mm-dd).','It is possible to create a custom page used to display the events.'=>'Het is mogelijk om een ​​aangepaste pagina te maken waarop de gebeurtenissen worden weergegeven.','It is possible to use either Google Maps or OpenStreetMap to display the locations of events.'=>'Het is mogelijk om ofwel Google Maps ofwel OpenStreetMap te gebruiken om de locatie van evenementen te tonen.','Keep tickets in sync with events'=>'Hou de tickets gesynchroniseerd met de evenementen','Last name'=>'Achternaam','Leave blank to keep the defaults.'=>'Leeg laten om de standaardwaarden te gebruiken.','Link from event to ticket'=>'Link van evenement naar ticket','Link from ticket to event'=>'Link van ticket naar evenement','Location'=>'Locatie','Location map'=>'Kaart van de locatie','Location of event'=>'Locatie van het evenement','Manage events and sell tickets with WooCommerce as easy as Hello World'=>'Beheer evenementen en verkoop tickets met WooCommerce even gemakkelijk als Hello World','Maps'=>'Kaarten','Maps API Key'=>'Kaarten API sleutel','Monday'=>'Maandag','Name of event (plural)'=>'Naam van het evenement (meervoud)','Name of event (singular)'=>'Naam evenement (enkelvoud)','Naming events'=>'Evenementen benoemen','New'=>'Nieuw','No end date given. The date has been set to today.'=>'Geen einddatum opgegeven. De datum is op vandaag gezet.','No event corresponds to the event id in the URL'=>'Er is geen evenement dat overeenkomt met het evenement id in de URL','No event id in the URL'=>'Geen evenement id in de URL','No event points to the ticket'=>'Geen evenement verwijst naar dit ticket','No location given'=>'Geen locatie opgegeven','No start date given. The date has been set to today.'=>'Geen startdatum opgegeven. De datum is op vandaag gezet.','Nono'=>'Neenee','off'=>'uit','on'=>'aan','OpenStreetMap is a community-based free service, which is sufficient in most cases.'=>'OpenStreetMap is een community-based gratis service, welke voldoende is in de meeste gevallen.','Order'=>'Bestel','Paid'=>'Betaald','Participate'=>'Neem deel','Please notice that a link from an event to a ticket will only appear when the sale of tickets for the event is active.'=>'Gelieve op te merken dat de link van een evenement naar een ticket enkel zal verschijnen als de verkoop van de tickets voor dit evenement actief is.','Please notice that modals may not work properly with older versions of Bootstrap'=>'Houd er rekening mee dat modals mogelijk niet goed werken met oudere versies van Bootstrap','Please notice that the maps presented by either of the map services contain links with credits and contact information to the service provider.'=>'Noteer dat getoonde kaarten van een van beide services links met credits en contact informatie naar de service leverancier bevatten.','Product is orphaned'=>'Product is verweesd','Quantity'=>'Hoeveelheid','Sales'=>'Verkoop','Saturday'=>'Zaterdag','Save Settings'=>'Bewaar instellingen','Search'=>'Zoek','See in Open Street Map'=>'Bekijk in Open Street Map','See more'=>'Laat meer zien','Select map service'=>'Selecteer de kaart service','Select the dateformat used in datepickers and displays.'=>'Selecteer het datum formaat gebruikt in datum selectors en schermen.','Select what should happen when a user clicks on an event in the calendar'=>'Selecteer wat er moet gebeuren als een gebruiker klikt op een evenement in de kalender','Sell tickets in the shop'=>'Verkoop tickets in de winkel','Shop link'=>'Link naar de winkel','Shortcode can only be used for products of the Hello Event category'=>'Shortcode kan alleen gebruikt worden voor producten van de Hello Event categorie','Shortcode can only be used when displaying events'=>'Shortcode kan enkel gebruikt worden bij het tonen van evenementen','Should the weekday name (eg. Monday) be shown in front of the date'=>'Moet de naam van de weekdag (bijvoorbeeld Maandag) vóór de datum worden weergegeven','show'=>'weergeven','Show event summary in a Bootstrap modal'=>'Toon evenenment samenvatting in een Bootstrap modal','Show event summary in a jQuery UI modal'=>'Toon evenement samenvatting in een jQuery UI modal','Slug for custom event page'=>'Slug voor aangepaste evenementenpagina','Start'=>'Start','Start date'=>'Startdatum','Start date and time of event'=>'Startdatum en -tijd van het evenement','Start time'=>'Starttijd','Sunday'=>'Zondag','The event was saved but there are error(s)'=>'Het evenement werd bewaard maar er zijn fout(en)','The link from the event does not point to a ticket in Woocommerce. Save the event again!'=>'De link van het evenement verwijst niet naar een WooCommerce ticket. Bewaar het ticket opnieuw!','The product was saved but there are error(s)'=>'Het product werd bewaard, maar er zijn fout(en)','The ticket exists in Woocommerce, and is published, but you need to set its price'=>'Het ticket bestaat in Woocommerce en is gepubliceerd, maar je moet de prijs nog instellen','The ticket exists in Woocommerce, but you need to set it as published'=>'Het ticket bestaat in WooCommerce, maar moet nog gepubliceerd worden','The Woocommerce plugin is not activated'=>'De WooCommerce plugin is niet geactiveerd','then after saving the event a new link will appear to allow you to set the price and quantity of tickets'=>'dan zal na bewaren van het evenement een nieuwe link tevoorschijn komen waar je de prijs en aantal tickets kan ingeven','There is already a ticket for the event in the shop'=>'Er is reeds een ticket voor dit evenement in de shop','There is no event to show'=>'Er is geen evenement om te tonen','There is no link from the event to a ticket. Save the event again!'=>'Er is geen link van het evenement naar een ticket. Bewaar het evenement opnieuw!','this page'=>'deze pagina','Thursday'=>'Donderdag','Ticket sales status'=>'Status ticketverkoop','Tickets'=>'Tickets','Tickets are not yet available in the shop.'=>'Er zijn nog geen tickets verkrijgbaar in de winkel','Tickets not fully configured'=>'De tickets zijn niet geheel geconfigureerd','Tickets sold'=>'Verkochte tickets','Tickets to Events'=>'Tickets voor evenementen','Tickets to participate are available in our shop'=>'Deelnametickets zijn verkrijgbaar in onze winkel','Time format'=>'Tijdsformaat','To obtain the API Key and read Google\'s explanation go to'=>'Om een API sleutel te verkrijgen en Google\'s uitleg te lezen ga naar','To sell tickets Woocommerce needs to be installed and actived'=>'Om tickets te kunnen verkopen moet WooCommerce geïnstalleerd en geactivered zijn','Total'=>'Totaal','Tuesday'=>'Dinsdag','Undefined map services'=>'Niet gedefinieerde map services','Unknown error'=>'Onbekende fout','Upcoming events'=>'Komende evenementen','Update the ticket title when the event title is changed'=>'Pas de ticket titel aan als de evenement titel is aangepast','View'=>'Bekijk','Wednesday'=>'Woensdag','Weekday'=>'Weekdag','When switched on admins and editors will see debug information'=>'Indien ingeschakeld zullen admins en editors de debug informatie zien','When using a custom event page you must use shortcodes to show the event information.'=>'Wanneer u een aangepaste evenementenpagina gebruikt, moet u shortcodes gebruiken om de evenementinformatie weer te geven.','With Google Maps comes many additional features (street view, driving directions, ...), but in order to use Google maps you need to obtain a Google Maps API Key.'=>'Met Google Maps zijn er veel bijkomende features (street view, route beschrijving, ...), maar om Google Maps te kunnen gebruiken moet je een Google Maps API sleutel verkrijgen.','you can decide what information should be automatically inserted'=>'u kunt beslissen welke informatie automatisch moet worden ingevoegd','You need to register your Google Maps API Key before the map can be shown'=>'Je moet je Google Maps API sleutel registreren vooraleer de map getoond kan worden','You need to set the check box to sell tickets in the event!'=>'Je moet de checkbox in het evenement aanzetten om tickets te kunnen verkopen!']];
     2return ['project-id-version'=>'Hello Event','report-msgid-bugs-to'=>'','pot-creation-date'=>'2023-07-31 09:22+0000','po-revision-date'=>'2024-07-10 07:57+0000','last-translator'=>'','language-team'=>'Dutch','language'=>'nl_NL','plural-forms'=>'nplurals=2; plural=n != 1;','mime-version'=>'1.0','content-type'=>'text/plain; charset=UTF-8','content-transfer-encoding'=>'8bit','x-generator'=>'Loco https://localise.biz/','x-loco-version'=>'2.6.9; wp-6.5.3','messages'=>['A plugin for managing events and sell tickets with Woocommerce'=>'Een plug-in voor het beheren van evenementen en het verkopen van tickets met Woocommerce','Add New'=>'Nieuw toevoegen','Add to Calendar'=>'Voeg toe aan Kalender','Add-to-calendar button'=>'Voeg-toe-aan-Kalender knop','Advice'=>'Advies','Advice to participants, for example related to parking or public transportation'=>'Advies aan deelnemers, bijvoorbeeld op het gebied van parkeren of openbaar vervoer','All'=>'Alle','Any items not selected can always be inserted into the content parts of events and tickets using shortcodes.'=>'Niet geselecteerde items kunnen steeds ingevoegd worden in de event inhoud met shortcodes.','As of July 2018 you will be able to do 28500 requests per month free of charge,'=>'Vanaf juli 2018 zal je 28500 verzoeken per maand gratis kunnen uitvoeren.','at'=>'om','Auto inserted content'=>'Automatisch toegevoegde inhoud','Book now'=>'Boek nu','but please notice that the pricing plans are quite complex and you should consult Google\'s information about the details.'=>'merk wel op dat de prijspakketten nogal complex zijn en dat je de informatie van Google moet raadplegen voor de details.','Calendar'=>'Kalender','Choose behaviour'=>'Kies gedrag','Choose what should be AUTOMAICALLY inserted into the content of events and tickets.'=>'Kies wat AUTOMTISCH ingevoegd moet worden in de inhoud van evenementen en tickets.','Christer Fernstrom'=>'Christer Fernstrom','Custom event page'=>'Aangepaste evenementenpagina','Date'=>'Datum','Date and Time formats'=>'Datum en Uur formaat','Date format'=>'Datum formaat','Dates and time'=>'Data en tijden','Debug'=>'Probleemoplossing','Debugging'=>'Probleem aan het oplossen','Default is "Event" in singular and "Events" in plural.'=>'Standaard is het "Evenement" in enkelvoud en "Evenementen" in meervoud.','don\'t show'=>'niet laten zien','Earlier events'=>'Eerdere evenementen','Edit'=>'Pas aan','Edit ticket'=>'Pas ticket aan','End'=>'Einde','End date'=>'Einddatum','End date and time of event'=>'Einddatum en -tijd van het evenement','End date is earlier than start date'=>'De einddatum is eerder dan de startdatum','End time'=>'Eindtijd','Event ticket'=>'Evenement ticket','Event:'=>'Evenement:','Fill in the checkbox above to start sell tickets'=>'Vul de bovenstaande checkbox in om tickets te kunnen gaan verkopen','Fill in the slug of the custom event page, or leave blank for default.'=>'Vul de slug van de aangepaste evenementenpagina in of laat dit standaard leeg.','First name'=>'Voornaam','Friday'=>'Vrijdag','Full day'=>'Volledige dag','generated by the shortcodes in case of problems'=>'gegeneerd met shortcodes in geval van problemen','Go to the event page'=>'Ga naar de evenement pagina','Goto the event'=>'Ga naar het evenement','Hello Event'=>'Hello Event','Here you can change the name for the event custom type that you see on the admin pages.'=>'Hier kan je de naam van het evenement aangepast type dat je op de admin pagina\'s ziet aanpassen.','Hide ticket from shop unless the event is in the future'=>'Verberg het ticket in de winkel tenzij het en toekomstig evenement is','https://www.tekomatik.com/about'=>'https://www.tekomatik.com/about','https://www.tekomatik.com/plugins/hello-event'=>'https://www.tekomatik.com/plugins/hello-event','If no custom page is defined, events will be displayed using the standard page template of the theme, and in the settings below'=>'Als er geen aangepaste pagina is gedefinieerd, worden evenementen weergegeven met behulp van de standaardpaginasjabloon van het thema en in de onderstaande instellingen','If shown it will be localized into the selected language of the site'=>'Indien weergegeven, wordt het gelokaliseerd in de geselecteerde taal van de site','If the page does not exist the default will be used.'=>'Als de pagina niet bestaat, wordt de standaardwaarde gebruikt.','if the ticket title should be automatically updated to the event title when the event is saved.'=>'als het ticket automatisch aangepast moet worden naar de evenement titel als het evenement wordt bewaard.','if tickets to past events and tickets to events that have been deleted should be set to hidden to prevent them from being shown in the shop'=>'als tickets voor voorbije evenementen en verwijderde tickets verborgen moeten worden om te voorkomen dat deze in de winkel zichtbaar zijn','If you choose to use Google Maps, no maps will be displayed on the event pages until you have obtained the key and registered it here.'=>'als je Google maps wil kiezen zullen er geen kaarten vertoond worden op evenement pagina\'s tot je een sleutel verkregen en hier geregistreerd hebt.','If you want to use Bootstrap modals your theme must be built with Bootstrap'=>'als je het Bootstrap models thema wil gebruiken, moet je thema aangemaakt worden met Bootstrap','Internally all dates are stored in the ISO-format (YYYY-mm-dd).'=>'Intern worden alle data bewaard als ISO formaat (YYYY-mm-dd).','It is possible to create a custom page used to display the events.'=>'Het is mogelijk om een ​​aangepaste pagina te maken waarop de gebeurtenissen worden weergegeven.','It is possible to use either Google Maps or OpenStreetMap to display the locations of events.'=>'Het is mogelijk om ofwel Google Maps ofwel OpenStreetMap te gebruiken om de locatie van evenementen te tonen.','Keep tickets in sync with events'=>'Hou de tickets gesynchroniseerd met de evenementen','Last name'=>'Achternaam','Leave blank to keep the defaults.'=>'Leeg laten om de standaardwaarden te gebruiken.','Link from event to ticket'=>'Link van evenement naar ticket','Link from ticket to event'=>'Link van ticket naar evenement','Location'=>'Locatie','Location address'=>'Locatie adres','Location map'=>'Kaart van de locatie','Location Name'=>'Locatie naam','Location of event'=>'Locatie van het evenement','Manage events and sell tickets with WooCommerce as easy as Hello World'=>'Beheer evenementen en verkoop tickets met WooCommerce even gemakkelijk als Hello World','Maps'=>'Kaarten','Maps API Key'=>'Kaarten API sleutel','Monday'=>'Maandag','Name of event (plural)'=>'Naam van het evenement (meervoud)','Name of event (singular)'=>'Naam evenement (enkelvoud)','Naming events'=>'Evenementen benoemen','New'=>'Nieuw','No end date given. The date has been set to today.'=>'Geen einddatum opgegeven. De datum is op vandaag gezet.','No event corresponds to the event id in the URL'=>'Er is geen evenement dat overeenkomt met het evenement id in de URL','No event id in the URL'=>'Geen evenement id in de URL','No event points to the ticket'=>'Geen evenement verwijst naar dit ticket','No location given'=>'Geen locatie opgegeven','No start date given. The date has been set to today.'=>'Geen startdatum opgegeven. De datum is op vandaag gezet.','Nono'=>'Neenee','off'=>'uit','on'=>'aan','OpenStreetMap is a community-based free service, which is sufficient in most cases.'=>'OpenStreetMap is een community-based gratis service, welke voldoende is in de meeste gevallen.','Order'=>'Bestel','Paid'=>'Betaald','Participate'=>'Neem deel','Please notice that a link from an event to a ticket will only appear when the sale of tickets for the event is active.'=>'Gelieve op te merken dat de link van een evenement naar een ticket enkel zal verschijnen als de verkoop van de tickets voor dit evenement actief is.','Please notice that modals may not work properly with older versions of Bootstrap'=>'Houd er rekening mee dat modals mogelijk niet goed werken met oudere versies van Bootstrap','Please notice that the maps presented by either of the map services contain links with credits and contact information to the service provider.'=>'Noteer dat getoonde kaarten van een van beide services links met credits en contact informatie naar de service leverancier bevatten.','Product is orphaned'=>'Product is verweesd','Quantity'=>'Hoeveelheid','Sales'=>'Verkoop','Saturday'=>'Zaterdag','Save Settings'=>'Bewaar instellingen','Search'=>'Zoek','See in Open Street Map'=>'Bekijk in Open Street Map','See more'=>'Laat meer zien','Select map service'=>'Selecteer de kaart service','Select the dateformat used in datepickers and displays.'=>'Selecteer het datum formaat gebruikt in datum selectors en schermen.','Select what should happen when a user clicks on an event in the calendar'=>'Selecteer wat er moet gebeuren als een gebruiker klikt op een evenement in de kalender','Sell tickets in the shop'=>'Verkoop tickets in de winkel','Shop link'=>'Link naar de winkel','Shortcode can only be used for products of the Hello Event category'=>'Shortcode kan alleen gebruikt worden voor producten van de Hello Event categorie','Shortcode can only be used when displaying events'=>'Shortcode kan enkel gebruikt worden bij het tonen van evenementen','Should the weekday name (eg. Monday) be shown in front of the date'=>'Moet de naam van de weekdag (bijvoorbeeld Maandag) vóór de datum worden weergegeven','show'=>'weergeven','Show event summary in a Bootstrap modal'=>'Toon evenenment samenvatting in een Bootstrap modal','Show event summary in a jQuery UI modal'=>'Toon evenement samenvatting in een jQuery UI modal','Slug for custom event page'=>'Slug voor aangepaste evenementenpagina','Start'=>'Start','Start date'=>'Startdatum','Start date and time of event'=>'Startdatum en -tijd van het evenement','Start time'=>'Starttijd','Sunday'=>'Zondag','The (optional) location name can for example be the name of a concert hall'=>'De (optionele) locatienaam kan bijvoorbeeld de naam van een concertzaal zijn','The event was saved but there are error(s)'=>'Het evenement werd bewaard maar er zijn fout(en)','The link from the event does not point to a ticket in Woocommerce. Save the event again!'=>'De link van het evenement verwijst niet naar een WooCommerce ticket. Bewaar het ticket opnieuw!','The location address should be detailed enough to geo-localize the place'=>'Het locatieadres moet voldoende gedetailleerd zijn om de plaats te geolokaliseren','The product was saved but there are error(s)'=>'Het product werd bewaard, maar er zijn fout(en)','The ticket exists in Woocommerce, and is published, but you need to set its price'=>'Het ticket bestaat in Woocommerce en is gepubliceerd, maar je moet de prijs nog instellen','The ticket exists in Woocommerce, but you need to set it as published'=>'Het ticket bestaat in WooCommerce, maar moet nog gepubliceerd worden','The Woocommerce plugin is not activated'=>'De WooCommerce plugin is niet geactiveerd','then after saving the event a new link will appear to allow you to set the price and quantity of tickets'=>'dan zal na bewaren van het evenement een nieuwe link tevoorschijn komen waar je de prijs en aantal tickets kan ingeven','There is already a ticket for the event in the shop'=>'Er is reeds een ticket voor dit evenement in de shop','There is no event to show'=>'Er is geen evenement om te tonen','There is no link from the event to a ticket. Save the event again!'=>'Er is geen link van het evenement naar een ticket. Bewaar het evenement opnieuw!','this page'=>'deze pagina','Thursday'=>'Donderdag','Ticket sales status'=>'Status ticketverkoop','Tickets'=>'Tickets','Tickets are not yet available in the shop.'=>'Er zijn nog geen tickets verkrijgbaar in de winkel','Tickets not fully configured'=>'De tickets zijn niet geheel geconfigureerd','Tickets sold'=>'Verkochte tickets','Tickets to Events'=>'Tickets voor evenementen','Tickets to participate are available in our shop'=>'Deelnametickets zijn verkrijgbaar in onze winkel','Time format'=>'Tijdsformaat','To obtain the API Key and read Google\'s explanation go to'=>'Om een API sleutel te verkrijgen en Google\'s uitleg te lezen ga naar','To sell tickets Woocommerce needs to be installed and actived'=>'Om tickets te kunnen verkopen moet WooCommerce geïnstalleerd en geactivered zijn','Total'=>'Totaal','Tuesday'=>'Dinsdag','Undefined map services'=>'Niet gedefinieerde map services','Unknown error'=>'Onbekende fout','Upcoming events'=>'Komende evenementen','Update the ticket title when the event title is changed'=>'Pas de ticket titel aan als de evenement titel is aangepast','View'=>'Bekijk','Wednesday'=>'Woensdag','Weekday'=>'Weekdag','When switched on admins and editors will see debug information'=>'Indien ingeschakeld zullen admins en editors de debug informatie zien','When using a custom event page you must use shortcodes to show the event information.'=>'Wanneer u een aangepaste evenementenpagina gebruikt, moet u shortcodes gebruiken om de evenementinformatie weer te geven.','With Google Maps comes many additional features (street view, driving directions, ...), but in order to use Google maps you need to obtain a Google Maps API Key.'=>'Met Google Maps zijn er veel bijkomende features (street view, route beschrijving, ...), maar om Google Maps te kunnen gebruiken moet je een Google Maps API sleutel verkrijgen.','you can decide what information should be automatically inserted'=>'u kunt beslissen welke informatie automatisch moet worden ingevoegd','You need to register your Google Maps API Key before the map can be shown'=>'Je moet je Google Maps API sleutel registreren vooraleer de map getoond kan worden','You need to set the check box to sell tickets in the event!'=>'Je moet de checkbox in het evenement aanzetten om tickets te kunnen verkopen!']];
  • hello-event/trunk/languages/hello-event-nl_NL.po

    r3108894 r3117834  
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: 2023-07-31 09:22+0000\n"
    6 "PO-Revision-Date: 2024-06-27 15:25+0000\n"
     6"PO-Revision-Date: 2024-07-10 07:57+0000\n"
    77"Last-Translator: \n"
    88"Language-Team: Dutch\n"
     
    1515"X-Loco-Version: 2.6.9; wp-6.5.3"
    1616
    17 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:395
     17#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:397
    1818msgid "A plugin for managing events and sell tickets with Woocommerce"
    1919msgstr ""
     
    2121"Woocommerce"
    2222
    23 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:247
    24 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:248
     23#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:240
     24#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:241
    2525msgid "Add New"
    2626msgstr "Nieuw toevoegen"
    2727
    28 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1688
     28#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1802
    2929msgid "Add to Calendar"
    3030msgstr "Voeg toe aan Kalender"
    3131
    3232#. Field slug
    33 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:286
     33#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:274
    3434msgid "Add-to-calendar button"
    3535msgstr "Voeg-toe-aan-Kalender knop"
    3636
    37 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:252
     37#. Field slug
     38#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:294
     39#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:559
     40#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:300
     41msgid "Advice"
     42msgstr "Advies"
     43
     44#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:565
     45msgid ""
     46"Advice to participants, for example related to parking or public "
     47"transportation"
     48msgstr ""
     49"Advies aan deelnemers, bijvoorbeeld op het gebied van parkeren of openbaar "
     50"vervoer"
     51
     52#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:245
    3853msgid "All"
    3954msgstr "Alle"
    4055
    41 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:461
     56#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:463
    4257msgid ""
    4358"Any items not selected can always be inserted into the content parts of "
     
    4762"met shortcodes."
    4863
    49 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:443
     64#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:445
    5065msgid ""
    5166"As of July 2018 you will be able to do 28500 requests per month free of "
     
    5469"Vanaf juli 2018 zal je 28500 verzoeken per maand gratis kunnen uitvoeren."
    5570
    56 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1608
    57 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1629
     71#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1691
     72#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1712
    5873msgid "at"
    5974msgstr "om"
    6075
    6176#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:82
    62 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:453
     77#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:455
    6378msgid "Auto inserted content"
    6479msgstr "Automatisch toegevoegde inhoud"
    6580
    66 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:203
     81#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:207
    6782msgid "Book now"
    6883msgstr "Boek nu"
    6984
    70 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:444
     85#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:446
    7186msgid ""
    7287"but please notice that the pricing plans are quite complex and you should "
     
    85100msgstr "Kies gedrag"
    86101
    87 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:460
     102#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:462
    88103msgid ""
    89104"Choose what should be AUTOMAICALLY inserted into the content of events and "
     
    101116msgstr "Aangepaste evenementenpagina"
    102117
    103 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1141
     118#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1192
    104119msgid "Date"
    105120msgstr "Datum"
     
    115130msgstr "Datum formaat"
    116131
    117 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:285
     132#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:278
    118133msgid "Dates and time"
    119134msgstr "Data en tijden"
     
    127142msgstr "Probleem aan het oplossen"
    128143
    129 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:426
     144#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:428
    130145msgid "Default is \"Event\" in singular and \"Events\" in plural."
    131146msgstr ""
    132147"Standaard is het \"Evenement\" in enkelvoud en \"Evenementen\" in meervoud."
    133148
    134 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:512
     149#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:514
    135150msgid "don't show"
    136151msgstr "niet laten zien"
    137152
    138 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:468
     153#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:476
    139154msgid "Earlier events"
    140155msgstr "Eerdere evenementen"
    141156
    142 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:250
     157#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:243
    143158msgid "Edit"
    144159msgstr "Pas aan"
    145160
    146 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:549
    147 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:599
     161#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:587
     162#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:637
    148163msgid "Edit ticket"
    149164msgstr "Pas ticket aan"
    150165
    151 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:571
    152 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1886
     166#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:609
     167#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2009
    153168msgid "End"
    154169msgstr "Einde"
    155170
    156 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:502
     171#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:510
    157172msgid "End date"
    158173msgstr "Einddatum"
     
    163178msgstr "Einddatum en -tijd van het evenement"
    164179
    165 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2013
     180#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2145
    166181msgid "End date is earlier than start date"
    167182msgstr "De einddatum is eerder dan de startdatum"
    168183
    169 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:512
     184#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:520
    170185msgid "End time"
    171186msgstr "Eindtijd"
    172187
    173 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:715
    174 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:724
     188#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:766
     189#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:775
    175190msgid "Event ticket"
    176191msgstr "Evenement ticket"
    177192
    178 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:652
     193#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:690
    179194msgid "Event:"
    180195msgstr "Evenement:"
    181196
    182 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:553
     197#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:591
    183198msgid "Fill in the checkbox above to start sell tickets"
    184199msgstr "Vul de bovenstaande checkbox in om tickets te kunnen gaan verkopen"
    185200
    186 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:671
     201#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:673
    187202msgid "Fill in the slug of the custom event page, or leave blank for default."
    188203msgstr ""
     
    190205"leeg."
    191206
    192 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1143
     207#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1194
    193208msgid "First name"
    194209msgstr "Voornaam"
    195210
    196 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:230
     211#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1274
    197212msgid "Friday"
    198213msgstr "Vrijdag"
     
    202217msgstr "Volledige dag"
    203218
    204 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:574
     219#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:576
    205220msgid "generated by the shortcodes in case of problems"
    206221msgstr "gegeneerd met shortcodes in geval van problemen"
    207222
    208 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:588
     223#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:590
    209224msgid "Go to the event page"
    210225msgstr "Ga naar de evenement pagina"
    211226
    212 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:898
    213 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1462
    214 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:368
    215 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:412
     227#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:949
     228#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1523
     229#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:376
     230#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:420
    216231msgid "Goto the event"
    217232msgstr "Ga naar het evenement"
     
    221236msgstr "Hello Event"
    222237
    223 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:424
     238#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:426
    224239msgid ""
    225240"Here you can change the name for the event custom type that you see on the "
     
    230245
    231246#. Field slug
    232 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:350
     247#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:351
    233248msgid "Hide ticket from shop unless the event is in the future"
    234249msgstr "Verberg het ticket in de winkel tenzij het en toekomstig evenement is"
     
    242257msgstr "https://www.tekomatik.com/plugins/hello-event"
    243258
    244 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:453
     259#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:455
    245260msgid ""
    246261"If no custom page is defined, events will be displayed using the standard "
     
    251266"onderstaande instellingen"
    252267
    253 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:522
     268#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:524
    254269msgid "If shown it will be localized into the selected language of the site"
    255270msgstr ""
     
    257272"site"
    258273
    259 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:672
     274#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:674
    260275msgid "If the page does not exist the default will be used."
    261276msgstr "Als de pagina niet bestaat, wordt de standaardwaarde gebruikt."
    262277
    263 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:469
     278#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:471
    264279msgid ""
    265280"if the ticket title should be automatically updated to the event title when "
     
    269284"het evenement wordt bewaard."
    270285
    271 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:470
     286#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:472
    272287msgid ""
    273288"if tickets to past events and tickets to events that have been deleted "
     
    277292"moeten worden om te voorkomen dat deze in de winkel zichtbaar zijn"
    278293
    279 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:445
     294#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:447
    280295msgid ""
    281296"If you choose to use Google Maps, no maps will be displayed on the event "
     
    285300"evenement pagina's tot je een sleutel verkregen en hier geregistreerd hebt."
    286301
    287 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:600
     302#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:602
    288303msgid ""
    289304"If you want to use Bootstrap modals your theme must be built with Bootstrap"
     
    292307"worden met Bootstrap"
    293308
    294 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:499
     309#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:501
    295310msgid "Internally all dates are stored in the ISO-format (YYYY-mm-dd)."
    296311msgstr "Intern worden alle data bewaard als ISO formaat (YYYY-mm-dd)."
    297312
    298 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:452
     313#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:454
    299314msgid "It is possible to create a custom page used to display the events."
    300315msgstr ""
     
    302317"worden weergegeven."
    303318
    304 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:440
     319#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:442
    305320msgid ""
    306321"It is possible to use either Google Maps or OpenStreetMap to display the "
     
    314329msgstr "Hou de tickets gesynchroniseerd met de evenementen"
    315330
    316 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1143
     331#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1194
    317332msgid "Last name"
    318333msgstr "Achternaam"
    319334
    320 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:428
     335#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:430
    321336msgid "Leave blank to keep the defaults."
    322337msgstr "Leeg laten om de standaardwaarden te gebruiken."
    323338
    324339#. Field slug
    325 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:312
     340#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:313
    326341msgid "Link from event to ticket"
    327342msgstr "Link van evenement naar ticket"
    328343
    329344#. Field slug
    330 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:324
     345#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:325
    331346msgid "Link from ticket to event"
    332347msgstr "Link van ticket naar evenement"
    333348
    334 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:293
    335 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:524
    336 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1869
    337 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1891
     349#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:286
     350#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1992
     351#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2015
    338352#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-map.php:48
    339353msgid "Location"
    340354msgstr "Locatie"
    341355
    342 #. Field slug
    343 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:299
     356#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:545
     357msgid "Location address"
     358msgstr "Locatie adres"
     359
     360#. Field slug
     361#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:287
    344362msgid "Location map"
    345363msgstr "Kaart van de locatie"
    346364
     365#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:534
     366msgid "Location Name"
     367msgstr "Locatie naam"
     368
    347369#. Field slug
    348370#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:260
    349 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:273
    350371msgid "Location of event"
    351372msgstr "Locatie van het evenement"
     
    365386msgstr "Kaarten API sleutel"
    366387
    367 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:226
     388#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1270
    368389msgid "Monday"
    369390msgstr "Maandag"
     
    381402msgstr "Evenementen benoemen"
    382403
    383 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:249
     404#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:242
    384405msgid "New"
    385406msgstr "Nieuw"
    386407
    387 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2009
     408#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2141
    388409msgid "No end date given. The date has been set to today."
    389410msgstr "Geen einddatum opgegeven. De datum is op vandaag gezet."
    390411
    391 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:658
     412#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:696
    392413msgid "No event corresponds to the event id in the URL"
    393414msgstr "Er is geen evenement dat overeenkomt met het evenement id in de URL"
    394415
    395 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:662
     416#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:700
    396417msgid "No event id in the URL"
    397418msgstr "Geen evenement id in de URL"
    398419
    399 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1997
     420#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2129
    400421msgid "No event points to the ticket"
    401422msgstr "Geen evenement verwijst naar dit ticket"
     
    405426msgstr "Geen locatie opgegeven"
    406427
    407 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2005
     428#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2137
    408429msgid "No start date given. The date has been set to today."
    409430msgstr "Geen startdatum opgegeven. De datum is op vandaag gezet."
    410431
    411 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:255
    412 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:256
     432#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:248
     433#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:249
    413434msgid "Nono"
    414435msgstr "Neenee"
    415436
    416 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:569
    417 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:619
    418 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:689
     437#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:571
     438#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:621
     439#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:691
    419440msgid "off"
    420441msgstr "uit"
    421442
    422 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:565
    423 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:615
    424 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:685
     443#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:567
     444#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:617
     445#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:687
    425446msgid "on"
    426447msgstr "aan"
    427448
    428 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:441
     449#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:443
    429450msgid ""
    430451"OpenStreetMap is a community-based free service, which is sufficient in most "
     
    434455"de meeste gevallen."
    435456
    436 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1142
    437 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1157
     457#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1193
     458#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1208
    438459msgid "Order"
    439460msgstr "Bestel"
    440461
    441 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1144
     462#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1195
    442463msgid "Paid"
    443464msgstr "Betaald"
    444465
    445 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1909
     466#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2034
    446467msgid "Participate"
    447468msgstr "Neem deel"
    448469
    449 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:462
     470#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:464
    450471msgid ""
    451472"Please notice that a link from an event to a ticket will only appear when "
     
    455476"verschijnen als de verkoop van de tickets voor dit evenement actief is."
    456477
    457 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:601
     478#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:603
    458479msgid ""
    459480"Please notice that modals may not work properly with older versions of "
     
    463484"van Bootstrap"
    464485
    465 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:446
     486#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:448
    466487msgid ""
    467488"Please notice that the maps presented by either of the map services contain "
     
    471492"contact informatie naar de service leverancier bevatten."
    472493
    473 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1454
    474 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1478
     494#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1515
     495#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1539
    475496msgid "Product is orphaned"
    476497msgstr "Product is verweesd"
    477498
    478 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1144
     499#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1195
    479500msgid "Quantity"
    480501msgstr "Hoeveelheid"
    481502
    482 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:573
     503#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:611
    483504msgid "Sales"
    484505msgstr "Verkoop"
    485506
    486 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:231
     507#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1275
    487508msgid "Saturday"
    488509msgstr "Zaterdag"
    489510
    490 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:410
     511#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:412
    491512msgid "Save Settings"
    492513msgstr "Bewaar instellingen"
    493514
    494 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:253
     515#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:246
    495516msgid "Search"
    496517msgstr "Zoek"
     
    508529msgstr "Selecteer de kaart service"
    509530
    510 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:498
     531#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:500
    511532msgid "Select the dateformat used in datepickers and displays."
    512533msgstr "Selecteer het datum formaat gebruikt in datum selectors en schermen."
    513534
    514 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:435
     535#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:437
    515536msgid ""
    516537"Select what should happen when a user clicks on an event in the calendar"
     
    519540"de kalender"
    520541
    521 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:536
     542#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:574
    522543msgid "Sell tickets in the shop"
    523544msgstr "Verkoop tickets in de winkel"
    524545
    525 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:547
     546#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:585
    526547msgid "Shop link"
    527548msgstr "Link naar de winkel"
    528549
    529 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1451
    530 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1475
     550#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1512
     551#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1536
    531552msgid "Shortcode can only be used for products of the Hello Event category"
    532553msgstr ""
     
    534555"categorie"
    535556
    536 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1180
    537 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1373
    538 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1401
    539 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1499
    540 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1513
    541 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1535
    542 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1551
    543 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1566
    544 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1582
    545 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1611
    546 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1632
    547 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1652
    548 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1667
    549 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1682
    550 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1702
    551 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1718
     557#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1231
     558#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1434
     559#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1462
     560#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1560
     561#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1574
     562#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1596
     563#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1618
     564#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1634
     565#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1649
     566#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1665
     567#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1694
     568#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1715
     569#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1735
     570#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1750
     571#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1765
     572#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1780
     573#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1795
     574#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1816
     575#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1832
    552576msgid "Shortcode can only be used when displaying events"
    553577msgstr "Shortcode kan enkel gebruikt worden bij het tonen van evenementen"
    554578
    555 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:521
     579#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:523
    556580msgid "Should the weekday name (eg. Monday) be shown in front of the date"
    557581msgstr ""
     
    559583"weergegeven"
    560584
    561 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:516
     585#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:518
    562586msgid "show"
    563587msgstr "weergeven"
    564588
    565 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:592
     589#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:594
    566590msgid "Show event summary in a Bootstrap modal"
    567591msgstr "Toon evenenment samenvatting in een Bootstrap modal"
    568592
    569 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:596
     593#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:598
    570594msgid "Show event summary in a jQuery UI modal"
    571595msgstr "Toon evenement samenvatting in een jQuery UI modal"
     
    575599msgstr "Slug voor aangepaste evenementenpagina"
    576600
    577 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:570
    578 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1868
    579 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1881
     601#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:608
     602#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1991
     603#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2004
    580604msgid "Start"
    581605msgstr "Start"
    582606
    583 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:484
     607#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:492
    584608msgid "Start date"
    585609msgstr "Startdatum"
     
    590614msgstr "Startdatum en -tijd van het evenement"
    591615
    592 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:493
     616#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:501
    593617msgid "Start time"
    594618msgstr "Starttijd"
    595619
    596 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:225
     620#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1269
    597621msgid "Sunday"
    598622msgstr "Zondag"
    599623
    600 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2031
     624#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:539
     625msgid ""
     626"The (optional) location name can for example be the name of a concert hall"
     627msgstr ""
     628"De (optionele) locatienaam kan bijvoorbeeld de naam van een concertzaal zijn"
     629
     630#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2163
    601631msgid "The event was saved but there are error(s)"
    602632msgstr "Het evenement werd bewaard maar er zijn fout(en)"
    603633
    604 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1342
     634#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1403
    605635msgid ""
    606636"The link from the event does not point to a ticket in Woocommerce. Save the "
     
    610640"het ticket opnieuw!"
    611641
    612 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2029
     642#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:550
     643msgid ""
     644"The location address should be detailed enough to geo-localize the place"
     645msgstr ""
     646"Het locatieadres moet voldoende gedetailleerd zijn om de plaats te "
     647"geolokaliseren"
     648
     649#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2161
    613650msgid "The product was saved but there are error(s)"
    614651msgstr "Het product werd bewaard, maar er zijn fout(en)"
    615652
    616 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1344
     653#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1405
    617654msgid ""
    618655"The ticket exists in Woocommerce, and is published, but you need to set its "
     
    622659"nog instellen"
    623660
    624 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1343
     661#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1404
    625662msgid "The ticket exists in Woocommerce, but you need to set it as published"
    626663msgstr "Het ticket bestaat in WooCommerce, maar moet nog gepubliceerd worden"
    627664
    628 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1183
    629 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1339
     665#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1234
     666#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1400
    630667msgid "The Woocommerce plugin is not activated"
    631668msgstr "De WooCommerce plugin is niet geactiveerd"
    632669
    633 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:554
     670#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:592
    634671msgid ""
    635672"then after saving the event a new link will appear to allow you to set the "
     
    639676"je de prijs en aantal tickets kan ingeven"
    640677
    641 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2001
     678#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2133
    642679msgid "There is already a ticket for the event in the shop"
    643680msgstr "Er is reeds een ticket voor dit evenement in de shop"
    644681
    645 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:436
     682#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:444
    646683msgid "There is no event to show"
    647684msgstr "Er is geen evenement om te tonen"
    648685
    649 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1341
     686#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1402
    650687msgid "There is no link from the event to a ticket. Save the event again!"
    651688msgstr ""
     
    653690"opnieuw!"
    654691
    655 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:657
     692#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:659
    656693msgid "this page"
    657694msgstr "deze pagina"
    658695
    659 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:229
     696#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1273
    660697msgid "Thursday"
    661698msgstr "Donderdag"
    662699
    663 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1138
     700#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1189
    664701msgid "Ticket sales status"
    665702msgstr "Status ticketverkoop"
    666703
    667 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:301
    668 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:572
    669 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:227
     704#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:302
     705#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:610
     706#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:233
    670707msgid "Tickets"
    671708msgstr "Tickets"
    672709
    673 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:552
     710#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:590
    674711msgid "Tickets are not yet available in the shop."
    675712msgstr "Er zijn nog geen tickets verkrijgbaar in de winkel"
    676713
    677 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1370
    678 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1398
     714#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1227
     715#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1431
     716#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1459
     717#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2024
    679718msgid "Tickets not fully configured"
    680719msgstr "De tickets zijn niet geheel geconfigureerd"
    681720
    682 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:610
     721#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:648
    683722msgid "Tickets sold"
    684723msgstr "Verkochte tickets"
    685724
    686 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:727
     725#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:778
    687726msgid "Tickets to Events"
    688727msgstr "Tickets voor evenementen"
    689728
    690 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1360
    691 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1381
     729#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1421
     730#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1442
    692731msgid "Tickets to participate are available in our shop"
    693732msgstr "Deelnametickets zijn verkrijgbaar in onze winkel"
     
    697736msgstr "Tijdsformaat"
    698737
    699 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:655
     738#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:657
    700739msgid "To obtain the API Key and read Google's explanation go to"
    701740msgstr "Om een API sleutel te verkrijgen en Google's uitleg te lezen ga naar"
    702741
    703 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:558
     742#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:596
    704743msgid "To sell tickets Woocommerce needs to be installed and actived"
    705744msgstr ""
     
    707746"zijn"
    708747
    709 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1166
     748#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1217
    710749msgid "Total"
    711750msgstr "Totaal"
    712751
    713 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:227
     752#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1271
    714753msgid "Tuesday"
    715754msgstr "Dinsdag"
     
    719758msgstr "Niet gedefinieerde map services"
    720759
    721 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2017
     760#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2149
    722761msgid "Unknown error"
    723762msgstr "Onbekende fout"
    724763
    725 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:469
     764#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:477
    726765msgid "Upcoming events"
    727766msgstr "Komende evenementen"
    728767
    729768#. Field slug
    730 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:338
     769#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:339
    731770msgid "Update the ticket title when the event title is changed"
    732771msgstr "Pas de ticket titel aan als de evenement titel is aangepast"
    733772
    734 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:251
     773#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:244
    735774msgid "View"
    736775msgstr "Bekijk"
    737776
    738 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:228
     777#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1272
    739778msgid "Wednesday"
    740779msgstr "Woensdag"
     
    745784msgstr "Weekdag"
    746785
    747 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:573
     786#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:575
    748787msgid "When switched on admins and editors will see debug information"
    749788msgstr "Indien ingeschakeld zullen admins en editors de debug informatie zien"
    750789
    751 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:454
     790#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:456
    752791msgid ""
    753792"When using a custom event page you must use shortcodes to show the event "
     
    757796"gebruiken om de evenementinformatie weer te geven."
    758797
    759 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:442
     798#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:444
    760799msgid ""
    761800"With Google Maps comes many additional features (street view, driving "
     
    767806"Google Maps API sleutel verkrijgen."
    768807
    769 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:453
     808#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:455
    770809msgid "you can decide what information should be automatically inserted"
    771810msgstr "u kunt beslissen welke informatie automatisch moet worden ingevoegd"
     
    778817"worden"
    779818
    780 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1340
     819#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1401
    781820msgid "You need to set the check box to sell tickets in the event!"
    782821msgstr ""
  • hello-event/trunk/languages/hello-event-sv_SE.l10n.php

    r3108894 r3117834  
    11<?php
    2 return ['po-revision-date'=>'2024-06-27 15:24+0000','mime-version'=>'1.0','content-type'=>'text/plain; charset=UTF-8','content-transfer-encoding'=>'8bit','plural-forms'=>'nplurals=2; plural=n != 1;','x-generator'=>'Loco https://localise.biz/','language'=>'sv_SE','project-id-version'=>'Plugins - Hello Event - Development (trunk)','language-team'=>'Svenska','report-msgid-bugs-to'=>'','pot-creation-date'=>'2024-06-16 08:16+0000','last-translator'=>'','x-loco-version'=>'2.6.10; wp-6.5.4','messages'=>['A plugin for managing events and sell tickets with Woocommerce'=>'Ett tillägg för att hantera evenemang och sälja biljetter med hjälp av Woocommerce','Add New'=>'Lägg till ny','Add to Calendar'=>'Lägg till i kalender','Add-to-calendar button'=>'Lägg-till-i-kalender-knapp','All'=>'Alla','Any items not selected can always be inserted into the content parts of events and tickets using shortcodes.'=>'De element som inte valts här kan alltid infogas i innehållet för evenemang och biljetter med hjälp av shortcodes.','As of July 2018 you will be able to do 28500 requests per month free of charge,'=>'Från juli 2018 kommer du kunna göra upp till 28500 kartsökningar per månad gratis,','at'=>'kl.','Auto inserted content'=>'Auto-infogat innehåll','Book now'=>'Boka plats nu','but please notice that the pricing plans are quite complex and you should consult Google\'s information about the details.'=>'men observera att prissättningen är ganska komplex och du bör konsultera Googles information angående alla detaljer.','Calendar'=>'Kalender','Choose behaviour'=>'Välj beteende','Choose what should be AUTOMAICALLY inserted into the content of events and tickets.'=>'Välj vad som skall infogas AUTOMATISKT i innehållet för evenemang och biljetter.','Christer Fernstrom'=>'Christer Fernstrom','Custom event page'=>'Anpassad sida for evenemang','Date'=>'Datum','Date and Time formats'=>'Datum- och tidsformat','Date format'=>'Datumformat','Dates and time'=>'Datum och tid','Debug'=>'Avlusning','Debugging'=>'Felsökning','Default is "Event" in singular and "Events" in plural.'=>'Standard är "Event" i singularis och "Events" i pluralis.','don\'t show'=>'visa inte','Earlier events'=>'Tidigare evenemang','Edit'=>'Redigera','Edit ticket'=>'Ändra biljett','End'=>'Slut','End date'=>'Slutdatum','End date and time of event'=>'Slutdatum och -tid för evenemang','End date is earlier than start date'=>'Slutdatum är angiven som tidigare än stardatum','End time'=>'Sluttid','Event ticket'=>'Biljett till evenemang','Event:'=>'Evenemang:','Fill in the checkbox above to start sell tickets'=>'Makera checkboxen ovan för att sälja biljetter','Fill in the slug of the custom event page, or leave blank for default.'=>'Fyll i slug till anpassad sida för evenemang, eller lämna blankt för standard','First name'=>'Förnamn','Friday'=>'Fredag','Full day'=>'Heldag','generated by the shortcodes in case of problems'=>'skapat från shortkoden i händelse av problem','Go to the event page'=>'Gå till evenemangssidan','Goto the event'=>'Gå till evenemang','Hello Event'=>'Hello Event','Here you can change the name for the event custom type that you see on the admin pages.'=>'Här kan du ändra namnet på specialtypen för evenemang (namnet syns endast på admin-sidorna).','Hide ticket from shop unless the event is in the future'=>'Göm biljett i butiken om evenemanget inte ligger i framtiden','https://www.tekomatik.com/about'=>'https://www.tekomatik.com/about','https://www.tekomatik.com/plugins/hello-event'=>'https://www.tekomatik.com/plugins/hello-event','If no custom page is defined, events will be displayed using the standard page template of the theme, and in the settings below'=>'Om ingen anpassad sida är definierad kommer evenemang att visas med temats standard sidmall, och i inställningarna nedan','If shown it will be localized into the selected language of the site'=>'Om veckodag visas är den översatt till valt språk på siten.','If the page does not exist the default will be used.'=>'Standardsidan kommer att användas om denna sida inte finns','if the ticket title should be automatically updated to the event title when the event is saved.'=>'om bilettens titel skall uppdateras automatiskt till evenemangets titel när evenemanget sparas','if tickets to past events and tickets to events that have been deleted should be set to hidden to prevent them from being shown in the shop'=>'om biljetter till tidigare evenemang eller evenemang som tagits bort skall sättas till gömda för att inte synas i butiken','If you choose to use Google Maps, no maps will be displayed on the event pages until you have obtained the key and registered it here.'=>'Om du väljer att använda Google Maps kommer inga kartor att visas på evenemangssidorna förrän du har fått nyckeln och registrerat den här.','If you want to use Bootstrap modals your theme must be built with Bootstrap'=>'För att kunna använda Bootstrap modals måste temat vara byggt med Bootstrap','Internally all dates are stored in the ISO-format (YYYY-mm-dd).'=>'Internt lagras datum enligt ISO-standard (åååå-mm-dd)','It is possible to create a custom page used to display the events.'=>'Det är möjligt att skapa en anpassad sida för att visa evenemangen','It is possible to use either Google Maps or OpenStreetMap to display the locations of events.'=>'Det är möjligt att använda antingen Google Maps eller OpenStreetMap för att visa evenemangens platser.','Keep tickets in sync with events'=>'Synkronisera biljetter med evenemang','Last name'=>'Efternamn','Leave blank to keep the defaults.'=>'Lämna blankt för att använda standardvärden.','Link from event to ticket'=>'Länk från evenemang till biljett','Link from ticket to event'=>'Länk från biljett till evenemang','Location'=>'Plats','Location map'=>'Karta','Location of event'=>'Plats för evenemang','Manage events and sell tickets with WooCommerce as easy as Hello World'=>'Administrera evenemang och sälj biljetter med WooCommerce lika enkelt som "Hello World"','Maps'=>'Kartor','Maps API Key'=>'Google Maps API-nyckel','Monday'=>'Måndag','Name of event (plural)'=>'Namn på evenemang (plurails)','Name of event (singular)'=>'Namn på evenemang (singularis)','Naming events'=>'Namnge evenemang','New'=>'Nytt','No end date given. The date has been set to today.'=>'Ingen slutdatum är angiven. Dagens datum kommer att användas.','No event corresponds to the event id in the URL'=>'Inget evenemang svarar mot evenemangsidentiteten i URL','No event id in the URL'=>'Ingen evenemangsidentitet i URL','No event points to the ticket'=>'Det finns inget evenemang kopplat till biljetten','No location given'=>'Ingen plats angiven','No start date given. The date has been set to today.'=>'Ingen startdatum är angiven. Dagens datum kommer att användas.','Nono'=>'Nej','off'=>'av','on'=>'på','OpenStreetMap is a community-based free service, which is sufficient in most cases.'=>'OpenStreet Map är en gratistjänst som skapas och underhålls av gemenskapen och som är fullt tillräcklig i de flesta fall.','Order'=>'Beställning','Paid'=>'Betalt','Participate'=>'Delta','Please notice that a link from an event to a ticket will only appear when the sale of tickets for the event is active.'=>'Observera att en länk från ett evenemang till biljetten endast är synlig om biljettförsäljningen är aktiverad.','Please notice that modals may not work properly with older versions of Bootstrap'=>'Observera att modaler kanske inte fungerar korrekt med äldre versioner av Bootstrap','Please notice that the maps presented by either of the map services contain links with credits and contact information to the service provider.'=>'Observera att kartorna som presenteras innehåller länkar till den kart-tjänst som används.','Product is orphaned'=>'Det finns inget evenemang till produkten','Quantity'=>'Antal','Sales'=>'Försäljning','Saturday'=>'Lördag','Save Settings'=>'Spara inställningar','Search'=>'Sök','See in Open Street Map'=>'Visa med Open STreet Map','See more'=>'Visa mer','Select map service'=>'Välj kart-tjänst','Select the dateformat used in datepickers and displays.'=>'Välj vilket datumformat som skall användas ','Select what should happen when a user clicks on an event in the calendar'=>'Välj vad som skall hända när man klickar på ett evenemang i kalendern','Sell tickets in the shop'=>'Sälj biljetter i butiken','Shop link'=>'Länk till butiken','Shortcode can only be used for products of the Hello Event category'=>'Kortkoden kan endast användas för produkter i kategorin Hello Event','Shortcode can only be used when displaying events'=>'Shortkoden kan endast användas när man visar evenemang','Should the weekday name (eg. Monday) be shown in front of the date'=>'Skall veckodagen (t.ex. Måndag) visas framför datum','show'=>'visa','Show event summary in a Bootstrap modal'=>'Visa översikt av evenemanget i en Bootstrap modal','Show event summary in a jQuery UI modal'=>'Visa översikt av evenemanget i en jQuery UI modal','Slug for custom event page'=>'Slug till anpassad sida','Start'=>'Början','Start date'=>'Startdatum','Start date and time of event'=>'Startdatum och -tid för evenemang','Start time'=>'Starttid','Sunday'=>'Söndag','The event was saved but there are error(s)'=>'Evenemanget sparades men det finns fel','The link from the event does not point to a ticket in Woocommerce. Save the event again!'=>'Länken från evenemanget pekar inte på en biljett i Woocommerce. Prova att spara evenemanget på nytt.','The product was saved but there are error(s)'=>'Biljetten sparades men det finns fel','The ticket exists in Woocommerce, and is published, but you need to set its price'=>'Det finns en biljett i Woocommerce som är publicerad, men du måste även sätta pris','The ticket exists in Woocommerce, but you need to set it as published'=>'Det finns en biljett i Woocommerce, men du måste uppdatera dess status till publicerad','The Woocommerce plugin is not activated'=>'Tillägget Woocommerce är inte aktiverat','then after saving the event a new link will appear to allow you to set the price and quantity of tickets'=>'sedan efter evenemanget sparats kommer en ny länk visas för att sätta pris och antal biljetter','There is already a ticket for the event in the shop'=>'Det finns redan en biljett till evenemanget i butiken','There is no event to show'=>'Det finns inga evenemang att visa','There is no link from the event to a ticket. Save the event again!'=>'Det finns ingen länk från evenemanget till någon biljett. Prova att spara evenemanget på nytt!','this page'=>'denna sida','Thursday'=>'Torsdag','Ticket sales status'=>'Försäljningsstatus','Tickets'=>'Biljetter','Tickets are not yet available in the shop.'=>'Ännu så länge finns det inte biljetter i butiken.','Tickets not fully configured'=>'Biletter är inte fullständigt konfigurerade','Tickets sold'=>'Sålda biljetter','Tickets to Events'=>'Biljetter till Evenemang','Tickets to participate are available in our shop'=>'Biljetter för att delta finns i vår butik','Time format'=>'Tidsformat','To obtain the API Key and read Google\'s explanation go to'=>'För att (gratis) erhålla en API-nyckel och läsa Google\'s förklaring gå till ','To sell tickets Woocommerce needs to be installed and actived'=>'För att kunna sälja biljetter måste Woocommerce vara installerat','Total'=>'Totalt','Tuesday'=>'Tisdag','Undefined map services'=>'Kart-tjänsten är odefinierad','Unknown error'=>'Okänt fel','Upcoming events'=>'Kommande evenemang','Update the ticket title when the event title is changed'=>'Uppdatera biljettens titel när evenemangets titel ändras','View'=>'Visa','Wednesday'=>'Onsdag','Weekday'=>'Veckodag','When switched on admins and editors will see debug information'=>'När detta val är aktiverat kommer admins och editors att se avlusningsinformation','When using a custom event page you must use shortcodes to show the event information.'=>'När anpassad sida används för att visa evenemang måste shortcodes användas för att visa informationen.','With Google Maps comes many additional features (street view, driving directions, ...), but in order to use Google maps you need to obtain a Google Maps API Key.'=>'Med Google Maps kommer ytterligare funktioner (street view, köranvisningar,...), men för att kunna använda Google Maps måste du erhålla en Google Maps API nyckel och registrera den här.','you can decide what information should be automatically inserted'=>'kan du bestämma vilken information som skall infogas automatiskt','You need to register your Google Maps API Key before the map can be shown'=>'Du måste lägga in din Google Maps API-nyckel för att kunna se kartor','You need to set the check box to sell tickets in the event!'=>'Du måste aktivera valet i checkboxen för att sälja biljetter !']];
     2return ['po-revision-date'=>'2024-07-10 07:54+0000','mime-version'=>'1.0','content-type'=>'text/plain; charset=UTF-8','content-transfer-encoding'=>'8bit','plural-forms'=>'nplurals=2; plural=n != 1;','x-generator'=>'Loco https://localise.biz/','language'=>'sv_SE','project-id-version'=>'Plugins - Hello Event - Development (trunk)','language-team'=>'Swedish','report-msgid-bugs-to'=>'','pot-creation-date'=>'2024-06-16 08:16+0000','last-translator'=>'','x-loco-version'=>'2.6.10; wp-6.5.4','messages'=>['A plugin for managing events and sell tickets with Woocommerce'=>'Ett tillägg för att hantera evenemang och sälja biljetter med hjälp av Woocommerce','Add New'=>'Lägg till ny','Add to Calendar'=>'Lägg till i kalender','Add-to-calendar button'=>'Lägg-till-i-kalender-knapp','Advice'=>'Råd','Advice to participants, for example related to parking or public transportation'=>'Råd till deltagarna, till exempel angående parkering eller transportförbindelser','All'=>'Alla','Any items not selected can always be inserted into the content parts of events and tickets using shortcodes.'=>'De element som inte valts här kan alltid infogas i innehållet för evenemang och biljetter med hjälp av shortcodes.','As of July 2018 you will be able to do 28500 requests per month free of charge,'=>'Från juli 2018 kommer du kunna göra upp till 28500 kartsökningar per månad gratis,','at'=>'kl.','Auto inserted content'=>'Auto-infogat innehåll','Book now'=>'Boka plats nu','but please notice that the pricing plans are quite complex and you should consult Google\'s information about the details.'=>'men observera att prissättningen är ganska komplex och du bör konsultera Googles information angående alla detaljer.','Calendar'=>'Kalender','Choose behaviour'=>'Välj beteende','Choose what should be AUTOMAICALLY inserted into the content of events and tickets.'=>'Välj vad som skall infogas AUTOMATISKT i innehållet för evenemang och biljetter.','Christer Fernstrom'=>'Christer Fernstrom','Custom event page'=>'Anpassad sida for evenemang','Date'=>'Datum','Date and Time formats'=>'Datum- och tidsformat','Date format'=>'Datumformat','Dates and time'=>'Datum och tid','Debug'=>'Avlusning','Debugging'=>'Felsökning','Default is "Event" in singular and "Events" in plural.'=>'Standard är "Event" i singularis och "Events" i pluralis.','don\'t show'=>'visa inte','Earlier events'=>'Tidigare evenemang','Edit'=>'Redigera','Edit ticket'=>'Ändra biljett','End'=>'Slut','End date'=>'Slutdatum','End date and time of event'=>'Slutdatum och -tid för evenemang','End date is earlier than start date'=>'Slutdatum är angiven som tidigare än stardatum','End time'=>'Sluttid','Event ticket'=>'Biljett till evenemang','Event:'=>'Evenemang:','Fill in the checkbox above to start sell tickets'=>'Makera checkboxen ovan för att sälja biljetter','Fill in the slug of the custom event page, or leave blank for default.'=>'Fyll i slug till anpassad sida för evenemang, eller lämna blankt för standard','First name'=>'Förnamn','Friday'=>'Fredag','Full day'=>'Heldag','generated by the shortcodes in case of problems'=>'skapat från shortkoden i händelse av problem','Go to the event page'=>'Gå till evenemangssidan','Goto the event'=>'Gå till evenemang','Hello Event'=>'Hello Event','Here you can change the name for the event custom type that you see on the admin pages.'=>'Här kan du ändra namnet på specialtypen för evenemang (namnet syns endast på admin-sidorna).','Hide ticket from shop unless the event is in the future'=>'Göm biljett i butiken om evenemanget inte ligger i framtiden','https://www.tekomatik.com/about'=>'https://www.tekomatik.com/about','https://www.tekomatik.com/plugins/hello-event'=>'https://www.tekomatik.com/plugins/hello-event','If no custom page is defined, events will be displayed using the standard page template of the theme, and in the settings below'=>'Om ingen anpassad sida är definierad kommer evenemang att visas med temats standard sidmall, och i inställningarna nedan','If shown it will be localized into the selected language of the site'=>'Om veckodag visas är den översatt till valt språk på siten.','If the page does not exist the default will be used.'=>'Standardsidan kommer att användas om denna sida inte finns','if the ticket title should be automatically updated to the event title when the event is saved.'=>'om bilettens titel skall uppdateras automatiskt till evenemangets titel när evenemanget sparas','if tickets to past events and tickets to events that have been deleted should be set to hidden to prevent them from being shown in the shop'=>'om biljetter till tidigare evenemang eller evenemang som tagits bort skall sättas till gömda för att inte synas i butiken','If you choose to use Google Maps, no maps will be displayed on the event pages until you have obtained the key and registered it here.'=>'Om du väljer att använda Google Maps kommer inga kartor att visas på evenemangssidorna förrän du har fått nyckeln och registrerat den här.','If you want to use Bootstrap modals your theme must be built with Bootstrap'=>'För att kunna använda Bootstrap modals måste temat vara byggt med Bootstrap','Internally all dates are stored in the ISO-format (YYYY-mm-dd).'=>'Internt lagras datum enligt ISO-standard (åååå-mm-dd)','It is possible to create a custom page used to display the events.'=>'Det är möjligt att skapa en anpassad sida för att visa evenemangen','It is possible to use either Google Maps or OpenStreetMap to display the locations of events.'=>'Det är möjligt att använda antingen Google Maps eller OpenStreetMap för att visa evenemangens platser.','Keep tickets in sync with events'=>'Synkronisera biljetter med evenemang','Last name'=>'Efternamn','Leave blank to keep the defaults.'=>'Lämna blankt för att använda standardvärden.','Link from event to ticket'=>'Länk från evenemang till biljett','Link from ticket to event'=>'Länk från biljett till evenemang','Location'=>'Plats','Location address'=>'Platsadress','Location map'=>'Karta','Location Name'=>'Platsnamn','Location of event'=>'Plats för evenemang','Manage events and sell tickets with WooCommerce as easy as Hello World'=>'Administrera evenemang och sälj biljetter med WooCommerce lika enkelt som "Hello World"','Maps'=>'Kartor','Maps API Key'=>'Google Maps API-nyckel','Monday'=>'Måndag','Name of event (plural)'=>'Namn på evenemang (plurails)','Name of event (singular)'=>'Namn på evenemang (singularis)','Naming events'=>'Namnge evenemang','New'=>'Nytt','No end date given. The date has been set to today.'=>'Ingen slutdatum är angiven. Dagens datum kommer att användas.','No event corresponds to the event id in the URL'=>'Inget evenemang svarar mot evenemangsidentiteten i URL','No event id in the URL'=>'Ingen evenemangsidentitet i URL','No event points to the ticket'=>'Det finns inget evenemang kopplat till biljetten','No location given'=>'Ingen plats angiven','No start date given. The date has been set to today.'=>'Ingen startdatum är angiven. Dagens datum kommer att användas.','Nono'=>'Nej','off'=>'av','on'=>'på','OpenStreetMap is a community-based free service, which is sufficient in most cases.'=>'OpenStreet Map är en gratistjänst som skapas och underhålls av gemenskapen och som är fullt tillräcklig i de flesta fall.','Order'=>'Beställning','Paid'=>'Betalt','Participate'=>'Delta','Please notice that a link from an event to a ticket will only appear when the sale of tickets for the event is active.'=>'Observera att en länk från ett evenemang till biljetten endast är synlig om biljettförsäljningen är aktiverad.','Please notice that modals may not work properly with older versions of Bootstrap'=>'Observera att modaler kanske inte fungerar korrekt med äldre versioner av Bootstrap','Please notice that the maps presented by either of the map services contain links with credits and contact information to the service provider.'=>'Observera att kartorna som presenteras innehåller länkar till den kart-tjänst som används.','Product is orphaned'=>'Det finns inget evenemang till produkten','Quantity'=>'Antal','Sales'=>'Försäljning','Saturday'=>'Lördag','Save Settings'=>'Spara inställningar','Search'=>'Sök','See in Open Street Map'=>'Visa med Open STreet Map','See more'=>'Visa mer','Select map service'=>'Välj kart-tjänst','Select the dateformat used in datepickers and displays.'=>'Välj vilket datumformat som skall användas ','Select what should happen when a user clicks on an event in the calendar'=>'Välj vad som skall hända när man klickar på ett evenemang i kalendern','Sell tickets in the shop'=>'Sälj biljetter i butiken','Shop link'=>'Länk till butiken','Shortcode can only be used for products of the Hello Event category'=>'Kortkoden kan endast användas för produkter i kategorin Hello Event','Shortcode can only be used when displaying events'=>'Shortkoden kan endast användas när man visar evenemang','Should the weekday name (eg. Monday) be shown in front of the date'=>'Skall veckodagen (t.ex. Måndag) visas framför datum','show'=>'visa','Show event summary in a Bootstrap modal'=>'Visa översikt av evenemanget i en Bootstrap modal','Show event summary in a jQuery UI modal'=>'Visa översikt av evenemanget i en jQuery UI modal','Slug for custom event page'=>'Slug till anpassad sida','Start'=>'Början','Start date'=>'Startdatum','Start date and time of event'=>'Startdatum och -tid för evenemang','Start time'=>'Starttid','Sunday'=>'Söndag','The (optional) location name can for example be the name of a concert hall'=>'Platsnamnet (valfritt) kan till exempel vara namnet på en konsertsal','The event was saved but there are error(s)'=>'Evenemanget sparades men det finns fel','The link from the event does not point to a ticket in Woocommerce. Save the event again!'=>'Länken från evenemanget pekar inte på en biljett i Woocommerce. Prova att spara evenemanget på nytt.','The location address should be detailed enough to geo-localize the place'=>'Platsadressen skall vara tillräckligt detaljerad för att geolokalisera platsen','The product was saved but there are error(s)'=>'Biljetten sparades men det finns fel','The ticket exists in Woocommerce, and is published, but you need to set its price'=>'Det finns en biljett i Woocommerce som är publicerad, men du måste även sätta pris','The ticket exists in Woocommerce, but you need to set it as published'=>'Det finns en biljett i Woocommerce, men du måste uppdatera dess status till publicerad','The Woocommerce plugin is not activated'=>'Tillägget Woocommerce är inte aktiverat','then after saving the event a new link will appear to allow you to set the price and quantity of tickets'=>'sedan efter evenemanget sparats kommer en ny länk visas för att sätta pris och antal biljetter','There is already a ticket for the event in the shop'=>'Det finns redan en biljett till evenemanget i butiken','There is no event to show'=>'Det finns inga evenemang att visa','There is no link from the event to a ticket. Save the event again!'=>'Det finns ingen länk från evenemanget till någon biljett. Prova att spara evenemanget på nytt!','this page'=>'denna sida','Thursday'=>'Torsdag','Ticket sales status'=>'Försäljningsstatus','Tickets'=>'Biljetter','Tickets are not yet available in the shop.'=>'Ännu så länge finns det inte biljetter i butiken.','Tickets not fully configured'=>'Biletter är inte fullständigt konfigurerade','Tickets sold'=>'Sålda biljetter','Tickets to Events'=>'Biljetter till Evenemang','Tickets to participate are available in our shop'=>'Biljetter för att delta finns i vår butik','Time format'=>'Tidsformat','To obtain the API Key and read Google\'s explanation go to'=>'För att (gratis) erhålla en API-nyckel och läsa Google\'s förklaring gå till ','To sell tickets Woocommerce needs to be installed and actived'=>'För att kunna sälja biljetter måste Woocommerce vara installerat','Total'=>'Totalt','Tuesday'=>'Tisdag','Undefined map services'=>'Kart-tjänsten är odefinierad','Unknown error'=>'Okänt fel','Upcoming events'=>'Kommande evenemang','Update the ticket title when the event title is changed'=>'Uppdatera biljettens titel när evenemangets titel ändras','View'=>'Visa','Wednesday'=>'Onsdag','Weekday'=>'Veckodag','When switched on admins and editors will see debug information'=>'När detta val är aktiverat kommer admins och editors att se avlusningsinformation','When using a custom event page you must use shortcodes to show the event information.'=>'När anpassad sida används för att visa evenemang måste shortcodes användas för att visa informationen.','With Google Maps comes many additional features (street view, driving directions, ...), but in order to use Google maps you need to obtain a Google Maps API Key.'=>'Med Google Maps kommer ytterligare funktioner (street view, köranvisningar,...), men för att kunna använda Google Maps måste du erhålla en Google Maps API nyckel och registrera den här.','you can decide what information should be automatically inserted'=>'kan du bestämma vilken information som skall infogas automatiskt','You need to register your Google Maps API Key before the map can be shown'=>'Du måste lägga in din Google Maps API-nyckel för att kunna se kartor','You need to set the check box to sell tickets in the event!'=>'Du måste aktivera valet i checkboxen för att sälja biljetter !']];
  • hello-event/trunk/languages/hello-event-sv_SE.po

    r3108894 r3117834  
    33msgid ""
    44msgstr ""
    5 "PO-Revision-Date: 2024-06-27 15:24+0000\n"
     5"PO-Revision-Date: 2024-07-10 07:54+0000\n"
    66"MIME-Version: 1.0\n"
    77"Content-Type: text/plain; charset=UTF-8\n"
     
    1111"Language: sv_SE\n"
    1212"Project-Id-Version: Plugins - Hello Event - Development (trunk)\n"
    13 "Language-Team: Svenska\n"
     13"Language-Team: Swedish\n"
    1414"Report-Msgid-Bugs-To: \n"
    1515"POT-Creation-Date: 2024-06-16 08:16+0000\n"
     
    1717"X-Loco-Version: 2.6.10; wp-6.5.4"
    1818
    19 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:395
     19#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:397
    2020msgid "A plugin for managing events and sell tickets with Woocommerce"
    2121msgstr ""
     
    2323"Woocommerce"
    2424
    25 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:247
    26 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:248
     25#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:240
     26#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:241
    2727msgid "Add New"
    2828msgstr "Lägg till ny"
    2929
    30 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1688
     30#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1802
    3131msgid "Add to Calendar"
    3232msgstr "Lägg till i kalender"
    3333
    3434#. Field slug
    35 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:286
     35#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:274
    3636msgid "Add-to-calendar button"
    3737msgstr "Lägg-till-i-kalender-knapp"
    3838
    39 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:252
     39#. Field slug
     40#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:294
     41#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:559
     42#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:300
     43msgid "Advice"
     44msgstr "Råd"
     45
     46#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:565
     47msgid ""
     48"Advice to participants, for example related to parking or public "
     49"transportation"
     50msgstr ""
     51"Råd till deltagarna, till exempel angående parkering eller "
     52"transportförbindelser"
     53
     54#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:245
    4055msgid "All"
    4156msgstr "Alla"
    4257
    43 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:461
     58#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:463
    4459msgid ""
    4560"Any items not selected can always be inserted into the content parts of "
     
    4964"och biljetter med hjälp av shortcodes."
    5065
    51 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:443
     66#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:445
    5267msgid ""
    5368"As of July 2018 you will be able to do 28500 requests per month free of "
     
    5772"gratis,"
    5873
    59 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1608
    60 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1629
     74#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1691
     75#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1712
    6176msgid "at"
    6277msgstr "kl."
    6378
    6479#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:82
    65 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:453
     80#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:455
    6681msgid "Auto inserted content"
    6782msgstr "Auto-infogat innehåll"
    6883
    69 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:203
     84#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:207
    7085msgid "Book now"
    7186msgstr "Boka plats nu"
    7287
    73 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:444
     88#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:446
    7489msgid ""
    7590"but please notice that the pricing plans are quite complex and you should "
     
    88103msgstr "Välj beteende"
    89104
    90 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:460
     105#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:462
    91106msgid ""
    92107"Choose what should be AUTOMAICALLY inserted into the content of events and "
     
    104119msgstr "Anpassad sida for evenemang"
    105120
    106 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1141
     121#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1192
    107122msgid "Date"
    108123msgstr "Datum"
     
    118133msgstr "Datumformat"
    119134
    120 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:285
     135#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:278
    121136msgid "Dates and time"
    122137msgstr "Datum och tid"
     
    130145msgstr "Felsökning"
    131146
    132 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:426
     147#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:428
    133148msgid "Default is \"Event\" in singular and \"Events\" in plural."
    134149msgstr "Standard är \"Event\" i singularis och \"Events\" i pluralis."
    135150
    136 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:512
     151#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:514
    137152msgid "don't show"
    138153msgstr "visa inte"
    139154
    140 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:468
     155#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:476
    141156msgid "Earlier events"
    142157msgstr "Tidigare evenemang"
    143158
    144 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:250
     159#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:243
    145160msgid "Edit"
    146161msgstr "Redigera"
    147162
    148 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:549
    149 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:599
     163#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:587
     164#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:637
    150165msgid "Edit ticket"
    151166msgstr "Ändra biljett"
    152167
    153 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:571
    154 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1886
     168#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:609
     169#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2009
    155170msgid "End"
    156171msgstr "Slut"
    157172
    158 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:502
     173#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:510
    159174msgid "End date"
    160175msgstr "Slutdatum"
     
    165180msgstr "Slutdatum och -tid för evenemang"
    166181
    167 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2013
     182#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2145
    168183msgid "End date is earlier than start date"
    169184msgstr "Slutdatum är angiven som tidigare än stardatum"
    170185
    171 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:512
     186#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:520
    172187msgid "End time"
    173188msgstr "Sluttid"
    174189
    175 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:715
    176 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:724
     190#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:766
     191#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:775
    177192msgid "Event ticket"
    178193msgstr "Biljett till evenemang"
    179194
    180 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:652
     195#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:690
    181196msgid "Event:"
    182197msgstr "Evenemang:"
    183198
    184 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:553
     199#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:591
    185200msgid "Fill in the checkbox above to start sell tickets"
    186201msgstr "Makera checkboxen ovan för att sälja biljetter"
    187202
    188 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:671
     203#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:673
    189204msgid "Fill in the slug of the custom event page, or leave blank for default."
    190205msgstr ""
    191206"Fyll i slug till anpassad sida för evenemang, eller lämna blankt för standard"
    192207
    193 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1143
     208#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1194
    194209msgid "First name"
    195210msgstr "Förnamn"
    196211
    197 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:230
     212#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1274
    198213msgid "Friday"
    199214msgstr "Fredag"
     
    203218msgstr "Heldag"
    204219
    205 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:574
     220#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:576
    206221msgid "generated by the shortcodes in case of problems"
    207222msgstr "skapat från shortkoden i händelse av problem"
    208223
    209 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:588
     224#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:590
    210225msgid "Go to the event page"
    211226msgstr "Gå till evenemangssidan"
    212227
    213 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:898
    214 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1462
    215 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:368
    216 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:412
     228#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:949
     229#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1523
     230#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:376
     231#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:420
    217232msgid "Goto the event"
    218233msgstr "Gå till evenemang"
     
    222237msgstr "Hello Event"
    223238
    224 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:424
     239#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:426
    225240msgid ""
    226241"Here you can change the name for the event custom type that you see on the "
     
    231246
    232247#. Field slug
    233 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:350
     248#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:351
    234249msgid "Hide ticket from shop unless the event is in the future"
    235250msgstr "Göm biljett i butiken om evenemanget inte ligger i framtiden"
     
    243258msgstr "https://www.tekomatik.com/plugins/hello-event"
    244259
    245 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:453
     260#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:455
    246261msgid ""
    247262"If no custom page is defined, events will be displayed using the standard "
     
    251266"standard sidmall, och i inställningarna nedan"
    252267
    253 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:522
     268#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:524
    254269msgid "If shown it will be localized into the selected language of the site"
    255270msgstr "Om veckodag visas är den översatt till valt språk på siten."
    256271
    257 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:672
     272#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:674
    258273msgid "If the page does not exist the default will be used."
    259274msgstr "Standardsidan kommer att användas om denna sida inte finns"
    260275
    261 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:469
     276#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:471
    262277msgid ""
    263278"if the ticket title should be automatically updated to the event title when "
     
    267282"evenemanget sparas"
    268283
    269 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:470
     284#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:472
    270285msgid ""
    271286"if tickets to past events and tickets to events that have been deleted "
     
    275290"sättas till gömda för att inte synas i butiken"
    276291
    277 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:445
     292#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:447
    278293msgid ""
    279294"If you choose to use Google Maps, no maps will be displayed on the event "
     
    283298"evenemangssidorna förrän du har fått nyckeln och registrerat den här."
    284299
    285 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:600
     300#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:602
    286301#| msgid "Tu use Bootstrap modals your theme MUST be built with Bootstrap"
    287302msgid ""
     
    290305"För att kunna använda Bootstrap modals måste temat vara byggt med Bootstrap"
    291306
    292 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:499
     307#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:501
    293308msgid "Internally all dates are stored in the ISO-format (YYYY-mm-dd)."
    294309msgstr "Internt lagras datum enligt ISO-standard (åååå-mm-dd)"
    295310
    296 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:452
     311#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:454
    297312msgid "It is possible to create a custom page used to display the events."
    298313msgstr "Det är möjligt att skapa en anpassad sida för att visa evenemangen"
    299314
    300 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:440
     315#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:442
    301316msgid ""
    302317"It is possible to use either Google Maps or OpenStreetMap to display the "
     
    310325msgstr "Synkronisera biljetter med evenemang"
    311326
    312 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1143
     327#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1194
    313328msgid "Last name"
    314329msgstr "Efternamn"
    315330
    316 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:428
     331#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:430
    317332msgid "Leave blank to keep the defaults."
    318333msgstr "Lämna blankt för att använda standardvärden."
    319334
    320335#. Field slug
    321 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:312
     336#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:313
    322337msgid "Link from event to ticket"
    323338msgstr "Länk från evenemang till biljett"
    324339
    325340#. Field slug
    326 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:324
     341#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:325
    327342msgid "Link from ticket to event"
    328343msgstr "Länk från biljett till evenemang"
    329344
    330 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:293
    331 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:524
    332 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1869
    333 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1891
     345#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:286
     346#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1992
     347#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2015
    334348#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-map.php:48
    335349msgid "Location"
    336350msgstr "Plats"
    337351
    338 #. Field slug
    339 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:299
     352#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:545
     353msgid "Location address"
     354msgstr "Platsadress"
     355
     356#. Field slug
     357#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:287
    340358msgid "Location map"
    341359msgstr "Karta"
    342360
     361#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:534
     362msgid "Location Name"
     363msgstr "Platsnamn"
     364
    343365#. Field slug
    344366#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:260
    345 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:273
    346367msgid "Location of event"
    347368msgstr "Plats för evenemang"
     
    361382msgstr "Google Maps API-nyckel"
    362383
    363 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:226
     384#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1270
    364385msgid "Monday"
    365386msgstr "Måndag"
     
    377398msgstr "Namnge evenemang"
    378399
    379 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:249
     400#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:242
    380401msgid "New"
    381402msgstr "Nytt"
    382403
    383 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2009
     404#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2141
    384405msgid "No end date given. The date has been set to today."
    385406msgstr "Ingen slutdatum är angiven. Dagens datum kommer att användas."
    386407
    387 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:658
     408#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:696
    388409msgid "No event corresponds to the event id in the URL"
    389410msgstr "Inget evenemang svarar mot evenemangsidentiteten i URL"
    390411
    391 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:662
     412#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:700
    392413msgid "No event id in the URL"
    393414msgstr "Ingen evenemangsidentitet i URL"
    394415
    395 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1997
     416#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2129
    396417msgid "No event points to the ticket"
    397418msgstr "Det finns inget evenemang kopplat till biljetten"
     
    401422msgstr "Ingen plats angiven"
    402423
    403 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2005
     424#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2137
    404425msgid "No start date given. The date has been set to today."
    405426msgstr "Ingen startdatum är angiven. Dagens datum kommer att användas."
    406427
    407 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:255
    408 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:256
     428#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:248
     429#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:249
    409430msgid "Nono"
    410431msgstr "Nej"
    411432
    412 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:569
    413 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:619
    414 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:689
     433#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:571
     434#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:621
     435#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:691
    415436msgid "off"
    416437msgstr "av"
    417438
    418 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:565
    419 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:615
    420 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:685
     439#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:567
     440#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:617
     441#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:687
    421442msgid "on"
    422443msgstr "på"
    423444
    424 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:441
     445#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:443
    425446msgid ""
    426447"OpenStreetMap is a community-based free service, which is sufficient in most "
     
    430451"och som är fullt tillräcklig i de flesta fall."
    431452
    432 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1142
    433 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1157
     453#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1193
     454#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1208
    434455msgid "Order"
    435456msgstr "Beställning"
    436457
    437 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1144
     458#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1195
    438459msgid "Paid"
    439460msgstr "Betalt"
    440461
    441 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1909
     462#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2034
    442463msgid "Participate"
    443464msgstr "Delta"
    444465
    445 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:462
     466#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:464
    446467msgid ""
    447468"Please notice that a link from an event to a ticket will only appear when "
     
    451472"biljettförsäljningen är aktiverad."
    452473
    453 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:601
     474#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:603
    454475msgid ""
    455476"Please notice that modals may not work properly with older versions of "
     
    459480"Bootstrap"
    460481
    461 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:446
     482#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:448
    462483msgid ""
    463484"Please notice that the maps presented by either of the map services contain "
     
    467488"tjänst som används."
    468489
    469 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1454
    470 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1478
     490#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1515
     491#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1539
    471492msgid "Product is orphaned"
    472493msgstr "Det finns inget evenemang till produkten"
    473494
    474 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1144
     495#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1195
    475496msgid "Quantity"
    476497msgstr "Antal"
    477498
    478 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:573
     499#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:611
    479500msgid "Sales"
    480501msgstr "Försäljning"
    481502
    482 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:231
     503#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1275
    483504msgid "Saturday"
    484505msgstr "Lördag"
    485506
    486 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:410
     507#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:412
    487508msgid "Save Settings"
    488509msgstr "Spara inställningar"
    489510
    490 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:253
     511#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:246
    491512msgid "Search"
    492513msgstr "Sök"
     
    504525msgstr "Välj kart-tjänst"
    505526
    506 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:498
     527#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:500
    507528msgid "Select the dateformat used in datepickers and displays."
    508529msgstr "Välj vilket datumformat som skall användas "
    509530
    510 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:435
     531#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:437
    511532msgid ""
    512533"Select what should happen when a user clicks on an event in the calendar"
    513534msgstr "Välj vad som skall hända när man klickar på ett evenemang i kalendern"
    514535
    515 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:536
     536#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:574
    516537msgid "Sell tickets in the shop"
    517538msgstr "Sälj biljetter i butiken"
    518539
    519 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:547
     540#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:585
    520541msgid "Shop link"
    521542msgstr "Länk till butiken"
    522543
    523 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1451
    524 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1475
     544#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1512
     545#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1536
    525546msgid "Shortcode can only be used for products of the Hello Event category"
    526547msgstr "Kortkoden kan endast användas för produkter i kategorin Hello Event"
    527548
    528 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1180
    529 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1373
    530 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1401
    531 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1499
    532 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1513
    533 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1535
    534 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1551
    535 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1566
    536 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1582
    537 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1611
    538 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1632
    539 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1652
    540 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1667
    541 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1682
    542 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1702
    543 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1718
     549#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1231
     550#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1434
     551#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1462
     552#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1560
     553#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1574
     554#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1596
     555#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1618
     556#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1634
     557#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1649
     558#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1665
     559#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1694
     560#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1715
     561#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1735
     562#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1750
     563#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1765
     564#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1780
     565#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1795
     566#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1816
     567#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1832
    544568msgid "Shortcode can only be used when displaying events"
    545569msgstr "Shortkoden kan endast användas när man visar evenemang"
    546570
    547 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:521
     571#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:523
    548572msgid "Should the weekday name (eg. Monday) be shown in front of the date"
    549573msgstr "Skall veckodagen (t.ex. Måndag) visas framför datum"
    550574
    551 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:516
     575#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:518
    552576msgid "show"
    553577msgstr "visa"
    554578
    555 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:592
     579#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:594
    556580msgid "Show event summary in a Bootstrap modal"
    557581msgstr "Visa översikt av evenemanget i en Bootstrap modal"
    558582
    559 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:596
     583#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:598
    560584msgid "Show event summary in a jQuery UI modal"
    561585msgstr "Visa översikt av evenemanget i en jQuery UI modal"
     
    565589msgstr "Slug till anpassad sida"
    566590
    567 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:570
    568 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1868
    569 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1881
     591#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:608
     592#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1991
     593#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2004
    570594msgid "Start"
    571595msgstr "Början"
    572596
    573 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:484
     597#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:492
    574598msgid "Start date"
    575599msgstr "Startdatum"
     
    580604msgstr "Startdatum och -tid för evenemang"
    581605
    582 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:493
     606#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:501
    583607msgid "Start time"
    584608msgstr "Starttid"
    585609
    586 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:225
     610#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1269
    587611msgid "Sunday"
    588612msgstr "Söndag"
    589613
    590 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2031
     614#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:539
     615msgid ""
     616"The (optional) location name can for example be the name of a concert hall"
     617msgstr "Platsnamnet (valfritt) kan till exempel vara namnet på en konsertsal"
     618
     619#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2163
    591620msgid "The event was saved but there are error(s)"
    592621msgstr "Evenemanget sparades men det finns fel"
    593622
    594 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1342
     623#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1403
    595624msgid ""
    596625"The link from the event does not point to a ticket in Woocommerce. Save the "
     
    600629"spara evenemanget på nytt."
    601630
    602 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2029
     631#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:550
     632msgid ""
     633"The location address should be detailed enough to geo-localize the place"
     634msgstr ""
     635"Platsadressen skall vara tillräckligt detaljerad för att geolokalisera "
     636"platsen"
     637
     638#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2161
    603639msgid "The product was saved but there are error(s)"
    604640msgstr "Biljetten sparades men det finns fel"
    605641
    606 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1344
     642#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1405
    607643msgid ""
    608644"The ticket exists in Woocommerce, and is published, but you need to set its "
     
    612648"sätta pris"
    613649
    614 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1343
     650#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1404
    615651msgid "The ticket exists in Woocommerce, but you need to set it as published"
    616652msgstr ""
     
    618654"publicerad"
    619655
    620 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1183
    621 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1339
     656#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1234
     657#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1400
    622658msgid "The Woocommerce plugin is not activated"
    623659msgstr "Tillägget Woocommerce är inte aktiverat"
    624660
    625 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:554
     661#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:592
    626662msgid ""
    627663"then after saving the event a new link will appear to allow you to set the "
     
    631667"och antal biljetter"
    632668
    633 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2001
     669#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2133
    634670msgid "There is already a ticket for the event in the shop"
    635671msgstr "Det finns redan en biljett till evenemanget i butiken"
    636672
    637 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:436
     673#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:444
    638674msgid "There is no event to show"
    639675msgstr "Det finns inga evenemang att visa"
    640676
    641 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1341
     677#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1402
    642678msgid "There is no link from the event to a ticket. Save the event again!"
    643679msgstr ""
     
    645681"evenemanget på nytt!"
    646682
    647 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:657
     683#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:659
    648684msgid "this page"
    649685msgstr "denna sida"
    650686
    651 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:229
     687#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1273
    652688msgid "Thursday"
    653689msgstr "Torsdag"
    654690
    655 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1138
     691#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1189
    656692msgid "Ticket sales status"
    657693msgstr "Försäljningsstatus"
    658694
    659 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:301
    660 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:572
    661 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:227
     695#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:302
     696#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:610
     697#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:233
    662698msgid "Tickets"
    663699msgstr "Biljetter"
    664700
    665 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:552
     701#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:590
    666702msgid "Tickets are not yet available in the shop."
    667703msgstr "Ännu så länge finns det inte biljetter i butiken."
    668704
    669 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1370
    670 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1398
     705#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1227
     706#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1431
     707#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1459
     708#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2024
    671709msgid "Tickets not fully configured"
    672710msgstr "Biletter är inte fullständigt konfigurerade"
    673711
    674 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:610
     712#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:648
    675713msgid "Tickets sold"
    676714msgstr "Sålda biljetter"
    677715
    678 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:727
     716#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:778
    679717msgid "Tickets to Events"
    680718msgstr "Biljetter till Evenemang"
    681719
    682 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1360
    683 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1381
     720#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1421
     721#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1442
    684722msgid "Tickets to participate are available in our shop"
    685723msgstr "Biljetter för att delta finns i vår butik"
     
    689727msgstr "Tidsformat"
    690728
    691 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:655
     729#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:657
    692730msgid "To obtain the API Key and read Google's explanation go to"
    693731msgstr ""
    694732"För att (gratis) erhålla en API-nyckel och läsa Google's förklaring gå till "
    695733
    696 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:558
     734#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:596
    697735msgid "To sell tickets Woocommerce needs to be installed and actived"
    698736msgstr "För att kunna sälja biljetter måste Woocommerce vara installerat"
    699737
    700 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1166
     738#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1217
    701739msgid "Total"
    702740msgstr "Totalt"
    703741
    704 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:227
     742#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1271
    705743msgid "Tuesday"
    706744msgstr "Tisdag"
     
    710748msgstr "Kart-tjänsten är odefinierad"
    711749
    712 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2017
     750#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2149
    713751msgid "Unknown error"
    714752msgstr "Okänt fel"
    715753
    716 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:469
     754#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:477
    717755msgid "Upcoming events"
    718756msgstr "Kommande evenemang"
    719757
    720758#. Field slug
    721 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:338
     759#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:339
    722760msgid "Update the ticket title when the event title is changed"
    723761msgstr "Uppdatera biljettens titel när evenemangets titel ändras"
    724762
    725 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:251
     763#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:244
    726764msgid "View"
    727765msgstr "Visa"
    728766
    729 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:228
     767#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1272
    730768msgid "Wednesday"
    731769msgstr "Onsdag"
     
    736774msgstr "Veckodag"
    737775
    738 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:573
     776#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:575
    739777msgid "When switched on admins and editors will see debug information"
    740778msgstr ""
     
    742780"avlusningsinformation"
    743781
    744 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:454
     782#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:456
    745783msgid ""
    746784"When using a custom event page you must use shortcodes to show the event "
     
    750788"för att visa informationen."
    751789
    752 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:442
     790#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:444
    753791msgid ""
    754792"With Google Maps comes many additional features (street view, driving "
     
    760798"API nyckel och registrera den här."
    761799
    762 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:453
     800#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:455
    763801msgid "you can decide what information should be automatically inserted"
    764802msgstr "kan du bestämma vilken information som skall infogas automatiskt"
     
    769807msgstr "Du måste lägga in din Google Maps API-nyckel för att kunna se kartor"
    770808
    771 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1340
     809#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1401
    772810msgid "You need to set the check box to sell tickets in the event!"
    773811msgstr "Du måste aktivera valet i checkboxen för att sälja biljetter !"
  • hello-event/trunk/languages/hello-event.pot

    r3108894 r3117834  
    44"Project-Id-Version: Hello Event\n"
    55"Report-Msgid-Bugs-To: \n"
    6 "POT-Creation-Date: 2024-06-27 15:04+0000\n"
     6"POT-Creation-Date: 2024-07-10 07:48+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/includes/hello-event-settings.php:395
     17#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:397
    1818msgid "A plugin for managing events and sell tickets with Woocommerce"
    1919msgstr ""
    2020
    21 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:247
    22 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:248
     21#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:240
     22#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:241
    2323msgid "Add New"
    2424msgstr ""
    2525
    26 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1688
     26#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1802
    2727msgid "Add to Calendar"
    2828msgstr ""
    2929
    3030#. Field slug
    31 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:286
     31#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:274
    3232msgid "Add-to-calendar button"
    3333msgstr ""
    3434
    35 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:252
     35#. Field slug
     36#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:294
     37#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:559
     38#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:300
     39msgid "Advice"
     40msgstr ""
     41
     42#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:565
     43msgid ""
     44"Advice to participants, for example related to parking or public "
     45"transportation"
     46msgstr ""
     47
     48#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:245
    3649msgid "All"
    3750msgstr ""
    3851
    39 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:461
     52#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:463
    4053msgid ""
    4154"Any items not selected can always be inserted into the content parts of "
     
    4356msgstr ""
    4457
    45 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:443
     58#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:445
    4659msgid ""
    4760"As of July 2018 you will be able to do 28500 requests per month free of "
     
    4962msgstr ""
    5063
    51 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1608
    52 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1629
     64#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1691
     65#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1712
    5366msgid "at"
    5467msgstr ""
    5568
    5669#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:82
    57 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:453
     70#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:455
    5871msgid "Auto inserted content"
    5972msgstr ""
    6073
    61 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:203
     74#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:207
    6275msgid "Book now"
    6376msgstr ""
    6477
    65 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:444
     78#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:446
    6679msgid ""
    6780"but please notice that the pricing plans are quite complex and you should "
     
    7891msgstr ""
    7992
    80 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:460
     93#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:462
    8194msgid ""
    8295"Choose what should be AUTOMAICALLY inserted into the content of events and "
     
    92105msgstr ""
    93106
    94 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1141
     107#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1192
    95108msgid "Date"
    96109msgstr ""
     
    106119msgstr ""
    107120
    108 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:285
     121#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:278
    109122msgid "Dates and time"
    110123msgstr ""
     
    118131msgstr ""
    119132
    120 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:426
     133#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:428
    121134msgid "Default is \"Event\" in singular and \"Events\" in plural."
    122135msgstr ""
    123136
    124 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:512
     137#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:514
    125138msgid "don't show"
    126139msgstr ""
    127140
    128 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:468
     141#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:476
    129142msgid "Earlier events"
    130143msgstr ""
    131144
    132 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:250
     145#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:243
    133146msgid "Edit"
    134147msgstr ""
    135148
    136 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:549
    137 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:599
     149#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:587
     150#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:637
    138151msgid "Edit ticket"
    139152msgstr ""
    140153
    141 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:571
    142 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1886
     154#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:609
     155#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2009
    143156msgid "End"
    144157msgstr ""
    145158
    146 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:502
     159#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:510
    147160msgid "End date"
    148161msgstr ""
     
    153166msgstr ""
    154167
    155 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2013
     168#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2145
    156169msgid "End date is earlier than start date"
    157170msgstr ""
    158171
    159 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:512
     172#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:520
    160173msgid "End time"
    161174msgstr ""
    162175
    163 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:715
    164 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:724
     176#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:766
     177#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:775
    165178msgid "Event ticket"
    166179msgstr ""
    167180
    168 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:652
     181#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:690
    169182msgid "Event:"
    170183msgstr ""
    171184
    172 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:553
     185#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:591
    173186msgid "Fill in the checkbox above to start sell tickets"
    174187msgstr ""
    175188
    176 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:671
     189#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:673
    177190msgid "Fill in the slug of the custom event page, or leave blank for default."
    178191msgstr ""
    179192
    180 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1143
     193#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1194
    181194msgid "First name"
    182195msgstr ""
    183196
    184 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:230
     197#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1274
    185198msgid "Friday"
    186199msgstr ""
     
    190203msgstr ""
    191204
    192 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:574
     205#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:576
    193206msgid "generated by the shortcodes in case of problems"
    194207msgstr ""
    195208
    196 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:588
     209#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:590
    197210msgid "Go to the event page"
    198211msgstr ""
    199212
    200 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:898
    201 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1462
    202 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:368
    203 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:412
     213#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:949
     214#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1523
     215#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:376
     216#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:420
    204217msgid "Goto the event"
    205218msgstr ""
     
    209222msgstr ""
    210223
    211 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:424
     224#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:426
    212225msgid ""
    213226"Here you can change the name for the event custom type that you see on the "
     
    216229
    217230#. Field slug
    218 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:350
     231#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:351
    219232msgid "Hide ticket from shop unless the event is in the future"
    220233msgstr ""
     
    228241msgstr ""
    229242
    230 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:453
     243#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:455
    231244msgid ""
    232245"If no custom page is defined, events will be displayed using the standard "
     
    234247msgstr ""
    235248
    236 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:522
     249#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:524
    237250msgid "If shown it will be localized into the selected language of the site"
    238251msgstr ""
    239252
    240 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:672
     253#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:674
    241254msgid "If the page does not exist the default will be used."
    242255msgstr ""
    243256
    244 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:469
     257#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:471
    245258msgid ""
    246259"if the ticket title should be automatically updated to the event title when "
     
    248261msgstr ""
    249262
    250 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:470
     263#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:472
    251264msgid ""
    252265"if tickets to past events and tickets to events that have been deleted "
     
    254267msgstr ""
    255268
    256 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:445
     269#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:447
    257270msgid ""
    258271"If you choose to use Google Maps, no maps will be displayed on the event "
     
    260273msgstr ""
    261274
    262 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:600
     275#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:602
    263276msgid ""
    264277"If you want to use Bootstrap modals your theme must be built with Bootstrap"
    265278msgstr ""
    266279
    267 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:499
     280#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:501
    268281msgid "Internally all dates are stored in the ISO-format (YYYY-mm-dd)."
    269282msgstr ""
    270283
    271 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:452
     284#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:454
    272285msgid "It is possible to create a custom page used to display the events."
    273286msgstr ""
    274287
    275 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:440
     288#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:442
    276289msgid ""
    277290"It is possible to use either Google Maps or OpenStreetMap to display the "
     
    283296msgstr ""
    284297
    285 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1143
     298#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1194
    286299msgid "Last name"
    287300msgstr ""
    288301
    289 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:428
     302#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:430
    290303msgid "Leave blank to keep the defaults."
    291304msgstr ""
    292305
    293306#. Field slug
    294 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:312
     307#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:313
    295308msgid "Link from event to ticket"
    296309msgstr ""
    297310
    298311#. Field slug
    299 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:324
     312#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:325
    300313msgid "Link from ticket to event"
    301314msgstr ""
    302315
    303 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:293
    304 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:524
    305 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1869
    306 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1891
     316#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:286
     317#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1992
     318#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2015
    307319#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-map.php:48
    308320msgid "Location"
    309321msgstr ""
    310322
    311 #. Field slug
    312 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:299
     323#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:545
     324msgid "Location address"
     325msgstr ""
     326
     327#. Field slug
     328#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:287
    313329msgid "Location map"
    314330msgstr ""
    315331
     332#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:534
     333msgid "Location Name"
     334msgstr ""
     335
    316336#. Field slug
    317337#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:260
    318 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:273
    319338msgid "Location of event"
    320339msgstr ""
     
    332351msgstr ""
    333352
    334 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:226
     353#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1270
    335354msgid "Monday"
    336355msgstr ""
     
    348367msgstr ""
    349368
    350 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:249
     369#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:242
    351370msgid "New"
    352371msgstr ""
    353372
    354 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2009
     373#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2141
    355374msgid "No end date given. The date has been set to today."
    356375msgstr ""
    357376
    358 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:658
     377#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:696
    359378msgid "No event corresponds to the event id in the URL"
    360379msgstr ""
    361380
    362 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:662
     381#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:700
    363382msgid "No event id in the URL"
    364383msgstr ""
    365384
    366 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1997
     385#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2129
    367386msgid "No event points to the ticket"
    368387msgstr ""
     
    372391msgstr ""
    373392
    374 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2005
     393#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2137
    375394msgid "No start date given. The date has been set to today."
    376395msgstr ""
    377396
    378 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:255
    379 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:256
     397#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:248
     398#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:249
    380399msgid "Nono"
    381400msgstr ""
    382401
    383 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:569
    384 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:619
    385 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:689
     402#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:571
     403#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:621
     404#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:691
    386405msgid "off"
    387406msgstr ""
    388407
    389 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:565
    390 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:615
    391 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:685
     408#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:567
     409#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:617
     410#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:687
    392411msgid "on"
    393412msgstr ""
    394413
    395 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:441
     414#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:443
    396415msgid ""
    397416"OpenStreetMap is a community-based free service, which is sufficient in most "
     
    399418msgstr ""
    400419
    401 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1142
    402 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1157
     420#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1193
     421#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1208
    403422msgid "Order"
    404423msgstr ""
    405424
    406 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1144
     425#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1195
    407426msgid "Paid"
    408427msgstr ""
    409428
    410 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1909
     429#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2034
    411430msgid "Participate"
    412431msgstr ""
    413432
    414 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:462
     433#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:464
    415434msgid ""
    416435"Please notice that a link from an event to a ticket will only appear when "
     
    418437msgstr ""
    419438
    420 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:601
     439#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:603
    421440msgid ""
    422441"Please notice that modals may not work properly with older versions of "
     
    424443msgstr ""
    425444
    426 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:446
     445#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:448
    427446msgid ""
    428447"Please notice that the maps presented by either of the map services contain "
     
    430449msgstr ""
    431450
    432 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1454
    433 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1478
     451#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1515
     452#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1539
    434453msgid "Product is orphaned"
    435454msgstr ""
    436455
    437 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1144
     456#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1195
    438457msgid "Quantity"
    439458msgstr ""
    440459
    441 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:573
     460#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:611
    442461msgid "Sales"
    443462msgstr ""
    444463
    445 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:231
     464#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1275
    446465msgid "Saturday"
    447466msgstr ""
    448467
    449 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:410
     468#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:412
    450469msgid "Save Settings"
    451470msgstr ""
    452471
    453 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:253
     472#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:246
    454473msgid "Search"
    455474msgstr ""
     
    467486msgstr ""
    468487
    469 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:498
     488#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:500
    470489msgid "Select the dateformat used in datepickers and displays."
    471490msgstr ""
    472491
    473 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:435
     492#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:437
    474493msgid ""
    475494"Select what should happen when a user clicks on an event in the calendar"
    476495msgstr ""
    477496
    478 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:536
     497#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:574
    479498msgid "Sell tickets in the shop"
    480499msgstr ""
    481500
    482 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:547
     501#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:585
    483502msgid "Shop link"
    484503msgstr ""
    485504
    486 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1451
    487 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1475
     505#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1512
     506#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1536
    488507msgid "Shortcode can only be used for products of the Hello Event category"
    489508msgstr ""
    490509
    491 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1180
    492 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1373
    493 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1401
    494 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1499
    495 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1513
    496 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1535
    497 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1551
    498 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1566
    499 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1582
    500 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1611
    501 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1632
    502 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1652
    503 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1667
    504 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1682
    505 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1702
    506 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1718
     510#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1231
     511#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1434
     512#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1462
     513#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1560
     514#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1574
     515#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1596
     516#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1618
     517#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1634
     518#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1649
     519#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1665
     520#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1694
     521#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1715
     522#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1735
     523#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1750
     524#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1765
     525#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1780
     526#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1795
     527#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1816
     528#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1832
    507529msgid "Shortcode can only be used when displaying events"
    508530msgstr ""
    509531
    510 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:521
     532#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:523
    511533msgid "Should the weekday name (eg. Monday) be shown in front of the date"
    512534msgstr ""
    513535
    514 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:516
     536#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:518
    515537msgid "show"
    516538msgstr ""
    517539
    518 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:592
     540#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:594
    519541msgid "Show event summary in a Bootstrap modal"
    520542msgstr ""
    521543
    522 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:596
     544#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:598
    523545msgid "Show event summary in a jQuery UI modal"
    524546msgstr ""
     
    528550msgstr ""
    529551
    530 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:570
    531 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1868
    532 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1881
     552#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:608
     553#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1991
     554#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2004
    533555msgid "Start"
    534556msgstr ""
    535557
    536 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:484
     558#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:492
    537559msgid "Start date"
    538560msgstr ""
     
    543565msgstr ""
    544566
    545 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:493
     567#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:501
    546568msgid "Start time"
    547569msgstr ""
    548570
    549 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:225
     571#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1269
    550572msgid "Sunday"
    551573msgstr ""
    552574
    553 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2031
     575#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:539
     576msgid ""
     577"The (optional) location name can for example be the name of a concert hall"
     578msgstr ""
     579
     580#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2163
    554581msgid "The event was saved but there are error(s)"
    555582msgstr ""
    556583
    557 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1342
     584#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1403
    558585msgid ""
    559586"The link from the event does not point to a ticket in Woocommerce. Save the "
     
    561588msgstr ""
    562589
    563 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2029
     590#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:550
     591msgid ""
     592"The location address should be detailed enough to geo-localize the place"
     593msgstr ""
     594
     595#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2161
    564596msgid "The product was saved but there are error(s)"
    565597msgstr ""
    566598
    567 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1344
     599#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1405
    568600msgid ""
    569601"The ticket exists in Woocommerce, and is published, but you need to set its "
     
    571603msgstr ""
    572604
    573 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1343
     605#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1404
    574606msgid "The ticket exists in Woocommerce, but you need to set it as published"
    575607msgstr ""
    576608
    577 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1183
    578 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1339
     609#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1234
     610#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1400
    579611msgid "The Woocommerce plugin is not activated"
    580612msgstr ""
    581613
    582 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:554
     614#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:592
    583615msgid ""
    584616"then after saving the event a new link will appear to allow you to set the "
     
    586618msgstr ""
    587619
    588 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2001
     620#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2133
    589621msgid "There is already a ticket for the event in the shop"
    590622msgstr ""
    591623
    592 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:436
     624#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:444
    593625msgid "There is no event to show"
    594626msgstr ""
    595627
    596 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1341
     628#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1402
    597629msgid "There is no link from the event to a ticket. Save the event again!"
    598630msgstr ""
    599631
    600 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:657
     632#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:659
    601633msgid "this page"
    602634msgstr ""
    603635
    604 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:229
     636#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1273
    605637msgid "Thursday"
    606638msgstr ""
    607639
    608 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1138
     640#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1189
    609641msgid "Ticket sales status"
    610642msgstr ""
    611643
    612 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:301
    613 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:572
    614 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:227
     644#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:302
     645#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:610
     646#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:233
    615647msgid "Tickets"
    616648msgstr ""
    617649
    618 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:552
     650#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:590
    619651msgid "Tickets are not yet available in the shop."
    620652msgstr ""
    621653
    622 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1370
    623 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1398
     654#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1227
     655#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1431
     656#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1459
     657#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2024
    624658msgid "Tickets not fully configured"
    625659msgstr ""
    626660
    627 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:610
     661#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:648
    628662msgid "Tickets sold"
    629663msgstr ""
    630664
    631 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:727
     665#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:778
    632666msgid "Tickets to Events"
    633667msgstr ""
    634668
    635 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1360
    636 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1381
     669#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1421
     670#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1442
    637671msgid "Tickets to participate are available in our shop"
    638672msgstr ""
     
    642676msgstr ""
    643677
    644 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:655
     678#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:657
    645679msgid "To obtain the API Key and read Google's explanation go to"
    646680msgstr ""
    647681
    648 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:558
     682#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:596
    649683msgid "To sell tickets Woocommerce needs to be installed and actived"
    650684msgstr ""
    651685
    652 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1166
     686#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1217
    653687msgid "Total"
    654688msgstr ""
    655689
    656 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:227
     690#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1271
    657691msgid "Tuesday"
    658692msgstr ""
     
    662696msgstr ""
    663697
    664 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2017
     698#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2149
    665699msgid "Unknown error"
    666700msgstr ""
    667701
    668 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:469
     702#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:477
    669703msgid "Upcoming events"
    670704msgstr ""
    671705
    672706#. Field slug
    673 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:338
     707#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:339
    674708msgid "Update the ticket title when the event title is changed"
    675709msgstr ""
    676710
    677 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:251
     711#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:244
    678712msgid "View"
    679713msgstr ""
    680714
    681 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:228
     715#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1272
    682716msgid "Wednesday"
    683717msgstr ""
     
    688722msgstr ""
    689723
    690 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:573
     724#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:575
    691725msgid "When switched on admins and editors will see debug information"
    692726msgstr ""
    693727
    694 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:454
     728#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:456
    695729msgid ""
    696730"When using a custom event page you must use shortcodes to show the event "
     
    698732msgstr ""
    699733
    700 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:442
     734#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:444
    701735msgid ""
    702736"With Google Maps comes many additional features (street view, driving "
     
    705739msgstr ""
    706740
    707 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:453
     741#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:455
    708742msgid "you can decide what information should be automatically inserted"
    709743msgstr ""
     
    714748msgstr ""
    715749
    716 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1340
     750#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1401
    717751msgid "You need to set the check box to sell tickets in the event!"
    718752msgstr ""
  • hello-event/trunk/readme.txt

    r3108893 r3117834  
    7373
    7474== Changelog ==
     75= 1.3.16
     76* New shortcode: hello-thumbnail-url, which does not include the IMG tag
     77* Added the property "Location Name" to the event
     78* Added shortcode hello-location-name to extract the Location Name
     79* Added shortcode hello-event-location-address as a synonym to hello-event-location
     80* Added the property "Advice" to the event
     81* Added shortcode hello-advice to extract the Advice
     82* Added a setting for automatical insertion of the Advice
     83* Modified the default presentation of events to include the Location Name and Advice
     84* Add end-time in the event list
     85* Accept slug in the shortcode hello-default-event
    7586= 1.3.15
    7687* Event custom page enabled also for calendar and tabbed display
Note: See TracChangeset for help on using the changeset viewer.