Plugin Directory

Changeset 3108893


Ignore:
Timestamp:
06/27/2024 05:40:38 PM (19 months ago)
Author:
christer_f
Message:
  • Event custom page enabled also for calendar and tabbed display
  • Minor fix in the width of thumbnails returned by the hello-thumbnail shortcode
  • Text parameter to the shortcode hello-event-ics
  • Text to book ticket in event list is localized
Location:
hello-event/trunk
Files:
2 deleted
16 edited
4 copied

Legend:

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

    r3103737 r3108893  
    1313 * Author URI:   https://www.tekomatik.com/about
    1414 *
    15  * Version:      1.3.14
     15 * Version:      1.3.15
    1616 *
    1717 * Text Domain:  hello-event
     
    4545}
    4646
    47 // if ( ! function_exists('debug_log')) {
    48 //   function debug_log ( $log )  {
    49 //     if ( is_array( $log ) || is_object( $log ) ) {
    50 //        error_log( print_r( $log, true ) );
    51 //     } else {
    52 //        error_log( $log );
    53 //     }
    54 // }
    55 // }
     47if ( ! function_exists('debug_log')) {
     48  function debug_log ( $log )  {
     49    if ( is_array( $log ) || is_object( $log ) ) {
     50       error_log( print_r( $log, true ) );
     51    } else {
     52       error_log( $log );
     53    }
     54 }
     55}
    5656
    5757
     
    13701370        // Don't know why at some point we had a fourth parameter here
    13711371        // $html = apply_filters('hello_event_display_link_to_ticket', $html, get_the_ID(), $link, 'shortcode');
    1372         return $html . '</div>';
     1372        // Why a closing DIV???
     1373        // return $html . '</div>';
     1374        return $html;
    13731375      }
    13741376      else { return $html . $this->debug_msg(__("Tickets not fully configured", 'hello-event') . ". ".
     
    15011503    if (get_post_type($id) == Hello_Event::EVENT_SLUG) {
    15021504      if ($args['width']) {
    1503         $html = '<div style="display:inline-block; width:'.$args['width'].'">';
     1505        $html = '<div style="display:inline-block; width:'.$args['width'].'px">';
    15041506        $html .= get_the_post_thumbnail($id);
    15051507        $html .= '</div>';
     
    16621664    $args = shortcode_atts( array(
    16631665           'id' => get_the_ID(),
     1666           'text' => __('Add to Calendar', 'hello-event'),
    16641667    ), $args );
    16651668    $args['id'] = isset($_GET['event_id']) ? $_GET['event_id'] : $args['id'];
     
    16681671      $id = $this->default_event_id;
    16691672    if (get_post_type($id) == Hello_Event::EVENT_SLUG) {
    1670       $btn_txt = __('Add to Calendar', 'hello-event');
     1673      $btn_txt = $args['text'];
    16711674      $html = "<form method='post' action=#>";
    16721675      $html .=  "<input type='hidden' name='get_ics' value='" . $id  . "'/>";
     
    17041707      $this->default_event_id = $args['id'];
    17051708  }
    1706 
    17071709
    17081710 
  • hello-event/trunk/includes/hello-event-calendar.php

    r2946985 r3108893  
    3131  // Called via ajax
    3232  global $hello_event_object; // Will give us access to its methods
    33   // debug_log("AJAX GET_EVENTS HERE");
    34   // debug_log(print_r($_REQUEST, true));
    3533  remove_filter( 'the_title', 'wptexturize' ); // Stop WP from converting quotes into html quotes
    3634  $start = $_REQUEST['start'] ;
    3735  $end = $_REQUEST['end'] ;
     36  $event_page = isset($_REQUEST['event_page']) ? $_REQUEST['event_page'] : false;
    3837  // Fullcalendar needs 1 day to be added to the end date
    3938  // Event reguests from fullcalendar has an additional parameter: 'fix_end_date
     
    6867    $id = get_the_ID();
    6968    // debug_log("On with ID = " . $id);
    70     $url = get_permalink($id);
     69    // Take into account custom event page when linking
     70    // $url = get_permalink($id);
     71    global $hello_event_object;
     72    $url = $hello_event_object->link_to_event_page(get_the_permalink(), $id, $event_page);
    7173    $start_date = get_post_meta( $id, 'start_date', true );
    7274    $end_date = get_post_meta( $id, 'end_date', true );
     
    169171      'view' => 'month', // can be month, week or day
    170172      'view_selector' => false,
     173      'event_page' => false, // can be set to the slug of a custom page to show the events
    171174    ), $args );
    172175   
     
    184187                var title_long = event._def.extendedProps.title_long;
    185188                var description = event._def.extendedProps.description;
     189        //alert('one');
     190        //bootbox.alert('Ready for bootbox with description = ' );
    186191        bootbox.alert({
    187192          message: ''+description,
     
    189194        });
    190195      }";
     196      // debug_log("With boostratp: ". $evclick);
     197      $evclickX = "
     198        function(info) {alert('top');}
     199        ";
    191200    }
    192201    elseif ($modals == 'jquery') {
     
    251260     // $html .= '    alert("adminajax="+adminAjax);';
    252261    $html .= '
     262      var eventPage = "'.$args['event_page'].'";
    253263            var calendarEl = document.getElementById("cf_calendar");
    254264            var calendar = new FullCalendar.Calendar(calendarEl, {
     
    281291                    end: end,
    282292                  fix_end_date: true,
     293                  event_page: eventPage,
    283294                  },
    284295                  error: function(obj, status, err) {
  • hello-event/trunk/includes/hello-event-list-events.php

    r3103736 r3108893  
    3737           'select' => 'future', // Can be 'past' or 'future'
    3838           'show' => 'default',   // Can be 'minimal', 'default', 'full', 'widget', 'compact', 'gallery'
    39            'width' => false, // Optionally Used in widget show
     39           // 'width' => false, // Optionally Used in widget show
    4040           'link_to_book' => false, // Do we want to display a "Book Now" button?
    4141           // 'language' => false, // Can be used in date presentations
     
    201201              list($link, $rc) = $hello_event_object->get_link_to_product(get_the_ID(), true);
    202202              if ($link) {
    203                 $ticket_link = '<a href="'. $link . '">' . "Book" . '</a>';
     203                $ticket_link = '<a href="'. $link . '">' . __("Book now", 'hello-event') . '</a>';
    204204                $ticket_link = apply_filters('hello_event_display_link_to_ticket', $html, get_the_ID(), $link);
    205205                $html .= '<div class="ticket-link">' . $ticket_link . '</div>';
     
    447447           'show' => 'default',
    448448           'link_to_book' => false,
     449           'event_page' => false,
    449450       ), $args );
    450451    wp_enqueue_script('jquery-ui-tabs');
     
    456457      'select' => 'past',
    457458      'limit' => $args['limit'],
    458       'show' => $args['show']
     459      'show' => $args['show'],
     460      'event_page' => $args['event_page'],
    459461    ));
    460462    $future = $this->handle_shortcode_event_list(array(
     
    463465        'show' => $args['show'],
    464466        'link_to_book' => $args['link_to_book'],
    465     ));
     467        'event_page' => $args['event_page'],    ));
    466468    $past_txt = __('Earlier events', 'hello-event');
    467469    $future_txt = __('Upcoming events', 'hello-event');
  • hello-event/trunk/includes/hello-event-openstreet-map.php

    r3103737 r3108893  
    44*
    55*/
     6
     7// Lagt till admin_enq scripts + alltid anropa enqu resources
     8// Saknas fortfarande div map i editors
    69
    710namespace Tekomatik\HelloEvent;
     
    1215    add_action('wp_enqueue_scripts', array($this, 'register_resources'));
    1316    add_shortcode( 'hello-event-openstreet-map', array($this, 'openstreet_map'));
     17    add_action('admin_enqueue_scripts', array($this, 'register_resources'));
    1418  }
    1519
     
    2327      wp_register_style( 'hello_event_maps', plugins_url('css/frontend-maps.css', __FILE__) );
    2428    }
     29    // $this->enqueue_resources_if_needed();
    2530  }
    2631 
     
    5661      $html = '';
    5762      // $html .= "LAT=$lat LNG=$lng LOCATION=$location";
    58       $html .= '<div id="open-map""></div>';
     63      $html .= '<div id="open-map"></div>';
    5964      $html .= "<script>var lat=".$lat.";" ;
    6065      $html .= "        var lng=".$lng."; ";
  • hello-event/trunk/includes/hello-event-settings.php

    r3103737 r3108893  
    561561    <p class="description">
    562562    <?php _e( 'If you want to use Bootstrap modals your theme must be built with Bootstrap', 'hello-event' ); ?><br/>
    563     <?php _e( 'Please notice that modals do not work properly with Bootstrap v4.0', 'hello-event' ); ?><br/>
     563    <?php _e( 'Please notice that modals may not work properly with older versions of Bootstrap', 'hello-event' ); ?><br/>
    564564  </p>
    565565    <?php
  • hello-event/trunk/languages/hello-event-backup-202406260554220.pot~

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

    • Property svn:executable deleted
  • hello-event/trunk/languages/hello-event-fr_FR.l10n.php

    r3103737 r3108893  
    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-16 13:34+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','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.','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','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 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','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 do not work properly with Bootstrap v4.0'=>'Veuillez noter que les modals ne fonctionnent pas correctement avec Bootstrap v4.0','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','Save Settings'=>'Enregister réglages','Search'=>'Chercher','See in Open Street Map'=>'Voir dans Open Street Map','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','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','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','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','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-06-26 05:57+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.','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','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 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','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','Save Settings'=>'Enregister réglages','Search'=>'Chercher','See in Open Street Map'=>'Voir dans Open Street Map','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','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','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','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','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','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

    r3103737 r3108893  
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: 2020-05-04 14:59+0000\n"
    6 "PO-Revision-Date: 2024-06-16 13:34+0000\n"
     6"PO-Revision-Date: 2024-06-26 05:57+0000\n"
    77"Last-Translator: Christer Fernstrom <[email protected]>\n"
    88"Language-Team: French (France)\n"
     
    2121"Woocommerce"
    2222
     23#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:236
    2324#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:237
    24 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:238
    2525msgid "Add New"
    2626msgstr "Ajouter"
    2727
    28 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1636
     28#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1666
    2929msgid "Add to Calendar"
    3030msgstr "Ajouter au calendrier"
     
    3535msgstr "Bouton ajouter-au-calendrier"
    3636
    37 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:242
     37#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:241
    3838msgid "All"
    3939msgstr "Tous les"
     
    5555"par mois,"
    5656
    57 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1561
    58 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1580
     57#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1586
     58#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1607
    5959msgid "at"
    6060msgstr "à"
     
    6565msgstr "Contenu inséré automatiquement"
    6666
     67#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:203
     68msgid "Book now"
     69msgstr "Réserver maintenant"
     70
    6771#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:429
    6872msgid ""
     
    98102msgstr "Page d'événement personnalisée"
    99103
    100 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1131
     104#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1130
    101105msgid "Date"
    102106msgstr "Date"
     
    112116msgstr "Format date"
    113117
    114 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:275
     118#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:274
    115119msgid "Dates and time"
    116120msgstr "Date et l'heure"
     
    128132msgstr "Par defaut \"Event\" en singulier et \"Events\" au pluriel."
    129133
    130 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:466
     134#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:468
    131135msgid "Earlier events"
    132136msgstr "Evénements  précédents"
    133137
    134 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:240
     138#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:239
    135139msgid "Edit"
    136140msgstr "Modifier"
    137141
    138 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:539
    139 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:589
     142#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:538
     143#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:588
    140144msgid "Edit ticket"
    141145msgstr "Modifier billet"
    142146
    143 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:561
    144 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1797
     147#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:560
     148#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1864
    145149msgid "End"
    146150msgstr "Fin"
    147151
    148 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:492
     152#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:491
    149153msgid "End date"
    150154msgstr "Date de fin"
     
    155159msgstr "Date et heure de fin de l'événement"
    156160
    157 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1924
     161#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1991
    158162msgid "End date is earlier than start date"
    159163msgstr "La date de fin est avant la date de début"
    160164
    161 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:502
     165#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:501
    162166msgid "End time"
    163167msgstr "Heure de fin"
    164168
    165 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:705
    166 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:714
     169#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:704
     170#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:713
    167171msgid "Event ticket"
    168172msgstr "Billet d'événement"
    169173
    170 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:642
     174#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:641
    171175msgid "Event:"
    172176msgstr "Evénement :"
    173177
    174 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:543
     178#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:542
    175179msgid "Fill in the checkbox above to start sell tickets"
    176180msgstr "Cocher la case ci-dessus pour commencer la vente de billets"
     
    181185"Renseigner le slug de la page personnalisée ou laisser vide pour défaut"
    182186
    183 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133
     187#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132
    184188msgid "First name"
    185189msgstr "Prénom"
     
    197201msgstr "Aller à la page de l'événement"
    198202
    199 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:888
    200 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1437
     203#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:887
     204#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1440
    201205#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:368
    202206#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:412
     
    298302msgstr "Maintenir les billets synchronisés avec les événements"
    299303
    300 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133
     304#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132
    301305msgid "Last name"
    302306msgstr "Nom"
     
    316320msgstr "Lien de l'événement vers le billet "
    317321
    318 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:283
    319 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:514
    320 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1780
    321 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1802
     322#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:282
     323#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:513
     324#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1847
     325#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1869
    322326#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-map.php:48
    323327msgid "Location"
     
    359363msgstr "Nommage des événements"
    360364
    361 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:239
     365#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:238
    362366msgid "New"
    363367msgstr "Nouveau"
    364368
    365 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1920
     369#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1987
    366370msgid "No end date given. The date has been set to today."
    367371msgstr "Aucune date de fin donnée. La date d'aujourd'hui est utilisée."
    368372
    369 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:648
     373#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:647
    370374msgid "No event corresponds to the event id in the URL"
    371375msgstr ""
    372376"Aucun événement ne correspond à l'identifiant de l'événement dans l'URL"
    373377
    374 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:652
     378#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:651
    375379msgid "No event id in the URL"
    376380msgstr "Aucun identifiant d'événement dans l'URL"
    377381
    378 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1908
     382#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1975
    379383msgid "No event points to the ticket"
    380384msgstr "Aucun événement est associé au billet"
     
    384388msgstr "Aucune position donnée"
    385389
    386 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1916
     390#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1983
    387391msgid "No start date given. The date has been set to today."
    388392msgstr "Aucune date de début donnée. La date d'aujourd'hui est utilisée."
    389393
     394#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:244
    390395#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:245
    391 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:246
    392396msgid "Nono"
    393397msgstr "Aucun"
     
    413417"suffisant dans la plupart des cas."
    414418
    415 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132
    416 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1147
     419#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1131
     420#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1146
    417421msgid "Order"
    418422msgstr "Commande"
    419423
    420 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1134
     424#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133
    421425msgid "Paid"
    422426msgstr "Réglé"
    423427
    424 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1820
     428#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1887
    425429msgid "Participate"
    426430msgstr "Participer"
     
    435439
    436440#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:563
    437 msgid "Please notice that modals do not work properly with Bootstrap v4.0"
    438 msgstr ""
    439 "Veuillez noter que les modals ne fonctionnent pas correctement avec "
    440 "Bootstrap v4.0"
     441msgid ""
     442"Please notice that modals may not work properly with older versions of "
     443"Bootstrap"
     444msgstr ""
     445"Veuillez noter que les modaux peuvent ne pas fonctionner correctement avec "
     446"les anciennes versions de Bootstrap"
    441447
    442448#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:431
     
    449455"fournisseur de service."
    450456
    451 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1429
    452 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1453
     457#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1432
     458#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1456
    453459msgid "Product is orphaned"
    454460msgstr "Aucun événement correspond au produit"
    455461
    456 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1134
     462#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133
    457463msgid "Quantity"
    458464msgstr "Quantité"
    459465
    460 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:563
     466#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:562
    461467msgid "Sales"
    462468msgstr "Ventes"
     
    466472msgstr "Enregister réglages"
    467473
    468 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:243
     474#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:242
    469475msgid "Search"
    470476msgstr "Chercher"
     
    489495"calendrier"
    490496
    491 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:526
     497#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:525
    492498msgid "Sell tickets in the shop"
    493499msgstr "Vendre des billets dans la boutique"
    494500
    495 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:537
     501#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:536
    496502msgid "Shop link"
    497503msgstr "Liens vers la boutique"
    498504
    499 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1426
    500 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1450
     505#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1429
     506#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1453
    501507msgid "Shortcode can only be used for products of the Hello Event category"
    502508msgstr ""
     
    504510"Event"
    505511
    506 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1170
    507 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1352
    508 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1376
    509 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1472
    510 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1484
    511 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1496
    512 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1510
    513 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1523
    514 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1537
    515 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1564
    516 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1583
    517 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1601
    518 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1614
    519 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1627
     512#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1169
     513#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1351
     514#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1379
     515#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1477
     516#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1491
     517#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1513
     518#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1529
     519#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1544
     520#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1560
     521#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1589
     522#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1610
     523#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1630
     524#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1645
     525#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1660
     526#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1680
     527#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1696
    520528msgid "Shortcode can only be used when displaying events"
    521529msgstr "Shortcode à utiliser uniquement avec des événements"
     
    533541msgstr "Slug de la page personnalisée"
    534542
    535 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:560
    536 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1779
    537 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1792
     543#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:559
     544#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1846
     545#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1859
    538546msgid "Start"
    539547msgstr "Début"
    540548
    541 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:474
     549#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:473
    542550msgid "Start date"
    543551msgstr "Date de début"
     
    548556msgstr "Date et heure de début de l'événement"
    549557
    550 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:483
     558#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:482
    551559msgid "Start time"
    552560msgstr "Heure de début"
    553561
    554 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1942
     562#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2009
    555563msgid "The event was saved but there are error(s)"
    556564msgstr "L'événement a été enregistré mais il y a des erreur(s)"
    557565
    558 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1321
     566#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1320
    559567msgid ""
    560568"The link from the event does not point to a ticket in Woocommerce. Save the "
     
    564572"Veuillez enregistrer l'événement de nouveau !"
    565573
    566 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1940
     574#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2007
    567575msgid "The product was saved but there are error(s)"
    568576msgstr "Le billet a été enregistré mais il y a des erreur(s)"
    569577
    570 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1323
     578#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1322
    571579msgid ""
    572580"The ticket exists in Woocommerce, and is published, but you need to set its "
     
    576584"devez aussi définir son prix"
    577585
    578 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1322
     586#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1321
    579587msgid "The ticket exists in Woocommerce, but you need to set it as published"
    580588msgstr ""
     
    582590"en publié"
    583591
    584 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1173
    585 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1318
     592#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1172
     593#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1317
    586594msgid "The Woocommerce plugin is not activated"
    587595msgstr "L'extension Woocommerce n'est pas activée"
    588596
    589 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:544
     597#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:543
    590598msgid ""
    591599"then after saving the event a new link will appear to allow you to set the "
     
    595603"permettra de définir tarif et quantité de billets."
    596604
    597 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1912
     605#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1979
    598606msgid "There is already a ticket for the event in the shop"
    599607msgstr "Il y a déjà un ticket pour l'événement dans la boutique"
     
    603611msgstr "Il n'y a pas d'événement à montrer"
    604612
    605 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1320
     613#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1319
    606614msgid "There is no link from the event to a ticket. Save the event again!"
    607615msgstr ""
     
    613621msgstr "cette page"
    614622
    615 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1128
     623#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1127
    616624msgid "Ticket sales status"
    617625msgstr "Situation de vente de billets"
    618626
    619 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:291
    620 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:562
     627#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:290
     628#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:561
    621629#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:227
    622630msgid "Tickets"
    623631msgstr "Billets"
    624632
    625 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:542
     633#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:541
    626634msgid "Tickets are not yet available in the shop."
    627635msgstr "Des billets ne sont pas encore en vente dans la boutique."
    628636
    629 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1349
    630 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1373
     637#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1348
     638#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1376
    631639msgid "Tickets not fully configured"
    632640msgstr "Les billets ne sont pas complètement configurés"
    633641
    634 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:600
     642#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:599
    635643msgid "Tickets sold"
    636644msgstr "Billets vendus"
    637645
    638 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:717
     646#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:716
    639647msgid "Tickets to Events"
    640648msgstr "billets d'événements"
    641649
    642 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1339
    643 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1360
     650#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1338
     651#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1359
    644652msgid "Tickets to participate are available in our shop"
    645653msgstr "Des billets pour participer sont en vente dans notre boutique"
     
    653661msgstr "Pour obtenir la clé API et lire l'explication de Google, allez à"
    654662
    655 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:548
     663#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:547
    656664msgid "To sell tickets Woocommerce needs to be installed and actived"
    657665msgstr "Afine de vendre des billet, Woocommerce doit être installé et activé"
    658666
    659 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1156
     667#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1155
    660668msgid "Total"
    661669msgstr "Total"
     
    665673msgstr "Service de cartographie non defini"
    666674
    667 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1928
     675#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1995
    668676msgid "Unknown error"
    669677msgstr "Erreur inconnue"
    670678
    671 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:467
     679#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:469
    672680msgid "Upcoming events"
    673681msgstr ""
     
    680688"Mettre à jour le titre du ticket lorsque le titre de l'événement est modifié"
    681689
    682 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:241
     690#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:240
    683691msgid "View"
    684692msgstr "Voir"
     
    719727"la carte"
    720728
    721 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1319
     729#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1318
    722730msgid "You need to set the check box to sell tickets in the event!"
    723731msgstr "Vous devez cocher la case pour vendre des billets !"
  • hello-event/trunk/languages/hello-event-nl_NL.l10n.php

    r3103737 r3108893  
    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-16 13:37+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','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.','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','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 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','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 do not work properly with Bootstrap v4.0'=>'Gelieve op te merken dat modals niet goed wereken met Bootstrap v4.0','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','Save Settings'=>'Bewaar instellingen','Search'=>'Zoek','See in Open Street Map'=>'Bekijk in Open Street Map','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','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','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','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','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','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-06-26 06:00+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.','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','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 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','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','Save Settings'=>'Bewaar instellingen','Search'=>'Zoek','See in Open Street Map'=>'Bekijk in Open Street Map','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','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','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','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','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','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

    r3103737 r3108893  
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: 2023-07-31 09:22+0000\n"
    6 "PO-Revision-Date: 2024-06-16 13:37+0000\n"
     6"PO-Revision-Date: 2024-06-26 06:00+0000\n"
    77"Last-Translator: \n"
    88"Language-Team: Dutch\n"
     
    2121"Woocommerce"
    2222
     23#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:236
    2324#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:237
    24 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:238
    2525msgid "Add New"
    2626msgstr "Nieuw toevoegen"
    2727
    28 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1636
     28#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1666
    2929msgid "Add to Calendar"
    3030msgstr "Voeg toe aan Kalender"
     
    3535msgstr "Voeg-toe-aan-Kalender knop"
    3636
    37 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:242
     37#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:241
    3838msgid "All"
    3939msgstr "Alle"
     
    5454"Vanaf juli 2018 zal je 28500 verzoeken per maand gratis kunnen uitvoeren."
    5555
    56 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1561
    57 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1580
     56#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1586
     57#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1607
    5858msgid "at"
    5959msgstr "om"
     
    6464msgstr "Automatisch toegevoegde inhoud"
    6565
     66#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:203
     67msgid "Book now"
     68msgstr "Boek nu"
     69
    6670#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:429
    6771msgid ""
     
    97101msgstr "Aangepaste evenementenpagina"
    98102
    99 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1131
     103#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1130
    100104msgid "Date"
    101105msgstr "Datum"
     
    111115msgstr "Datum formaat"
    112116
    113 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:275
     117#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:274
    114118msgid "Dates and time"
    115119msgstr "Data en tijden"
     
    128132"Standaard is het \"Evenement\" in enkelvoud en \"Evenementen\" in meervoud."
    129133
    130 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:466
     134#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:468
    131135msgid "Earlier events"
    132136msgstr "Eerdere evenementen"
    133137
    134 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:240
     138#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:239
    135139msgid "Edit"
    136140msgstr "Pas aan"
    137141
    138 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:539
    139 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:589
     142#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:538
     143#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:588
    140144msgid "Edit ticket"
    141145msgstr "Pas ticket aan"
    142146
    143 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:561
    144 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1797
     147#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:560
     148#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1864
    145149msgid "End"
    146150msgstr "Einde"
    147151
    148 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:492
     152#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:491
    149153msgid "End date"
    150154msgstr "Einddatum"
     
    155159msgstr "Einddatum en -tijd van het evenement"
    156160
    157 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1924
     161#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1991
    158162msgid "End date is earlier than start date"
    159163msgstr "De einddatum is eerder dan de startdatum"
    160164
    161 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:502
     165#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:501
    162166msgid "End time"
    163167msgstr "Eindtijd"
    164168
    165 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:705
    166 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:714
     169#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:704
     170#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:713
    167171msgid "Event ticket"
    168172msgstr "Evenement ticket"
    169173
    170 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:642
     174#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:641
    171175msgid "Event:"
    172176msgstr "Evenement:"
    173177
    174 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:543
     178#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:542
    175179msgid "Fill in the checkbox above to start sell tickets"
    176180msgstr "Vul de bovenstaande checkbox in om tickets te kunnen gaan verkopen"
     
    182186"leeg."
    183187
    184 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133
     188#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132
    185189msgid "First name"
    186190msgstr "Voornaam"
     
    198202msgstr "Ga naar de evenement pagina"
    199203
    200 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:888
    201 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1437
     204#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:887
     205#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1440
    202206#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:368
    203207#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:412
     
    296300msgstr "Hou de tickets gesynchroniseerd met de evenementen"
    297301
    298 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133
     302#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132
    299303msgid "Last name"
    300304msgstr "Achternaam"
     
    314318msgstr "Link van ticket naar evenement"
    315319
    316 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:283
    317 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:514
    318 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1780
    319 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1802
     320#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:282
     321#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:513
     322#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1847
     323#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1869
    320324#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-map.php:48
    321325msgid "Location"
     
    359363msgstr "Evenementen benoemen"
    360364
    361 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:239
     365#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:238
    362366msgid "New"
    363367msgstr "Nieuw"
    364368
    365 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1920
     369#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1987
    366370msgid "No end date given. The date has been set to today."
    367371msgstr "Geen einddatum opgegeven. De datum is op vandaag gezet."
    368372
    369 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:648
     373#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:647
    370374msgid "No event corresponds to the event id in the URL"
    371375msgstr "Er is geen evenement dat overeenkomt met het evenement id in de URL"
    372376
    373 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:652
     377#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:651
    374378msgid "No event id in the URL"
    375379msgstr "Geen evenement id in de URL"
    376380
    377 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1908
     381#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1975
    378382msgid "No event points to the ticket"
    379383msgstr "Geen evenement verwijst naar dit ticket"
     
    383387msgstr "Geen locatie opgegeven"
    384388
    385 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1916
     389#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1983
    386390msgid "No start date given. The date has been set to today."
    387391msgstr "Geen startdatum opgegeven. De datum is op vandaag gezet."
    388392
     393#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:244
    389394#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:245
    390 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:246
    391395msgid "Nono"
    392396msgstr "Neenee"
     
    412416"de meeste gevallen."
    413417
    414 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132
    415 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1147
     418#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1131
     419#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1146
    416420msgid "Order"
    417421msgstr "Bestel"
    418422
    419 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1134
     423#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133
    420424msgid "Paid"
    421425msgstr "Betaald"
    422426
    423 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1820
     427#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1887
    424428msgid "Participate"
    425429msgstr "Neem deel"
     
    434438
    435439#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:563
    436 msgid "Please notice that modals do not work properly with Bootstrap v4.0"
    437 msgstr "Gelieve op te merken dat modals niet goed wereken met Bootstrap v4.0"
     440msgid ""
     441"Please notice that modals may not work properly with older versions of "
     442"Bootstrap"
     443msgstr ""
     444"Houd er rekening mee dat modals mogelijk niet goed werken met oudere versies "
     445"van Bootstrap"
    438446
    439447#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:431
     
    445453"contact informatie naar de service leverancier bevatten."
    446454
    447 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1429
    448 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1453
     455#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1432
     456#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1456
    449457msgid "Product is orphaned"
    450458msgstr "Product is verweesd"
    451459
    452 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1134
     460#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133
    453461msgid "Quantity"
    454462msgstr "Hoeveelheid"
    455463
    456 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:563
     464#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:562
    457465msgid "Sales"
    458466msgstr "Verkoop"
     
    462470msgstr "Bewaar instellingen"
    463471
    464 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:243
     472#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:242
    465473msgid "Search"
    466474msgstr "Zoek"
     
    485493"de kalender"
    486494
    487 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:526
     495#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:525
    488496msgid "Sell tickets in the shop"
    489497msgstr "Verkoop tickets in de winkel"
    490498
    491 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:537
     499#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:536
    492500msgid "Shop link"
    493501msgstr "Link naar de winkel"
    494502
    495 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1426
    496 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1450
     503#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1429
     504#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1453
    497505msgid "Shortcode can only be used for products of the Hello Event category"
    498506msgstr ""
     
    500508"categorie"
    501509
    502 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1170
    503 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1352
    504 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1376
    505 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1472
    506 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1484
    507 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1496
    508 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1510
    509 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1523
    510 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1537
    511 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1564
    512 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1583
    513 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1601
    514 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1614
    515 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1627
     510#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1169
     511#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1351
     512#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1379
     513#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1477
     514#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1491
     515#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1513
     516#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1529
     517#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1544
     518#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1560
     519#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1589
     520#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1610
     521#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1630
     522#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1645
     523#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1660
     524#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1680
     525#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1696
    516526msgid "Shortcode can only be used when displaying events"
    517527msgstr "Shortcode kan enkel gebruikt worden bij het tonen van evenementen"
     
    529539msgstr "Slug voor aangepaste evenementenpagina"
    530540
    531 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:560
    532 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1779
    533 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1792
     541#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:559
     542#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1846
     543#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1859
    534544msgid "Start"
    535545msgstr "Start"
    536546
    537 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:474
     547#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:473
    538548msgid "Start date"
    539549msgstr "Startdatum"
     
    544554msgstr "Startdatum en -tijd van het evenement"
    545555
    546 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:483
     556#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:482
    547557msgid "Start time"
    548558msgstr "Starttijd"
    549559
    550 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1942
     560#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2009
    551561msgid "The event was saved but there are error(s)"
    552562msgstr "Het evenement werd bewaard maar er zijn fout(en)"
    553563
    554 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1321
     564#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1320
    555565msgid ""
    556566"The link from the event does not point to a ticket in Woocommerce. Save the "
     
    560570"het ticket opnieuw!"
    561571
    562 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1940
     572#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2007
    563573msgid "The product was saved but there are error(s)"
    564574msgstr "Het product werd bewaard, maar er zijn fout(en)"
    565575
    566 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1323
     576#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1322
    567577msgid ""
    568578"The ticket exists in Woocommerce, and is published, but you need to set its "
     
    572582"nog instellen"
    573583
    574 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1322
     584#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1321
    575585msgid "The ticket exists in Woocommerce, but you need to set it as published"
    576586msgstr "Het ticket bestaat in WooCommerce, maar moet nog gepubliceerd worden"
    577587
    578 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1173
    579 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1318
     588#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1172
     589#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1317
    580590msgid "The Woocommerce plugin is not activated"
    581591msgstr "De WooCommerce plugin is niet geactiveerd"
    582592
    583 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:544
     593#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:543
    584594msgid ""
    585595"then after saving the event a new link will appear to allow you to set the "
     
    589599"je de prijs en aantal tickets kan ingeven"
    590600
    591 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1912
     601#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1979
    592602msgid "There is already a ticket for the event in the shop"
    593603msgstr "Er is reeds een ticket voor dit evenement in de shop"
     
    597607msgstr "Er is geen evenement om te tonen"
    598608
    599 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1320
     609#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1319
    600610msgid "There is no link from the event to a ticket. Save the event again!"
    601611msgstr ""
     
    607617msgstr "deze pagina"
    608618
    609 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1128
     619#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1127
    610620msgid "Ticket sales status"
    611621msgstr "Status ticketverkoop"
    612622
    613 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:291
    614 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:562
     623#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:290
     624#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:561
    615625#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:227
    616626msgid "Tickets"
    617627msgstr "Tickets"
    618628
    619 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:542
     629#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:541
    620630msgid "Tickets are not yet available in the shop."
    621631msgstr "Er zijn nog geen tickets verkrijgbaar in de winkel"
    622632
    623 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1349
    624 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1373
     633#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1348
     634#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1376
    625635msgid "Tickets not fully configured"
    626636msgstr "De tickets zijn niet geheel geconfigureerd"
    627637
    628 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:600
     638#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:599
    629639msgid "Tickets sold"
    630640msgstr "Verkochte tickets"
    631641
    632 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:717
     642#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:716
    633643msgid "Tickets to Events"
    634644msgstr "Tickets voor evenementen"
    635645
    636 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1339
    637 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1360
     646#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1338
     647#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1359
    638648msgid "Tickets to participate are available in our shop"
    639649msgstr "Deelnametickets zijn verkrijgbaar in onze winkel"
     
    647657msgstr "Om een API sleutel te verkrijgen en Google's uitleg te lezen ga naar"
    648658
    649 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:548
     659#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:547
    650660msgid "To sell tickets Woocommerce needs to be installed and actived"
    651661msgstr ""
     
    653663"zijn"
    654664
    655 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1156
     665#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1155
    656666msgid "Total"
    657667msgstr "Totaal"
     
    661671msgstr "Niet gedefinieerde map services"
    662672
    663 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1928
     673#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1995
    664674msgid "Unknown error"
    665675msgstr "Onbekende fout"
    666676
    667 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:467
     677#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:469
    668678msgid "Upcoming events"
    669679msgstr "Komende evenementen"
     
    674684msgstr "Pas de ticket titel aan als de evenement titel is aangepast"
    675685
    676 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:241
     686#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:240
    677687msgid "View"
    678688msgstr "Bekijk"
     
    711721"worden"
    712722
    713 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1319
     723#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1318
    714724msgid "You need to set the check box to sell tickets in the event!"
    715725msgstr ""
  • hello-event/trunk/languages/hello-event-sv_SE.l10n.php

    r3103737 r3108893  
    11<?php
    2 return ['po-revision-date'=>'2024-06-16 13:35+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','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','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.','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','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 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','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 do not work properly with Bootstrap v4.0'=>'Modals fungerar inte korrekt med Bootstrap 4.0','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','Save Settings'=>'Spara inställningar','Search'=>'Sök','See in Open Street Map'=>'Visa med Open STreet Map','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','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','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','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','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','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-06-26 05:58+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','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.','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','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 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','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','Save Settings'=>'Spara inställningar','Search'=>'Sök','See in Open Street Map'=>'Visa med Open STreet Map','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','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','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','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','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','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

    r3103737 r3108893  
    33msgid ""
    44msgstr ""
    5 "PO-Revision-Date: 2024-06-16 13:35+0000\n"
     5"PO-Revision-Date: 2024-06-26 05:58+0000\n"
    66"MIME-Version: 1.0\n"
    77"Content-Type: text/plain; charset=UTF-8\n"
     
    2323"Woocommerce"
    2424
     25#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:236
    2526#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:237
    26 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:238
    2727msgid "Add New"
    2828msgstr "Lägg till ny"
    2929
    30 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1636
     30#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1666
    3131msgid "Add to Calendar"
    3232msgstr "Lägg till i kalender"
     
    3737msgstr "Lägg-till-i-kalender-knapp"
    3838
    39 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:242
     39#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:241
    4040msgid "All"
    4141msgstr "Alla"
     
    5757"gratis,"
    5858
    59 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1561
    60 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1580
     59#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1586
     60#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1607
    6161msgid "at"
    6262msgstr "kl."
     
    6767msgstr "Auto-infogat innehåll"
    6868
     69#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:203
     70msgid "Book now"
     71msgstr "Boka plats nu"
     72
    6973#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:429
    7074msgid ""
     
    100104msgstr "Anpassad sida for evenemang"
    101105
    102 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1131
     106#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1130
    103107msgid "Date"
    104108msgstr "Datum"
     
    114118msgstr "Datumformat"
    115119
    116 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:275
     120#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:274
    117121msgid "Dates and time"
    118122msgstr "Datum och tid"
     
    130134msgstr "Standard är \"Event\" i singularis och \"Events\" i pluralis."
    131135
    132 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:466
     136#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:468
    133137msgid "Earlier events"
    134138msgstr "Tidigare evenemang"
    135139
    136 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:240
     140#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:239
    137141msgid "Edit"
    138142msgstr "Redigera"
    139143
    140 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:539
    141 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:589
     144#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:538
     145#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:588
    142146msgid "Edit ticket"
    143147msgstr "Ändra biljett"
    144148
    145 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:561
    146 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1797
     149#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:560
     150#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1864
    147151msgid "End"
    148152msgstr "Slut"
    149153
    150 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:492
     154#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:491
    151155msgid "End date"
    152156msgstr "Slutdatum"
     
    157161msgstr "Slutdatum och -tid för evenemang"
    158162
    159 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1924
     163#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1991
    160164msgid "End date is earlier than start date"
    161165msgstr "Slutdatum är angiven som tidigare än stardatum"
    162166
    163 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:502
     167#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:501
    164168msgid "End time"
    165169msgstr "Sluttid"
    166170
    167 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:705
    168 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:714
     171#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:704
     172#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:713
    169173msgid "Event ticket"
    170174msgstr "Biljett till evenemang"
    171175
    172 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:642
     176#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:641
    173177msgid "Event:"
    174178msgstr "Evenemang:"
    175179
    176 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:543
     180#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:542
    177181msgid "Fill in the checkbox above to start sell tickets"
    178182msgstr "Makera checkboxen ovan för att sälja biljetter"
     
    183187"Fyll i slug till anpassad sida för evenemang, eller lämna blankt för standard"
    184188
    185 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133
     189#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132
    186190msgid "First name"
    187191msgstr "Förnamn"
     
    199203msgstr "Gå till evenemangssidan"
    200204
    201 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:888
    202 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1437
     205#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:887
     206#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1440
    203207#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:368
    204208#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:412
     
    294298msgstr "Synkronisera biljetter med evenemang"
    295299
    296 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133
     300#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132
    297301msgid "Last name"
    298302msgstr "Efternamn"
     
    312316msgstr "Länk från biljett till evenemang"
    313317
    314 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:283
    315 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:514
    316 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1780
    317 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1802
     318#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:282
     319#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:513
     320#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1847
     321#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1869
    318322#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-map.php:48
    319323msgid "Location"
     
    357361msgstr "Namnge evenemang"
    358362
    359 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:239
     363#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:238
    360364msgid "New"
    361365msgstr "Nytt"
    362366
    363 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1920
     367#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1987
    364368msgid "No end date given. The date has been set to today."
    365369msgstr "Ingen slutdatum är angiven. Dagens datum kommer att användas."
    366370
    367 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:648
     371#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:647
    368372msgid "No event corresponds to the event id in the URL"
    369373msgstr "Inget evenemang svarar mot evenemangsidentiteten i URL"
    370374
    371 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:652
     375#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:651
    372376msgid "No event id in the URL"
    373377msgstr "Ingen evenemangsidentitet i URL"
    374378
    375 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1908
     379#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1975
    376380msgid "No event points to the ticket"
    377381msgstr "Det finns inget evenemang kopplat till biljetten"
     
    381385msgstr "Ingen plats angiven"
    382386
    383 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1916
     387#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1983
    384388msgid "No start date given. The date has been set to today."
    385389msgstr "Ingen startdatum är angiven. Dagens datum kommer att användas."
    386390
     391#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:244
    387392#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:245
    388 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:246
    389393msgid "Nono"
    390394msgstr "Nej"
     
    410414"och som är fullt tillräcklig i de flesta fall."
    411415
    412 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132
    413 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1147
     416#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1131
     417#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1146
    414418msgid "Order"
    415419msgstr "Beställning"
    416420
    417 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1134
     421#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133
    418422msgid "Paid"
    419423msgstr "Betalt"
    420424
    421 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1820
     425#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1887
    422426msgid "Participate"
    423427msgstr "Delta"
     
    432436
    433437#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:563
    434 msgid "Please notice that modals do not work properly with Bootstrap v4.0"
    435 msgstr "Modals fungerar inte korrekt med Bootstrap 4.0"
     438msgid ""
     439"Please notice that modals may not work properly with older versions of "
     440"Bootstrap"
     441msgstr ""
     442"Observera att modaler kanske inte fungerar korrekt med äldre versioner av "
     443"Bootstrap"
    436444
    437445#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:431
     
    443451"tjänst som används."
    444452
    445 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1429
    446 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1453
     453#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1432
     454#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1456
    447455msgid "Product is orphaned"
    448456msgstr "Det finns inget evenemang till produkten"
    449457
    450 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1134
     458#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133
    451459msgid "Quantity"
    452460msgstr "Antal"
    453461
    454 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:563
     462#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:562
    455463msgid "Sales"
    456464msgstr "Försäljning"
     
    460468msgstr "Spara inställningar"
    461469
    462 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:243
     470#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:242
    463471msgid "Search"
    464472msgstr "Sök"
     
    481489msgstr "Välj vad som skall hända när man klickar på ett evenemang i kalendern"
    482490
    483 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:526
     491#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:525
    484492msgid "Sell tickets in the shop"
    485493msgstr "Sälj biljetter i butiken"
    486494
    487 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:537
     495#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:536
    488496msgid "Shop link"
    489497msgstr "Länk till butiken"
    490498
    491 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1426
    492 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1450
     499#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1429
     500#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1453
    493501msgid "Shortcode can only be used for products of the Hello Event category"
    494502msgstr "Kortkoden kan endast användas för produkter i kategorin Hello Event"
    495503
    496 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1170
    497 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1352
    498 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1376
    499 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1472
    500 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1484
    501 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1496
    502 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1510
    503 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1523
    504 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1537
    505 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1564
    506 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1583
    507 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1601
    508 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1614
    509 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1627
     504#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1169
     505#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1351
     506#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1379
     507#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1477
     508#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1491
     509#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1513
     510#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1529
     511#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1544
     512#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1560
     513#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1589
     514#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1610
     515#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1630
     516#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1645
     517#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1660
     518#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1680
     519#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1696
    510520msgid "Shortcode can only be used when displaying events"
    511521msgstr "Shortkoden kan endast användas när man visar evenemang"
     
    523533msgstr "Slug till anpassad sida"
    524534
    525 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:560
    526 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1779
    527 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1792
     535#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:559
     536#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1846
     537#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1859
    528538msgid "Start"
    529539msgstr "Början"
    530540
    531 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:474
     541#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:473
    532542msgid "Start date"
    533543msgstr "Startdatum"
     
    538548msgstr "Startdatum och -tid för evenemang"
    539549
    540 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:483
     550#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:482
    541551msgid "Start time"
    542552msgstr "Starttid"
    543553
    544 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1942
     554#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2009
    545555msgid "The event was saved but there are error(s)"
    546556msgstr "Evenemanget sparades men det finns fel"
    547557
    548 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1321
     558#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1320
    549559msgid ""
    550560"The link from the event does not point to a ticket in Woocommerce. Save the "
     
    554564"spara evenemanget på nytt."
    555565
    556 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1940
     566#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2007
    557567msgid "The product was saved but there are error(s)"
    558568msgstr "Biljetten sparades men det finns fel"
    559569
    560 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1323
     570#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1322
    561571msgid ""
    562572"The ticket exists in Woocommerce, and is published, but you need to set its "
     
    566576"sätta pris"
    567577
    568 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1322
     578#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1321
    569579msgid "The ticket exists in Woocommerce, but you need to set it as published"
    570580msgstr ""
     
    572582"publicerad"
    573583
    574 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1173
    575 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1318
     584#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1172
     585#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1317
    576586msgid "The Woocommerce plugin is not activated"
    577587msgstr "Tillägget Woocommerce är inte aktiverat"
    578588
    579 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:544
     589#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:543
    580590msgid ""
    581591"then after saving the event a new link will appear to allow you to set the "
     
    585595"och antal biljetter"
    586596
    587 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1912
     597#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1979
    588598msgid "There is already a ticket for the event in the shop"
    589599msgstr "Det finns redan en biljett till evenemanget i butiken"
     
    593603msgstr "Det finns inga evenemang att visa"
    594604
    595 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1320
     605#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1319
    596606msgid "There is no link from the event to a ticket. Save the event again!"
    597607msgstr ""
     
    603613msgstr "denna sida"
    604614
    605 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1128
     615#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1127
    606616msgid "Ticket sales status"
    607617msgstr "Försäljningsstatus"
    608618
    609 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:291
    610 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:562
     619#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:290
     620#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:561
    611621#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:227
    612622msgid "Tickets"
    613623msgstr "Biljetter"
    614624
    615 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:542
     625#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:541
    616626msgid "Tickets are not yet available in the shop."
    617627msgstr "Ännu så länge finns det inte biljetter i butiken."
    618628
    619 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1349
    620 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1373
     629#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1348
     630#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1376
    621631msgid "Tickets not fully configured"
    622632msgstr "Biletter är inte fullständigt konfigurerade"
    623633
    624 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:600
     634#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:599
    625635msgid "Tickets sold"
    626636msgstr "Sålda biljetter"
    627637
    628 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:717
     638#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:716
    629639msgid "Tickets to Events"
    630640msgstr "Biljetter till Evenemang"
    631641
    632 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1339
    633 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1360
     642#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1338
     643#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1359
    634644msgid "Tickets to participate are available in our shop"
    635645msgstr "Biljetter för att delta finns i vår butik"
     
    644654"För att (gratis) erhålla en API-nyckel och läsa Google's förklaring gå till "
    645655
    646 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:548
     656#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:547
    647657msgid "To sell tickets Woocommerce needs to be installed and actived"
    648658msgstr "För att kunna sälja biljetter måste Woocommerce vara installerat"
    649659
    650 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1156
     660#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1155
    651661msgid "Total"
    652662msgstr "Totalt"
     
    656666msgstr "Kart-tjänsten är odefinierad"
    657667
    658 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1928
     668#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1995
    659669msgid "Unknown error"
    660670msgstr "Okänt fel"
    661671
    662 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:467
     672#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:469
    663673msgid "Upcoming events"
    664674msgstr "Kommande evenemang"
     
    669679msgstr "Uppdatera biljettens titel när evenemangets titel ändras"
    670680
    671 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:241
     681#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:240
    672682msgid "View"
    673683msgstr "Visa"
     
    706716msgstr "Du måste lägga in din Google Maps API-nyckel för att kunna se kartor"
    707717
    708 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1319
     718#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1318
    709719msgid "You need to set the check box to sell tickets in the event!"
    710720msgstr "Du måste aktivera valet i checkboxen för att sälja biljetter !"
  • hello-event/trunk/languages/hello-event.pot

    r3103737 r3108893  
    44"Project-Id-Version: Hello Event\n"
    55"Report-Msgid-Bugs-To: \n"
    6 "POT-Creation-Date: 2024-06-16 13:33+0000\n"
     6"POT-Creation-Date: 2024-06-26 05:54+0000\n"
    77"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    88"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1919msgstr ""
    2020
     21#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:236
    2122#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:237
    22 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:238
    2323msgid "Add New"
    2424msgstr ""
    2525
    26 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1636
     26#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1666
    2727msgid "Add to Calendar"
    2828msgstr ""
     
    3333msgstr ""
    3434
    35 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:242
     35#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:241
    3636msgid "All"
    3737msgstr ""
     
    4949msgstr ""
    5050
    51 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1561
    52 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1580
     51#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1586
     52#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1607
    5353msgid "at"
    5454msgstr ""
     
    5959msgstr ""
    6060
     61#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:203
     62msgid "Book now"
     63msgstr ""
     64
    6165#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:429
    6266msgid ""
     
    8892msgstr ""
    8993
    90 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1131
     94#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1130
    9195msgid "Date"
    9296msgstr ""
     
    102106msgstr ""
    103107
    104 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:275
     108#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:274
    105109msgid "Dates and time"
    106110msgstr ""
     
    118122msgstr ""
    119123
    120 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:466
     124#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:468
    121125msgid "Earlier events"
    122126msgstr ""
    123127
    124 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:240
     128#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:239
    125129msgid "Edit"
    126130msgstr ""
    127131
    128 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:539
    129 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:589
     132#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:538
     133#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:588
    130134msgid "Edit ticket"
    131135msgstr ""
    132136
    133 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:561
    134 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1797
     137#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:560
     138#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1864
    135139msgid "End"
    136140msgstr ""
    137141
    138 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:492
     142#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:491
    139143msgid "End date"
    140144msgstr ""
     
    145149msgstr ""
    146150
    147 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1924
     151#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1991
    148152msgid "End date is earlier than start date"
    149153msgstr ""
    150154
    151 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:502
     155#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:501
    152156msgid "End time"
    153157msgstr ""
    154158
    155 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:705
    156 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:714
     159#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:704
     160#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:713
    157161msgid "Event ticket"
    158162msgstr ""
    159163
    160 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:642
     164#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:641
    161165msgid "Event:"
    162166msgstr ""
    163167
    164 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:543
     168#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:542
    165169msgid "Fill in the checkbox above to start sell tickets"
    166170msgstr ""
     
    170174msgstr ""
    171175
    172 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133
     176#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132
    173177msgid "First name"
    174178msgstr ""
     
    186190msgstr ""
    187191
    188 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:888
    189 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1437
     192#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:887
     193#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1440
    190194#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:368
    191195#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:412
     
    267271msgstr ""
    268272
    269 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133
     273#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132
    270274msgid "Last name"
    271275msgstr ""
     
    285289msgstr ""
    286290
    287 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:283
    288 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:514
    289 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1780
    290 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1802
     291#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:282
     292#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:513
     293#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1847
     294#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1869
    291295#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-map.php:48
    292296msgid "Location"
     
    328332msgstr ""
    329333
    330 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:239
     334#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:238
    331335msgid "New"
    332336msgstr ""
    333337
    334 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1920
     338#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1987
    335339msgid "No end date given. The date has been set to today."
    336340msgstr ""
    337341
    338 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:648
     342#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:647
    339343msgid "No event corresponds to the event id in the URL"
    340344msgstr ""
    341345
    342 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:652
     346#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:651
    343347msgid "No event id in the URL"
    344348msgstr ""
    345349
    346 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1908
     350#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1975
    347351msgid "No event points to the ticket"
    348352msgstr ""
     
    352356msgstr ""
    353357
    354 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1916
     358#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1983
    355359msgid "No start date given. The date has been set to today."
    356360msgstr ""
    357361
     362#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:244
    358363#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:245
    359 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:246
    360364msgid "Nono"
    361365msgstr ""
     
    379383msgstr ""
    380384
    381 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132
    382 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1147
     385#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1131
     386#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1146
    383387msgid "Order"
    384388msgstr ""
    385389
    386 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1134
     390#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133
    387391msgid "Paid"
    388392msgstr ""
    389393
    390 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1820
     394#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1887
    391395msgid "Participate"
    392396msgstr ""
     
    399403
    400404#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:563
    401 msgid "Please notice that modals do not work properly with Bootstrap v4.0"
     405msgid ""
     406"Please notice that modals may not work properly with older versions of "
     407"Bootstrap"
    402408msgstr ""
    403409
     
    408414msgstr ""
    409415
     416#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1432
     417#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1456
     418msgid "Product is orphaned"
     419msgstr ""
     420
     421#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133
     422msgid "Quantity"
     423msgstr ""
     424
     425#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:562
     426msgid "Sales"
     427msgstr ""
     428
     429#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:395
     430msgid "Save Settings"
     431msgstr ""
     432
     433#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:242
     434msgid "Search"
     435msgstr ""
     436
     437#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-map.php:57
     438msgid "See in Open Street Map"
     439msgstr ""
     440
     441#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:181
     442msgid "Select map service"
     443msgstr ""
     444
     445#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:483
     446msgid "Select the dateformat used in datepickers and displays."
     447msgstr ""
     448
     449#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:420
     450msgid ""
     451"Select what should happen when a user clicks on an event in the calendar"
     452msgstr ""
     453
     454#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:525
     455msgid "Sell tickets in the shop"
     456msgstr ""
     457
     458#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:536
     459msgid "Shop link"
     460msgstr ""
     461
    410462#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1429
    411463#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1453
    412 msgid "Product is orphaned"
    413 msgstr ""
    414 
    415 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1134
    416 msgid "Quantity"
    417 msgstr ""
    418 
    419 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:563
    420 msgid "Sales"
    421 msgstr ""
    422 
    423 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:395
    424 msgid "Save Settings"
    425 msgstr ""
    426 
    427 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:243
    428 msgid "Search"
    429 msgstr ""
    430 
    431 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-map.php:57
    432 msgid "See in Open Street Map"
    433 msgstr ""
    434 
    435 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:181
    436 msgid "Select map service"
    437 msgstr ""
    438 
    439 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:483
    440 msgid "Select the dateformat used in datepickers and displays."
    441 msgstr ""
    442 
    443 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:420
    444 msgid ""
    445 "Select what should happen when a user clicks on an event in the calendar"
    446 msgstr ""
    447 
    448 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:526
    449 msgid "Sell tickets in the shop"
    450 msgstr ""
    451 
    452 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:537
    453 msgid "Shop link"
    454 msgstr ""
    455 
    456 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1426
    457 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1450
    458464msgid "Shortcode can only be used for products of the Hello Event category"
    459465msgstr ""
    460466
    461 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1170
    462 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1352
    463 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1376
    464 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1472
    465 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1484
    466 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1496
    467 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1510
    468 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1523
    469 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1537
    470 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1564
    471 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1583
    472 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1601
    473 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1614
    474 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1627
     467#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1169
     468#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1351
     469#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1379
     470#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1477
     471#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1491
     472#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1513
     473#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1529
     474#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1544
     475#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1560
     476#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1589
     477#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1610
     478#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1630
     479#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1645
     480#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1660
     481#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1680
     482#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1696
    475483msgid "Shortcode can only be used when displaying events"
    476484msgstr ""
     
    488496msgstr ""
    489497
    490 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:560
    491 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1779
    492 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1792
     498#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:559
     499#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1846
     500#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1859
    493501msgid "Start"
    494502msgstr ""
    495503
    496 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:474
     504#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:473
    497505msgid "Start date"
    498506msgstr ""
     
    503511msgstr ""
    504512
    505 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:483
     513#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:482
    506514msgid "Start time"
    507515msgstr ""
    508516
    509 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1942
     517#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2009
    510518msgid "The event was saved but there are error(s)"
    511519msgstr ""
    512520
    513 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1321
     521#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1320
    514522msgid ""
    515523"The link from the event does not point to a ticket in Woocommerce. Save the "
     
    517525msgstr ""
    518526
    519 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1940
     527#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2007
    520528msgid "The product was saved but there are error(s)"
    521529msgstr ""
    522530
    523 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1323
     531#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1322
    524532msgid ""
    525533"The ticket exists in Woocommerce, and is published, but you need to set its "
     
    527535msgstr ""
    528536
    529 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1322
     537#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1321
    530538msgid "The ticket exists in Woocommerce, but you need to set it as published"
    531539msgstr ""
    532540
    533 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1173
    534 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1318
     541#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1172
     542#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1317
    535543msgid "The Woocommerce plugin is not activated"
    536544msgstr ""
    537545
    538 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:544
     546#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:543
    539547msgid ""
    540548"then after saving the event a new link will appear to allow you to set the "
     
    542550msgstr ""
    543551
    544 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1912
     552#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1979
    545553msgid "There is already a ticket for the event in the shop"
    546554msgstr ""
     
    550558msgstr ""
    551559
    552 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1320
     560#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1319
    553561msgid "There is no link from the event to a ticket. Save the event again!"
    554562msgstr ""
     
    558566msgstr ""
    559567
    560 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1128
     568#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1127
    561569msgid "Ticket sales status"
    562570msgstr ""
    563571
    564 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:291
    565 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:562
     572#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:290
     573#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:561
    566574#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:227
    567575msgid "Tickets"
    568576msgstr ""
    569577
    570 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:542
     578#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:541
    571579msgid "Tickets are not yet available in the shop."
    572580msgstr ""
    573581
    574 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1349
    575 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1373
     582#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1348
     583#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1376
    576584msgid "Tickets not fully configured"
    577585msgstr ""
    578586
    579 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:600
     587#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:599
    580588msgid "Tickets sold"
    581589msgstr ""
    582590
    583 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:717
     591#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:716
    584592msgid "Tickets to Events"
    585593msgstr ""
    586594
    587 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1339
    588 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1360
     595#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1338
     596#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1359
    589597msgid "Tickets to participate are available in our shop"
    590598msgstr ""
     
    598606msgstr ""
    599607
    600 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:548
     608#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:547
    601609msgid "To sell tickets Woocommerce needs to be installed and actived"
    602610msgstr ""
    603611
    604 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1156
     612#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1155
    605613msgid "Total"
    606614msgstr ""
     
    610618msgstr ""
    611619
    612 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1928
     620#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1995
    613621msgid "Unknown error"
    614622msgstr ""
    615623
    616 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:467
     624#: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:469
    617625msgid "Upcoming events"
    618626msgstr ""
     
    623631msgstr ""
    624632
    625 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:241
     633#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:240
    626634msgid "View"
    627635msgstr ""
     
    653661msgstr ""
    654662
    655 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1319
     663#: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1318
    656664msgid "You need to set the check box to sell tickets in the event!"
    657665msgstr ""
  • hello-event/trunk/readme.txt

    r3103737 r3108893  
    7373
    7474== Changelog ==
     75= 1.3.15
     76* Event custom page enabled also for calendar and tabbed display
     77* Minor fix in the width of thumbnails returned by the hello-thumbnail shortcode
     78* Text parameter to the shortcode hello-event-ics
     79* Text to book ticket in event list is localized
    7580= 1.3.14
    7681* Added possibility to display the event using a custom page. This also means there are several new shortcodes
Note: See TracChangeset for help on using the changeset viewer.