Changeset 3108893
- Timestamp:
- 06/27/2024 05:40:38 PM (19 months ago)
- Location:
- hello-event/trunk
- Files:
-
- 2 deleted
- 16 edited
- 4 copied
-
hello_event.php (modified) (7 diffs)
-
includes/hello-event-calendar.php (modified) (7 diffs)
-
includes/hello-event-list-events.php (modified) (5 diffs)
-
includes/hello-event-openstreet-map.php (modified) (4 diffs)
-
includes/hello-event-settings.php (modified) (1 diff)
-
languages/hello-event-backup-202406260554220.pot~ (copied) (copied from hello-event/trunk/languages/hello-event.pot) (1 prop)
-
languages/hello-event-fr_FR-backup-202307310925230.po~ (deleted)
-
languages/hello-event-fr_FR-backup-202406260557190.po~ (copied) (copied from hello-event/trunk/languages/hello-event-fr_FR.po) (1 prop)
-
languages/hello-event-fr_FR.l10n.php (modified) (1 diff)
-
languages/hello-event-fr_FR.mo (modified) (previous)
-
languages/hello-event-fr_FR.po (modified) (33 diffs)
-
languages/hello-event-nl_NL-backup-202406260600040.po~ (copied) (copied from hello-event/trunk/languages/hello-event-nl_NL.po)
-
languages/hello-event-nl_NL.l10n.php (modified) (1 diff)
-
languages/hello-event-nl_NL.mo (modified) (previous)
-
languages/hello-event-nl_NL.po (modified) (33 diffs)
-
languages/hello-event-sv_SE-backup-202406160804300.po~ (deleted)
-
languages/hello-event-sv_SE-backup-202406260558380.po~ (copied) (copied from hello-event/trunk/languages/hello-event-sv_SE.po)
-
languages/hello-event-sv_SE.l10n.php (modified) (1 diff)
-
languages/hello-event-sv_SE.mo (modified) (previous)
-
languages/hello-event-sv_SE.po (modified) (32 diffs)
-
languages/hello-event.pot (modified) (29 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
hello-event/trunk/hello_event.php
r3103737 r3108893 13 13 * Author URI: https://www.tekomatik.com/about 14 14 * 15 * Version: 1.3.1 415 * Version: 1.3.15 16 16 * 17 17 * Text Domain: hello-event … … 45 45 } 46 46 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 //}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 } 56 56 57 57 … … 1370 1370 // Don't know why at some point we had a fourth parameter here 1371 1371 // $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; 1373 1375 } 1374 1376 else { return $html . $this->debug_msg(__("Tickets not fully configured", 'hello-event') . ". ". … … 1501 1503 if (get_post_type($id) == Hello_Event::EVENT_SLUG) { 1502 1504 if ($args['width']) { 1503 $html = '<div style="display:inline-block; width:'.$args['width'].' ">';1505 $html = '<div style="display:inline-block; width:'.$args['width'].'px">'; 1504 1506 $html .= get_the_post_thumbnail($id); 1505 1507 $html .= '</div>'; … … 1662 1664 $args = shortcode_atts( array( 1663 1665 'id' => get_the_ID(), 1666 'text' => __('Add to Calendar', 'hello-event'), 1664 1667 ), $args ); 1665 1668 $args['id'] = isset($_GET['event_id']) ? $_GET['event_id'] : $args['id']; … … 1668 1671 $id = $this->default_event_id; 1669 1672 if (get_post_type($id) == Hello_Event::EVENT_SLUG) { 1670 $btn_txt = __('Add to Calendar', 'hello-event');1673 $btn_txt = $args['text']; 1671 1674 $html = "<form method='post' action=#>"; 1672 1675 $html .= "<input type='hidden' name='get_ics' value='" . $id . "'/>"; … … 1704 1707 $this->default_event_id = $args['id']; 1705 1708 } 1706 1707 1709 1708 1710 -
hello-event/trunk/includes/hello-event-calendar.php
r2946985 r3108893 31 31 // Called via ajax 32 32 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));35 33 remove_filter( 'the_title', 'wptexturize' ); // Stop WP from converting quotes into html quotes 36 34 $start = $_REQUEST['start'] ; 37 35 $end = $_REQUEST['end'] ; 36 $event_page = isset($_REQUEST['event_page']) ? $_REQUEST['event_page'] : false; 38 37 // Fullcalendar needs 1 day to be added to the end date 39 38 // Event reguests from fullcalendar has an additional parameter: 'fix_end_date … … 68 67 $id = get_the_ID(); 69 68 // 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); 71 73 $start_date = get_post_meta( $id, 'start_date', true ); 72 74 $end_date = get_post_meta( $id, 'end_date', true ); … … 169 171 'view' => 'month', // can be month, week or day 170 172 'view_selector' => false, 173 'event_page' => false, // can be set to the slug of a custom page to show the events 171 174 ), $args ); 172 175 … … 184 187 var title_long = event._def.extendedProps.title_long; 185 188 var description = event._def.extendedProps.description; 189 //alert('one'); 190 //bootbox.alert('Ready for bootbox with description = ' ); 186 191 bootbox.alert({ 187 192 message: ''+description, … … 189 194 }); 190 195 }"; 196 // debug_log("With boostratp: ". $evclick); 197 $evclickX = " 198 function(info) {alert('top');} 199 "; 191 200 } 192 201 elseif ($modals == 'jquery') { … … 251 260 // $html .= ' alert("adminajax="+adminAjax);'; 252 261 $html .= ' 262 var eventPage = "'.$args['event_page'].'"; 253 263 var calendarEl = document.getElementById("cf_calendar"); 254 264 var calendar = new FullCalendar.Calendar(calendarEl, { … … 281 291 end: end, 282 292 fix_end_date: true, 293 event_page: eventPage, 283 294 }, 284 295 error: function(obj, status, err) { -
hello-event/trunk/includes/hello-event-list-events.php
r3103736 r3108893 37 37 'select' => 'future', // Can be 'past' or 'future' 38 38 'show' => 'default', // Can be 'minimal', 'default', 'full', 'widget', 'compact', 'gallery' 39 'width' => false, // Optionally Used in widget show39 // 'width' => false, // Optionally Used in widget show 40 40 'link_to_book' => false, // Do we want to display a "Book Now" button? 41 41 // 'language' => false, // Can be used in date presentations … … 201 201 list($link, $rc) = $hello_event_object->get_link_to_product(get_the_ID(), true); 202 202 if ($link) { 203 $ticket_link = '<a href="'. $link . '">' . "Book". '</a>';203 $ticket_link = '<a href="'. $link . '">' . __("Book now", 'hello-event') . '</a>'; 204 204 $ticket_link = apply_filters('hello_event_display_link_to_ticket', $html, get_the_ID(), $link); 205 205 $html .= '<div class="ticket-link">' . $ticket_link . '</div>'; … … 447 447 'show' => 'default', 448 448 'link_to_book' => false, 449 'event_page' => false, 449 450 ), $args ); 450 451 wp_enqueue_script('jquery-ui-tabs'); … … 456 457 'select' => 'past', 457 458 'limit' => $args['limit'], 458 'show' => $args['show'] 459 'show' => $args['show'], 460 'event_page' => $args['event_page'], 459 461 )); 460 462 $future = $this->handle_shortcode_event_list(array( … … 463 465 'show' => $args['show'], 464 466 'link_to_book' => $args['link_to_book'], 465 ));467 'event_page' => $args['event_page'], )); 466 468 $past_txt = __('Earlier events', 'hello-event'); 467 469 $future_txt = __('Upcoming events', 'hello-event'); -
hello-event/trunk/includes/hello-event-openstreet-map.php
r3103737 r3108893 4 4 * 5 5 */ 6 7 // Lagt till admin_enq scripts + alltid anropa enqu resources 8 // Saknas fortfarande div map i editors 6 9 7 10 namespace Tekomatik\HelloEvent; … … 12 15 add_action('wp_enqueue_scripts', array($this, 'register_resources')); 13 16 add_shortcode( 'hello-event-openstreet-map', array($this, 'openstreet_map')); 17 add_action('admin_enqueue_scripts', array($this, 'register_resources')); 14 18 } 15 19 … … 23 27 wp_register_style( 'hello_event_maps', plugins_url('css/frontend-maps.css', __FILE__) ); 24 28 } 29 // $this->enqueue_resources_if_needed(); 25 30 } 26 31 … … 56 61 $html = ''; 57 62 // $html .= "LAT=$lat LNG=$lng LOCATION=$location"; 58 $html .= '<div id="open-map" "></div>';63 $html .= '<div id="open-map"></div>'; 59 64 $html .= "<script>var lat=".$lat.";" ; 60 65 $html .= " var lng=".$lng."; "; -
hello-event/trunk/includes/hello-event-settings.php
r3103737 r3108893 561 561 <p class="description"> 562 562 <?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/> 564 564 </p> 565 565 <?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 1 1 <?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-event3 ','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 à venir2 return ['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 4 4 ','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 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "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" 7 7 "Last-Translator: Christer Fernstrom <[email protected]>\n" 8 8 "Language-Team: French (France)\n" … … 21 21 "Woocommerce" 22 22 23 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:236 23 24 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:237 24 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:23825 25 msgid "Add New" 26 26 msgstr "Ajouter" 27 27 28 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:16 3628 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1666 29 29 msgid "Add to Calendar" 30 30 msgstr "Ajouter au calendrier" … … 35 35 msgstr "Bouton ajouter-au-calendrier" 36 36 37 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:24 237 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:241 38 38 msgid "All" 39 39 msgstr "Tous les" … … 55 55 "par mois," 56 56 57 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:15 6158 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 58057 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1586 58 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1607 59 59 msgid "at" 60 60 msgstr "à" … … 65 65 msgstr "Contenu inséré automatiquement" 66 66 67 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:203 68 msgid "Book now" 69 msgstr "Réserver maintenant" 70 67 71 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:429 68 72 msgid "" … … 98 102 msgstr "Page d'événement personnalisée" 99 103 100 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 1104 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1130 101 105 msgid "Date" 102 106 msgstr "Date" … … 112 116 msgstr "Format date" 113 117 114 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:27 5118 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:274 115 119 msgid "Dates and time" 116 120 msgstr "Date et l'heure" … … 128 132 msgstr "Par defaut \"Event\" en singulier et \"Events\" au pluriel." 129 133 130 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:46 6134 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:468 131 135 msgid "Earlier events" 132 136 msgstr "Evénements précédents" 133 137 134 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2 40138 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:239 135 139 msgid "Edit" 136 140 msgstr "Modifier" 137 141 138 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:53 9139 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:58 9142 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:538 143 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:588 140 144 msgid "Edit ticket" 141 145 msgstr "Modifier billet" 142 146 143 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:56 1144 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 797147 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:560 148 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1864 145 149 msgid "End" 146 150 msgstr "Fin" 147 151 148 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:49 2152 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:491 149 153 msgid "End date" 150 154 msgstr "Date de fin" … … 155 159 msgstr "Date et heure de fin de l'événement" 156 160 157 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 24161 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1991 158 162 msgid "End date is earlier than start date" 159 163 msgstr "La date de fin est avant la date de début" 160 164 161 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:50 2165 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:501 162 166 msgid "End time" 163 167 msgstr "Heure de fin" 164 168 165 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:70 5166 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:71 4169 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:704 170 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:713 167 171 msgid "Event ticket" 168 172 msgstr "Billet d'événement" 169 173 170 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:64 2174 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:641 171 175 msgid "Event:" 172 176 msgstr "Evénement :" 173 177 174 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:54 3178 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:542 175 179 msgid "Fill in the checkbox above to start sell tickets" 176 180 msgstr "Cocher la case ci-dessus pour commencer la vente de billets" … … 181 185 "Renseigner le slug de la page personnalisée ou laisser vide pour défaut" 182 186 183 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 3187 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132 184 188 msgid "First name" 185 189 msgstr "Prénom" … … 197 201 msgstr "Aller à la page de l'événement" 198 202 199 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:88 8200 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:14 37203 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:887 204 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1440 201 205 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:368 202 206 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:412 … … 298 302 msgstr "Maintenir les billets synchronisés avec les événements" 299 303 300 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 3304 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132 301 305 msgid "Last name" 302 306 msgstr "Nom" … … 316 320 msgstr "Lien de l'événement vers le billet " 317 321 318 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:28 3319 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:51 4320 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 780321 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:18 02322 #: ../../../../../../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 322 326 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-map.php:48 323 327 msgid "Location" … … 359 363 msgstr "Nommage des événements" 360 364 361 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:23 9365 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:238 362 366 msgid "New" 363 367 msgstr "Nouveau" 364 368 365 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 20369 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1987 366 370 msgid "No end date given. The date has been set to today." 367 371 msgstr "Aucune date de fin donnée. La date d'aujourd'hui est utilisée." 368 372 369 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:64 8373 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:647 370 374 msgid "No event corresponds to the event id in the URL" 371 375 msgstr "" 372 376 "Aucun événement ne correspond à l'identifiant de l'événement dans l'URL" 373 377 374 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:65 2378 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:651 375 379 msgid "No event id in the URL" 376 380 msgstr "Aucun identifiant d'événement dans l'URL" 377 381 378 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 08382 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1975 379 383 msgid "No event points to the ticket" 380 384 msgstr "Aucun événement est associé au billet" … … 384 388 msgstr "Aucune position donnée" 385 389 386 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 16390 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1983 387 391 msgid "No start date given. The date has been set to today." 388 392 msgstr "Aucune date de début donnée. La date d'aujourd'hui est utilisée." 389 393 394 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:244 390 395 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:245 391 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:246392 396 msgid "Nono" 393 397 msgstr "Aucun" … … 413 417 "suffisant dans la plupart des cas." 414 418 415 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 2416 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:114 7419 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1131 420 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1146 417 421 msgid "Order" 418 422 msgstr "Commande" 419 423 420 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 4424 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133 421 425 msgid "Paid" 422 426 msgstr "Réglé" 423 427 424 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:18 20428 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1887 425 429 msgid "Participate" 426 430 msgstr "Participer" … … 435 439 436 440 #: ../../../../../../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" 441 msgid "" 442 "Please notice that modals may not work properly with older versions of " 443 "Bootstrap" 444 msgstr "" 445 "Veuillez noter que les modaux peuvent ne pas fonctionner correctement avec " 446 "les anciennes versions de Bootstrap" 441 447 442 448 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:431 … … 449 455 "fournisseur de service." 450 456 451 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:14 29452 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:145 3457 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1432 458 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1456 453 459 msgid "Product is orphaned" 454 460 msgstr "Aucun événement correspond au produit" 455 461 456 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 4462 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133 457 463 msgid "Quantity" 458 464 msgstr "Quantité" 459 465 460 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:56 3466 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:562 461 467 msgid "Sales" 462 468 msgstr "Ventes" … … 466 472 msgstr "Enregister réglages" 467 473 468 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:24 3474 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:242 469 475 msgid "Search" 470 476 msgstr "Chercher" … … 489 495 "calendrier" 490 496 491 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:52 6497 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:525 492 498 msgid "Sell tickets in the shop" 493 499 msgstr "Vendre des billets dans la boutique" 494 500 495 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:53 7501 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:536 496 502 msgid "Shop link" 497 503 msgstr "Liens vers la boutique" 498 504 499 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:142 6500 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:145 0505 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1429 506 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1453 501 507 msgid "Shortcode can only be used for products of the Hello Event category" 502 508 msgstr "" … … 504 510 "Event" 505 511 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 520 528 msgid "Shortcode can only be used when displaying events" 521 529 msgstr "Shortcode à utiliser uniquement avec des événements" … … 533 541 msgstr "Slug de la page personnalisée" 534 542 535 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:5 60536 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 779537 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 792543 #: ../../../../../../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 538 546 msgid "Start" 539 547 msgstr "Début" 540 548 541 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:47 4549 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:473 542 550 msgid "Start date" 543 551 msgstr "Date de début" … … 548 556 msgstr "Date et heure de début de l'événement" 549 557 550 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:48 3558 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:482 551 559 msgid "Start time" 552 560 msgstr "Heure de début" 553 561 554 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php: 1942562 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2009 555 563 msgid "The event was saved but there are error(s)" 556 564 msgstr "L'événement a été enregistré mais il y a des erreur(s)" 557 565 558 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:132 1566 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1320 559 567 msgid "" 560 568 "The link from the event does not point to a ticket in Woocommerce. Save the " … … 564 572 "Veuillez enregistrer l'événement de nouveau !" 565 573 566 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php: 1940574 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2007 567 575 msgid "The product was saved but there are error(s)" 568 576 msgstr "Le billet a été enregistré mais il y a des erreur(s)" 569 577 570 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:132 3578 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1322 571 579 msgid "" 572 580 "The ticket exists in Woocommerce, and is published, but you need to set its " … … 576 584 "devez aussi définir son prix" 577 585 578 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:132 2586 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1321 579 587 msgid "The ticket exists in Woocommerce, but you need to set it as published" 580 588 msgstr "" … … 582 590 "en publié" 583 591 584 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:117 3585 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:131 8592 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1172 593 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1317 586 594 msgid "The Woocommerce plugin is not activated" 587 595 msgstr "L'extension Woocommerce n'est pas activée" 588 596 589 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:54 4597 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:543 590 598 msgid "" 591 599 "then after saving the event a new link will appear to allow you to set the " … … 595 603 "permettra de définir tarif et quantité de billets." 596 604 597 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 12605 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1979 598 606 msgid "There is already a ticket for the event in the shop" 599 607 msgstr "Il y a déjà un ticket pour l'événement dans la boutique" … … 603 611 msgstr "Il n'y a pas d'événement à montrer" 604 612 605 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:13 20613 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1319 606 614 msgid "There is no link from the event to a ticket. Save the event again!" 607 615 msgstr "" … … 613 621 msgstr "cette page" 614 622 615 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:112 8623 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1127 616 624 msgid "Ticket sales status" 617 625 msgstr "Situation de vente de billets" 618 626 619 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:29 1620 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:56 2627 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:290 628 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:561 621 629 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:227 622 630 msgid "Tickets" 623 631 msgstr "Billets" 624 632 625 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:54 2633 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:541 626 634 msgid "Tickets are not yet available in the shop." 627 635 msgstr "Des billets ne sont pas encore en vente dans la boutique." 628 636 629 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:134 9630 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:137 3637 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1348 638 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1376 631 639 msgid "Tickets not fully configured" 632 640 msgstr "Les billets ne sont pas complètement configurés" 633 641 634 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php: 600642 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:599 635 643 msgid "Tickets sold" 636 644 msgstr "Billets vendus" 637 645 638 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:71 7646 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:716 639 647 msgid "Tickets to Events" 640 648 msgstr "billets d'événements" 641 649 642 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:133 9643 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:13 60650 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1338 651 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1359 644 652 msgid "Tickets to participate are available in our shop" 645 653 msgstr "Des billets pour participer sont en vente dans notre boutique" … … 653 661 msgstr "Pour obtenir la clé API et lire l'explication de Google, allez à" 654 662 655 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:54 8663 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:547 656 664 msgid "To sell tickets Woocommerce needs to be installed and actived" 657 665 msgstr "Afine de vendre des billet, Woocommerce doit être installé et activé" 658 666 659 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:115 6667 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1155 660 668 msgid "Total" 661 669 msgstr "Total" … … 665 673 msgstr "Service de cartographie non defini" 666 674 667 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 28675 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1995 668 676 msgid "Unknown error" 669 677 msgstr "Erreur inconnue" 670 678 671 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:46 7679 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:469 672 680 msgid "Upcoming events" 673 681 msgstr "" … … 680 688 "Mettre à jour le titre du ticket lorsque le titre de l'événement est modifié" 681 689 682 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:24 1690 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:240 683 691 msgid "View" 684 692 msgstr "Voir" … … 719 727 "la carte" 720 728 721 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:131 9729 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1318 722 730 msgid "You need to set the check box to sell tickets in the event!" 723 731 msgstr "Vous devez cocher la case pour vendre des billets !" -
hello-event/trunk/languages/hello-event-nl_NL.l10n.php
r3103737 r3108893 1 1 <?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!']];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-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 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "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" 7 7 "Last-Translator: \n" 8 8 "Language-Team: Dutch\n" … … 21 21 "Woocommerce" 22 22 23 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:236 23 24 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:237 24 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:23825 25 msgid "Add New" 26 26 msgstr "Nieuw toevoegen" 27 27 28 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:16 3628 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1666 29 29 msgid "Add to Calendar" 30 30 msgstr "Voeg toe aan Kalender" … … 35 35 msgstr "Voeg-toe-aan-Kalender knop" 36 36 37 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:24 237 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:241 38 38 msgid "All" 39 39 msgstr "Alle" … … 54 54 "Vanaf juli 2018 zal je 28500 verzoeken per maand gratis kunnen uitvoeren." 55 55 56 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:15 6157 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 58056 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1586 57 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1607 58 58 msgid "at" 59 59 msgstr "om" … … 64 64 msgstr "Automatisch toegevoegde inhoud" 65 65 66 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:203 67 msgid "Book now" 68 msgstr "Boek nu" 69 66 70 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:429 67 71 msgid "" … … 97 101 msgstr "Aangepaste evenementenpagina" 98 102 99 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 1103 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1130 100 104 msgid "Date" 101 105 msgstr "Datum" … … 111 115 msgstr "Datum formaat" 112 116 113 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:27 5117 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:274 114 118 msgid "Dates and time" 115 119 msgstr "Data en tijden" … … 128 132 "Standaard is het \"Evenement\" in enkelvoud en \"Evenementen\" in meervoud." 129 133 130 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:46 6134 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:468 131 135 msgid "Earlier events" 132 136 msgstr "Eerdere evenementen" 133 137 134 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2 40138 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:239 135 139 msgid "Edit" 136 140 msgstr "Pas aan" 137 141 138 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:53 9139 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:58 9142 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:538 143 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:588 140 144 msgid "Edit ticket" 141 145 msgstr "Pas ticket aan" 142 146 143 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:56 1144 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 797147 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:560 148 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1864 145 149 msgid "End" 146 150 msgstr "Einde" 147 151 148 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:49 2152 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:491 149 153 msgid "End date" 150 154 msgstr "Einddatum" … … 155 159 msgstr "Einddatum en -tijd van het evenement" 156 160 157 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 24161 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1991 158 162 msgid "End date is earlier than start date" 159 163 msgstr "De einddatum is eerder dan de startdatum" 160 164 161 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:50 2165 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:501 162 166 msgid "End time" 163 167 msgstr "Eindtijd" 164 168 165 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:70 5166 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:71 4169 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:704 170 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:713 167 171 msgid "Event ticket" 168 172 msgstr "Evenement ticket" 169 173 170 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:64 2174 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:641 171 175 msgid "Event:" 172 176 msgstr "Evenement:" 173 177 174 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:54 3178 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:542 175 179 msgid "Fill in the checkbox above to start sell tickets" 176 180 msgstr "Vul de bovenstaande checkbox in om tickets te kunnen gaan verkopen" … … 182 186 "leeg." 183 187 184 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 3188 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132 185 189 msgid "First name" 186 190 msgstr "Voornaam" … … 198 202 msgstr "Ga naar de evenement pagina" 199 203 200 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:88 8201 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:14 37204 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:887 205 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1440 202 206 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:368 203 207 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:412 … … 296 300 msgstr "Hou de tickets gesynchroniseerd met de evenementen" 297 301 298 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 3302 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132 299 303 msgid "Last name" 300 304 msgstr "Achternaam" … … 314 318 msgstr "Link van ticket naar evenement" 315 319 316 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:28 3317 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:51 4318 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 780319 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:18 02320 #: ../../../../../../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 320 324 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-map.php:48 321 325 msgid "Location" … … 359 363 msgstr "Evenementen benoemen" 360 364 361 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:23 9365 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:238 362 366 msgid "New" 363 367 msgstr "Nieuw" 364 368 365 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 20369 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1987 366 370 msgid "No end date given. The date has been set to today." 367 371 msgstr "Geen einddatum opgegeven. De datum is op vandaag gezet." 368 372 369 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:64 8373 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:647 370 374 msgid "No event corresponds to the event id in the URL" 371 375 msgstr "Er is geen evenement dat overeenkomt met het evenement id in de URL" 372 376 373 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:65 2377 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:651 374 378 msgid "No event id in the URL" 375 379 msgstr "Geen evenement id in de URL" 376 380 377 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 08381 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1975 378 382 msgid "No event points to the ticket" 379 383 msgstr "Geen evenement verwijst naar dit ticket" … … 383 387 msgstr "Geen locatie opgegeven" 384 388 385 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 16389 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1983 386 390 msgid "No start date given. The date has been set to today." 387 391 msgstr "Geen startdatum opgegeven. De datum is op vandaag gezet." 388 392 393 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:244 389 394 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:245 390 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:246391 395 msgid "Nono" 392 396 msgstr "Neenee" … … 412 416 "de meeste gevallen." 413 417 414 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 2415 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:114 7418 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1131 419 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1146 416 420 msgid "Order" 417 421 msgstr "Bestel" 418 422 419 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 4423 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133 420 424 msgid "Paid" 421 425 msgstr "Betaald" 422 426 423 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:18 20427 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1887 424 428 msgid "Participate" 425 429 msgstr "Neem deel" … … 434 438 435 439 #: ../../../../../../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" 440 msgid "" 441 "Please notice that modals may not work properly with older versions of " 442 "Bootstrap" 443 msgstr "" 444 "Houd er rekening mee dat modals mogelijk niet goed werken met oudere versies " 445 "van Bootstrap" 438 446 439 447 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:431 … … 445 453 "contact informatie naar de service leverancier bevatten." 446 454 447 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:14 29448 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:145 3455 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1432 456 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1456 449 457 msgid "Product is orphaned" 450 458 msgstr "Product is verweesd" 451 459 452 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 4460 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133 453 461 msgid "Quantity" 454 462 msgstr "Hoeveelheid" 455 463 456 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:56 3464 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:562 457 465 msgid "Sales" 458 466 msgstr "Verkoop" … … 462 470 msgstr "Bewaar instellingen" 463 471 464 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:24 3472 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:242 465 473 msgid "Search" 466 474 msgstr "Zoek" … … 485 493 "de kalender" 486 494 487 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:52 6495 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:525 488 496 msgid "Sell tickets in the shop" 489 497 msgstr "Verkoop tickets in de winkel" 490 498 491 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:53 7499 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:536 492 500 msgid "Shop link" 493 501 msgstr "Link naar de winkel" 494 502 495 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:142 6496 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:145 0503 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1429 504 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1453 497 505 msgid "Shortcode can only be used for products of the Hello Event category" 498 506 msgstr "" … … 500 508 "categorie" 501 509 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 516 526 msgid "Shortcode can only be used when displaying events" 517 527 msgstr "Shortcode kan enkel gebruikt worden bij het tonen van evenementen" … … 529 539 msgstr "Slug voor aangepaste evenementenpagina" 530 540 531 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:5 60532 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 779533 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 792541 #: ../../../../../../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 534 544 msgid "Start" 535 545 msgstr "Start" 536 546 537 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:47 4547 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:473 538 548 msgid "Start date" 539 549 msgstr "Startdatum" … … 544 554 msgstr "Startdatum en -tijd van het evenement" 545 555 546 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:48 3556 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:482 547 557 msgid "Start time" 548 558 msgstr "Starttijd" 549 559 550 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php: 1942560 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2009 551 561 msgid "The event was saved but there are error(s)" 552 562 msgstr "Het evenement werd bewaard maar er zijn fout(en)" 553 563 554 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:132 1564 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1320 555 565 msgid "" 556 566 "The link from the event does not point to a ticket in Woocommerce. Save the " … … 560 570 "het ticket opnieuw!" 561 571 562 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php: 1940572 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2007 563 573 msgid "The product was saved but there are error(s)" 564 574 msgstr "Het product werd bewaard, maar er zijn fout(en)" 565 575 566 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:132 3576 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1322 567 577 msgid "" 568 578 "The ticket exists in Woocommerce, and is published, but you need to set its " … … 572 582 "nog instellen" 573 583 574 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:132 2584 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1321 575 585 msgid "The ticket exists in Woocommerce, but you need to set it as published" 576 586 msgstr "Het ticket bestaat in WooCommerce, maar moet nog gepubliceerd worden" 577 587 578 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:117 3579 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:131 8588 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1172 589 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1317 580 590 msgid "The Woocommerce plugin is not activated" 581 591 msgstr "De WooCommerce plugin is niet geactiveerd" 582 592 583 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:54 4593 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:543 584 594 msgid "" 585 595 "then after saving the event a new link will appear to allow you to set the " … … 589 599 "je de prijs en aantal tickets kan ingeven" 590 600 591 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 12601 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1979 592 602 msgid "There is already a ticket for the event in the shop" 593 603 msgstr "Er is reeds een ticket voor dit evenement in de shop" … … 597 607 msgstr "Er is geen evenement om te tonen" 598 608 599 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:13 20609 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1319 600 610 msgid "There is no link from the event to a ticket. Save the event again!" 601 611 msgstr "" … … 607 617 msgstr "deze pagina" 608 618 609 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:112 8619 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1127 610 620 msgid "Ticket sales status" 611 621 msgstr "Status ticketverkoop" 612 622 613 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:29 1614 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:56 2623 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:290 624 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:561 615 625 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:227 616 626 msgid "Tickets" 617 627 msgstr "Tickets" 618 628 619 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:54 2629 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:541 620 630 msgid "Tickets are not yet available in the shop." 621 631 msgstr "Er zijn nog geen tickets verkrijgbaar in de winkel" 622 632 623 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:134 9624 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:137 3633 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1348 634 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1376 625 635 msgid "Tickets not fully configured" 626 636 msgstr "De tickets zijn niet geheel geconfigureerd" 627 637 628 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php: 600638 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:599 629 639 msgid "Tickets sold" 630 640 msgstr "Verkochte tickets" 631 641 632 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:71 7642 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:716 633 643 msgid "Tickets to Events" 634 644 msgstr "Tickets voor evenementen" 635 645 636 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:133 9637 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:13 60646 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1338 647 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1359 638 648 msgid "Tickets to participate are available in our shop" 639 649 msgstr "Deelnametickets zijn verkrijgbaar in onze winkel" … … 647 657 msgstr "Om een API sleutel te verkrijgen en Google's uitleg te lezen ga naar" 648 658 649 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:54 8659 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:547 650 660 msgid "To sell tickets Woocommerce needs to be installed and actived" 651 661 msgstr "" … … 653 663 "zijn" 654 664 655 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:115 6665 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1155 656 666 msgid "Total" 657 667 msgstr "Totaal" … … 661 671 msgstr "Niet gedefinieerde map services" 662 672 663 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 28673 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1995 664 674 msgid "Unknown error" 665 675 msgstr "Onbekende fout" 666 676 667 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:46 7677 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:469 668 678 msgid "Upcoming events" 669 679 msgstr "Komende evenementen" … … 674 684 msgstr "Pas de ticket titel aan als de evenement titel is aangepast" 675 685 676 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:24 1686 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:240 677 687 msgid "View" 678 688 msgstr "Bekijk" … … 711 721 "worden" 712 722 713 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:131 9723 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1318 714 724 msgid "You need to set the check box to sell tickets in the event!" 715 725 msgstr "" -
hello-event/trunk/languages/hello-event-sv_SE.l10n.php
r3103737 r3108893 1 1 <?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 !']];2 return ['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 3 3 msgid "" 4 4 msgstr "" 5 "PO-Revision-Date: 2024-06- 16 13:35+0000\n"5 "PO-Revision-Date: 2024-06-26 05:58+0000\n" 6 6 "MIME-Version: 1.0\n" 7 7 "Content-Type: text/plain; charset=UTF-8\n" … … 23 23 "Woocommerce" 24 24 25 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:236 25 26 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:237 26 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:23827 27 msgid "Add New" 28 28 msgstr "Lägg till ny" 29 29 30 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:16 3630 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1666 31 31 msgid "Add to Calendar" 32 32 msgstr "Lägg till i kalender" … … 37 37 msgstr "Lägg-till-i-kalender-knapp" 38 38 39 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:24 239 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:241 40 40 msgid "All" 41 41 msgstr "Alla" … … 57 57 "gratis," 58 58 59 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:15 6160 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 58059 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1586 60 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1607 61 61 msgid "at" 62 62 msgstr "kl." … … 67 67 msgstr "Auto-infogat innehåll" 68 68 69 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:203 70 msgid "Book now" 71 msgstr "Boka plats nu" 72 69 73 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:429 70 74 msgid "" … … 100 104 msgstr "Anpassad sida for evenemang" 101 105 102 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 1106 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1130 103 107 msgid "Date" 104 108 msgstr "Datum" … … 114 118 msgstr "Datumformat" 115 119 116 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:27 5120 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:274 117 121 msgid "Dates and time" 118 122 msgstr "Datum och tid" … … 130 134 msgstr "Standard är \"Event\" i singularis och \"Events\" i pluralis." 131 135 132 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:46 6136 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:468 133 137 msgid "Earlier events" 134 138 msgstr "Tidigare evenemang" 135 139 136 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2 40140 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:239 137 141 msgid "Edit" 138 142 msgstr "Redigera" 139 143 140 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:53 9141 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:58 9144 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:538 145 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:588 142 146 msgid "Edit ticket" 143 147 msgstr "Ändra biljett" 144 148 145 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:56 1146 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 797149 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:560 150 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1864 147 151 msgid "End" 148 152 msgstr "Slut" 149 153 150 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:49 2154 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:491 151 155 msgid "End date" 152 156 msgstr "Slutdatum" … … 157 161 msgstr "Slutdatum och -tid för evenemang" 158 162 159 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 24163 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1991 160 164 msgid "End date is earlier than start date" 161 165 msgstr "Slutdatum är angiven som tidigare än stardatum" 162 166 163 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:50 2167 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:501 164 168 msgid "End time" 165 169 msgstr "Sluttid" 166 170 167 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:70 5168 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:71 4171 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:704 172 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:713 169 173 msgid "Event ticket" 170 174 msgstr "Biljett till evenemang" 171 175 172 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:64 2176 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:641 173 177 msgid "Event:" 174 178 msgstr "Evenemang:" 175 179 176 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:54 3180 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:542 177 181 msgid "Fill in the checkbox above to start sell tickets" 178 182 msgstr "Makera checkboxen ovan för att sälja biljetter" … … 183 187 "Fyll i slug till anpassad sida för evenemang, eller lämna blankt för standard" 184 188 185 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 3189 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132 186 190 msgid "First name" 187 191 msgstr "Förnamn" … … 199 203 msgstr "Gå till evenemangssidan" 200 204 201 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:88 8202 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:14 37205 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:887 206 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1440 203 207 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:368 204 208 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:412 … … 294 298 msgstr "Synkronisera biljetter med evenemang" 295 299 296 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 3300 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132 297 301 msgid "Last name" 298 302 msgstr "Efternamn" … … 312 316 msgstr "Länk från biljett till evenemang" 313 317 314 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:28 3315 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:51 4316 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 780317 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:18 02318 #: ../../../../../../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 318 322 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-map.php:48 319 323 msgid "Location" … … 357 361 msgstr "Namnge evenemang" 358 362 359 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:23 9363 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:238 360 364 msgid "New" 361 365 msgstr "Nytt" 362 366 363 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 20367 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1987 364 368 msgid "No end date given. The date has been set to today." 365 369 msgstr "Ingen slutdatum är angiven. Dagens datum kommer att användas." 366 370 367 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:64 8371 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:647 368 372 msgid "No event corresponds to the event id in the URL" 369 373 msgstr "Inget evenemang svarar mot evenemangsidentiteten i URL" 370 374 371 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:65 2375 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:651 372 376 msgid "No event id in the URL" 373 377 msgstr "Ingen evenemangsidentitet i URL" 374 378 375 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 08379 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1975 376 380 msgid "No event points to the ticket" 377 381 msgstr "Det finns inget evenemang kopplat till biljetten" … … 381 385 msgstr "Ingen plats angiven" 382 386 383 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 16387 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1983 384 388 msgid "No start date given. The date has been set to today." 385 389 msgstr "Ingen startdatum är angiven. Dagens datum kommer att användas." 386 390 391 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:244 387 392 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:245 388 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:246389 393 msgid "Nono" 390 394 msgstr "Nej" … … 410 414 "och som är fullt tillräcklig i de flesta fall." 411 415 412 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 2413 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:114 7416 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1131 417 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1146 414 418 msgid "Order" 415 419 msgstr "Beställning" 416 420 417 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 4421 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133 418 422 msgid "Paid" 419 423 msgstr "Betalt" 420 424 421 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:18 20425 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1887 422 426 msgid "Participate" 423 427 msgstr "Delta" … … 432 436 433 437 #: ../../../../../../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" 438 msgid "" 439 "Please notice that modals may not work properly with older versions of " 440 "Bootstrap" 441 msgstr "" 442 "Observera att modaler kanske inte fungerar korrekt med äldre versioner av " 443 "Bootstrap" 436 444 437 445 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:431 … … 443 451 "tjänst som används." 444 452 445 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:14 29446 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:145 3453 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1432 454 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1456 447 455 msgid "Product is orphaned" 448 456 msgstr "Det finns inget evenemang till produkten" 449 457 450 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 4458 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133 451 459 msgid "Quantity" 452 460 msgstr "Antal" 453 461 454 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:56 3462 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:562 455 463 msgid "Sales" 456 464 msgstr "Försäljning" … … 460 468 msgstr "Spara inställningar" 461 469 462 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:24 3470 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:242 463 471 msgid "Search" 464 472 msgstr "Sök" … … 481 489 msgstr "Välj vad som skall hända när man klickar på ett evenemang i kalendern" 482 490 483 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:52 6491 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:525 484 492 msgid "Sell tickets in the shop" 485 493 msgstr "Sälj biljetter i butiken" 486 494 487 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:53 7495 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:536 488 496 msgid "Shop link" 489 497 msgstr "Länk till butiken" 490 498 491 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:142 6492 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:145 0499 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1429 500 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1453 493 501 msgid "Shortcode can only be used for products of the Hello Event category" 494 502 msgstr "Kortkoden kan endast användas för produkter i kategorin Hello Event" 495 503 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 510 520 msgid "Shortcode can only be used when displaying events" 511 521 msgstr "Shortkoden kan endast användas när man visar evenemang" … … 523 533 msgstr "Slug till anpassad sida" 524 534 525 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:5 60526 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 779527 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 792535 #: ../../../../../../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 528 538 msgid "Start" 529 539 msgstr "Början" 530 540 531 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:47 4541 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:473 532 542 msgid "Start date" 533 543 msgstr "Startdatum" … … 538 548 msgstr "Startdatum och -tid för evenemang" 539 549 540 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:48 3550 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:482 541 551 msgid "Start time" 542 552 msgstr "Starttid" 543 553 544 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php: 1942554 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2009 545 555 msgid "The event was saved but there are error(s)" 546 556 msgstr "Evenemanget sparades men det finns fel" 547 557 548 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:132 1558 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1320 549 559 msgid "" 550 560 "The link from the event does not point to a ticket in Woocommerce. Save the " … … 554 564 "spara evenemanget på nytt." 555 565 556 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php: 1940566 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2007 557 567 msgid "The product was saved but there are error(s)" 558 568 msgstr "Biljetten sparades men det finns fel" 559 569 560 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:132 3570 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1322 561 571 msgid "" 562 572 "The ticket exists in Woocommerce, and is published, but you need to set its " … … 566 576 "sätta pris" 567 577 568 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:132 2578 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1321 569 579 msgid "The ticket exists in Woocommerce, but you need to set it as published" 570 580 msgstr "" … … 572 582 "publicerad" 573 583 574 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:117 3575 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:131 8584 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1172 585 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1317 576 586 msgid "The Woocommerce plugin is not activated" 577 587 msgstr "Tillägget Woocommerce är inte aktiverat" 578 588 579 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:54 4589 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:543 580 590 msgid "" 581 591 "then after saving the event a new link will appear to allow you to set the " … … 585 595 "och antal biljetter" 586 596 587 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 12597 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1979 588 598 msgid "There is already a ticket for the event in the shop" 589 599 msgstr "Det finns redan en biljett till evenemanget i butiken" … … 593 603 msgstr "Det finns inga evenemang att visa" 594 604 595 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:13 20605 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1319 596 606 msgid "There is no link from the event to a ticket. Save the event again!" 597 607 msgstr "" … … 603 613 msgstr "denna sida" 604 614 605 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:112 8615 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1127 606 616 msgid "Ticket sales status" 607 617 msgstr "Försäljningsstatus" 608 618 609 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:29 1610 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:56 2619 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:290 620 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:561 611 621 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:227 612 622 msgid "Tickets" 613 623 msgstr "Biljetter" 614 624 615 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:54 2625 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:541 616 626 msgid "Tickets are not yet available in the shop." 617 627 msgstr "Ännu så länge finns det inte biljetter i butiken." 618 628 619 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:134 9620 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:137 3629 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1348 630 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1376 621 631 msgid "Tickets not fully configured" 622 632 msgstr "Biletter är inte fullständigt konfigurerade" 623 633 624 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php: 600634 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:599 625 635 msgid "Tickets sold" 626 636 msgstr "Sålda biljetter" 627 637 628 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:71 7638 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:716 629 639 msgid "Tickets to Events" 630 640 msgstr "Biljetter till Evenemang" 631 641 632 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:133 9633 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:13 60642 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1338 643 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1359 634 644 msgid "Tickets to participate are available in our shop" 635 645 msgstr "Biljetter för att delta finns i vår butik" … … 644 654 "För att (gratis) erhålla en API-nyckel och läsa Google's förklaring gå till " 645 655 646 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:54 8656 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:547 647 657 msgid "To sell tickets Woocommerce needs to be installed and actived" 648 658 msgstr "För att kunna sälja biljetter måste Woocommerce vara installerat" 649 659 650 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:115 6660 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1155 651 661 msgid "Total" 652 662 msgstr "Totalt" … … 656 666 msgstr "Kart-tjänsten är odefinierad" 657 667 658 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 28668 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1995 659 669 msgid "Unknown error" 660 670 msgstr "Okänt fel" 661 671 662 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:46 7672 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:469 663 673 msgid "Upcoming events" 664 674 msgstr "Kommande evenemang" … … 669 679 msgstr "Uppdatera biljettens titel när evenemangets titel ändras" 670 680 671 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:24 1681 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:240 672 682 msgid "View" 673 683 msgstr "Visa" … … 706 716 msgstr "Du måste lägga in din Google Maps API-nyckel för att kunna se kartor" 707 717 708 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:131 9718 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1318 709 719 msgid "You need to set the check box to sell tickets in the event!" 710 720 msgstr "Du måste aktivera valet i checkboxen för att sälja biljetter !" -
hello-event/trunk/languages/hello-event.pot
r3103737 r3108893 4 4 "Project-Id-Version: Hello Event\n" 5 5 "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" 7 7 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 8 8 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 19 19 msgstr "" 20 20 21 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:236 21 22 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:237 22 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:23823 23 msgid "Add New" 24 24 msgstr "" 25 25 26 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:16 3626 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1666 27 27 msgid "Add to Calendar" 28 28 msgstr "" … … 33 33 msgstr "" 34 34 35 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:24 235 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:241 36 36 msgid "All" 37 37 msgstr "" … … 49 49 msgstr "" 50 50 51 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:15 6152 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 58051 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1586 52 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1607 53 53 msgid "at" 54 54 msgstr "" … … 59 59 msgstr "" 60 60 61 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:203 62 msgid "Book now" 63 msgstr "" 64 61 65 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:429 62 66 msgid "" … … 88 92 msgstr "" 89 93 90 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 194 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1130 91 95 msgid "Date" 92 96 msgstr "" … … 102 106 msgstr "" 103 107 104 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:27 5108 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:274 105 109 msgid "Dates and time" 106 110 msgstr "" … … 118 122 msgstr "" 119 123 120 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:46 6124 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:468 121 125 msgid "Earlier events" 122 126 msgstr "" 123 127 124 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2 40128 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:239 125 129 msgid "Edit" 126 130 msgstr "" 127 131 128 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:53 9129 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:58 9132 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:538 133 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:588 130 134 msgid "Edit ticket" 131 135 msgstr "" 132 136 133 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:56 1134 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 797137 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:560 138 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1864 135 139 msgid "End" 136 140 msgstr "" 137 141 138 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:49 2142 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:491 139 143 msgid "End date" 140 144 msgstr "" … … 145 149 msgstr "" 146 150 147 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 24151 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1991 148 152 msgid "End date is earlier than start date" 149 153 msgstr "" 150 154 151 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:50 2155 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:501 152 156 msgid "End time" 153 157 msgstr "" 154 158 155 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:70 5156 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:71 4159 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:704 160 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:713 157 161 msgid "Event ticket" 158 162 msgstr "" 159 163 160 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:64 2164 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:641 161 165 msgid "Event:" 162 166 msgstr "" 163 167 164 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:54 3168 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:542 165 169 msgid "Fill in the checkbox above to start sell tickets" 166 170 msgstr "" … … 170 174 msgstr "" 171 175 172 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 3176 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132 173 177 msgid "First name" 174 178 msgstr "" … … 186 190 msgstr "" 187 191 188 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:88 8189 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:14 37192 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:887 193 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1440 190 194 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:368 191 195 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:412 … … 267 271 msgstr "" 268 272 269 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 3273 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1132 270 274 msgid "Last name" 271 275 msgstr "" … … 285 289 msgstr "" 286 290 287 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:28 3288 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:51 4289 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 780290 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:18 02291 #: ../../../../../../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 291 295 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-map.php:48 292 296 msgid "Location" … … 328 332 msgstr "" 329 333 330 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:23 9334 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:238 331 335 msgid "New" 332 336 msgstr "" 333 337 334 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 20338 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1987 335 339 msgid "No end date given. The date has been set to today." 336 340 msgstr "" 337 341 338 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:64 8342 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:647 339 343 msgid "No event corresponds to the event id in the URL" 340 344 msgstr "" 341 345 342 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:65 2346 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:651 343 347 msgid "No event id in the URL" 344 348 msgstr "" 345 349 346 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 08350 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1975 347 351 msgid "No event points to the ticket" 348 352 msgstr "" … … 352 356 msgstr "" 353 357 354 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 16358 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1983 355 359 msgid "No start date given. The date has been set to today." 356 360 msgstr "" 357 361 362 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:244 358 363 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:245 359 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:246360 364 msgid "Nono" 361 365 msgstr "" … … 379 383 msgstr "" 380 384 381 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 2382 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:114 7385 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1131 386 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1146 383 387 msgid "Order" 384 388 msgstr "" 385 389 386 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:113 4390 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133 387 391 msgid "Paid" 388 392 msgstr "" 389 393 390 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:18 20394 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1887 391 395 msgid "Participate" 392 396 msgstr "" … … 399 403 400 404 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:563 401 msgid "Please notice that modals do not work properly with Bootstrap v4.0" 405 msgid "" 406 "Please notice that modals may not work properly with older versions of " 407 "Bootstrap" 402 408 msgstr "" 403 409 … … 408 414 msgstr "" 409 415 416 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1432 417 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1456 418 msgid "Product is orphaned" 419 msgstr "" 420 421 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1133 422 msgid "Quantity" 423 msgstr "" 424 425 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:562 426 msgid "Sales" 427 msgstr "" 428 429 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:395 430 msgid "Save Settings" 431 msgstr "" 432 433 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:242 434 msgid "Search" 435 msgstr "" 436 437 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-map.php:57 438 msgid "See in Open Street Map" 439 msgstr "" 440 441 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:181 442 msgid "Select map service" 443 msgstr "" 444 445 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:483 446 msgid "Select the dateformat used in datepickers and displays." 447 msgstr "" 448 449 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:420 450 msgid "" 451 "Select what should happen when a user clicks on an event in the calendar" 452 msgstr "" 453 454 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:525 455 msgid "Sell tickets in the shop" 456 msgstr "" 457 458 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:536 459 msgid "Shop link" 460 msgstr "" 461 410 462 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1429 411 463 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1453 412 msgid "Product is orphaned"413 msgstr ""414 415 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1134416 msgid "Quantity"417 msgstr ""418 419 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:563420 msgid "Sales"421 msgstr ""422 423 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:395424 msgid "Save Settings"425 msgstr ""426 427 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:243428 msgid "Search"429 msgstr ""430 431 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-map.php:57432 msgid "See in Open Street Map"433 msgstr ""434 435 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:181436 msgid "Select map service"437 msgstr ""438 439 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:483440 msgid "Select the dateformat used in datepickers and displays."441 msgstr ""442 443 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-settings.php:420444 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:526449 msgid "Sell tickets in the shop"450 msgstr ""451 452 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:537453 msgid "Shop link"454 msgstr ""455 456 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1426457 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1450458 464 msgid "Shortcode can only be used for products of the Hello Event category" 459 465 msgstr "" 460 466 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 475 483 msgid "Shortcode can only be used when displaying events" 476 484 msgstr "" … … 488 496 msgstr "" 489 497 490 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:5 60491 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 779492 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1 792498 #: ../../../../../../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 493 501 msgid "Start" 494 502 msgstr "" 495 503 496 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:47 4504 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:473 497 505 msgid "Start date" 498 506 msgstr "" … … 503 511 msgstr "" 504 512 505 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:48 3513 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:482 506 514 msgid "Start time" 507 515 msgstr "" 508 516 509 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php: 1942517 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2009 510 518 msgid "The event was saved but there are error(s)" 511 519 msgstr "" 512 520 513 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:132 1521 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1320 514 522 msgid "" 515 523 "The link from the event does not point to a ticket in Woocommerce. Save the " … … 517 525 msgstr "" 518 526 519 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php: 1940527 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:2007 520 528 msgid "The product was saved but there are error(s)" 521 529 msgstr "" 522 530 523 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:132 3531 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1322 524 532 msgid "" 525 533 "The ticket exists in Woocommerce, and is published, but you need to set its " … … 527 535 msgstr "" 528 536 529 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:132 2537 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1321 530 538 msgid "The ticket exists in Woocommerce, but you need to set it as published" 531 539 msgstr "" 532 540 533 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:117 3534 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:131 8541 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1172 542 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1317 535 543 msgid "The Woocommerce plugin is not activated" 536 544 msgstr "" 537 545 538 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:54 4546 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:543 539 547 msgid "" 540 548 "then after saving the event a new link will appear to allow you to set the " … … 542 550 msgstr "" 543 551 544 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 12552 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1979 545 553 msgid "There is already a ticket for the event in the shop" 546 554 msgstr "" … … 550 558 msgstr "" 551 559 552 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:13 20560 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1319 553 561 msgid "There is no link from the event to a ticket. Save the event again!" 554 562 msgstr "" … … 558 566 msgstr "" 559 567 560 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:112 8568 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1127 561 569 msgid "Ticket sales status" 562 570 msgstr "" 563 571 564 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:29 1565 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:56 2572 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:290 573 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:561 566 574 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:227 567 575 msgid "Tickets" 568 576 msgstr "" 569 577 570 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:54 2578 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:541 571 579 msgid "Tickets are not yet available in the shop." 572 580 msgstr "" 573 581 574 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:134 9575 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:137 3582 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1348 583 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1376 576 584 msgid "Tickets not fully configured" 577 585 msgstr "" 578 586 579 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php: 600587 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:599 580 588 msgid "Tickets sold" 581 589 msgstr "" 582 590 583 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:71 7591 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:716 584 592 msgid "Tickets to Events" 585 593 msgstr "" 586 594 587 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:133 9588 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:13 60595 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1338 596 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1359 589 597 msgid "Tickets to participate are available in our shop" 590 598 msgstr "" … … 598 606 msgstr "" 599 607 600 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:54 8608 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:547 601 609 msgid "To sell tickets Woocommerce needs to be installed and actived" 602 610 msgstr "" 603 611 604 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:115 6612 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1155 605 613 msgid "Total" 606 614 msgstr "" … … 610 618 msgstr "" 611 619 612 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:19 28620 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1995 613 621 msgid "Unknown error" 614 622 msgstr "" 615 623 616 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:46 7624 #: ../../../../../../Programs/PLUGINS/hello-event/includes/hello-event-list-events.php:469 617 625 msgid "Upcoming events" 618 626 msgstr "" … … 623 631 msgstr "" 624 632 625 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:24 1633 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:240 626 634 msgid "View" 627 635 msgstr "" … … 653 661 msgstr "" 654 662 655 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:131 9663 #: ../../../../../../Programs/PLUGINS/hello-event/hello_event.php:1318 656 664 msgid "You need to set the check box to sell tickets in the event!" 657 665 msgstr "" -
hello-event/trunk/readme.txt
r3103737 r3108893 73 73 74 74 == 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 75 80 = 1.3.14 76 81 * 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.