Changeset 2873773
- Timestamp:
- 03/02/2023 03:46:17 PM (3 years ago)
- Location:
- hello-event/trunk
- Files:
-
- 16 edited
-
css/frontend.css (modified) (1 diff)
-
hello_event.php (modified) (1 diff)
-
includes/css/frontend-calendar.css (modified) (1 diff)
-
includes/css/frontend-maps.css (modified) (1 diff)
-
includes/hello-event-calendar.php (modified) (5 diffs)
-
includes/hello-event-list-events.php (modified) (3 diffs)
-
includes/hello-event-map.php (modified) (1 diff)
-
includes/hello-event-openstreet-map.php (modified) (1 diff)
-
includes/sass/frontend-list.scss (modified) (1 diff)
-
languages/hello-event-en_US.mo (modified) (1 prop) (previous)
-
languages/hello-event-fr_FR.mo (modified) (1 prop) (previous)
-
languages/hello-event-fr_FR.po (modified) (9 diffs, 1 prop)
-
languages/hello-event-sv_SE.mo (modified) (1 prop) (previous)
-
languages/hello-event-sv_SE.po (modified) (1 prop)
-
languages/hello-event.pot (modified) (5 diffs, 1 prop)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
hello-event/trunk/css/frontend.css
r1893011 r2873773 9 9 10 10 11 -
hello-event/trunk/hello_event.php
r2272675 r2873773 13 13 * Author URI: https://www.tekomatik.com/about 14 14 * 15 * Version: 1.3. 215 * Version: 1.3.4 16 16 * 17 17 * Text Domain: hello-event -
hello-event/trunk/includes/css/frontend-calendar.css
r1893011 r2873773 24 24 } 25 25 26 div.event-modal-description div.date {color: #888;} 27 div.event-modal-description div.date::before { 28 font-family: "Font Awesome\ 5 Free"; 29 content: "\f073"; /* calendar icon */ 30 display: inline-block; 31 padding-right: 3px; 32 vertical-align: top;; 33 } 34 26 35 div.event-modal-description div.time {color: #888;} 27 36 div.event-modal-description div.time::before { -
hello-event/trunk/includes/css/frontend-maps.css
r1893011 r2873773 7 7 /* Openstreet Maps */ 8 8 #open-map { 9 width:100%; height:400px; border:2px solid # 888;9 width:100%; height:400px; border:2px solid #5f6f7f; 10 10 } 11 12 div.event-location {padding:1em; background: #5f6f7f; color: white;} -
hello-event/trunk/includes/hello-event-calendar.php
r2272675 r2873773 37 37 $start = $_REQUEST['start'] ; 38 38 $end = $_REQUEST['end'] ; 39 // Fullcalendar needs 1 day to be added to the end date 40 $fix_end_date = isset($_REQUEST['fix_end_date']) ? $_REQUEST['fix_end_date'] : false; 39 41 $cf_query = array( 40 42 'post_type' => HELLO_EVENT::EVENT_SLUG, … … 67 69 // debug_log("On with ID = " . $id); 68 70 $url = get_permalink($id); 71 $start_date = get_post_meta( $id, 'start_date', true ); 72 $end_date = get_post_meta( $id, 'end_date', true ); 69 73 $start_time = get_post_meta( $id, 'start_time', true ); 70 74 $end_time = get_post_meta( $id, 'end_time', true ); … … 74 78 $start_time = $hello_event_object->transform_iso_time($start_time); 75 79 $location = get_post_meta( $id, 'location', true ); 80 $dates_html = "<div class='date'>$start_date - $end_date</div>"; 76 81 $start_html = "<div class='time'>$start_time</div>"; 77 82 $location_html = "<div class='location'>$location</div>"; … … 83 88 $ev['end'] = get_post_meta( $id, 'end_date', true ); 84 89 if ( !$ev['end'] ) { $ev['end'] = get_post_meta( $id, 'start_date', true ); } 90 // For the end date to display correctly in fullcalendar we need to add 1 day to the end date! 91 if ($fix_end_date) { 92 $end_fixed_date = new \DateTime($ev['end']); 93 $end_fixed_date->modify('+1 day'); 94 $ev['end'] = $end_fixed_date->format('Y-m-d'); 95 } 96 85 97 //$excerpt = apply_filters('the_excerpt', get_post_field('post_excerpt', $post->ID)); 86 98 //$ev['description'] = $excerpt . $see_more ; 87 $ev['description'] = "<div class='event-modal-description'>" . $ start_html . $location_html . $hello_event_object->real_or_computed_excerpt($id) . $see_more ."</div>";99 $ev['description'] = "<div class='event-modal-description'>" . $dates_html . $start_html . $location_html . $hello_event_object->real_or_computed_excerpt($id) . $see_more ."</div>"; 88 100 $ev['url'] = $url; 89 101 $ev = apply_filters('event-information', $ev, $id); // Allow other plugin to complement the event information … … 99 111 )); 100 112 $events = json_encode($events); 101 //debug_log("Events: " . $events);102 113 echo $events; 103 114 wp_die(); -
hello-event/trunk/includes/hello-event-list-events.php
r2272674 r2873773 104 104 list($start_year, $start_month, $start_day) = explode("-", $start_date_db); 105 105 $start_month_long = $wp_locale->get_month_abbrev($wp_locale->get_month($start_month)); 106 list($end_year, $end_month, $end_day) = explode("-", $end_date_db); 106 if ($end_date_db) 107 list($end_year, $end_month, $end_day) = explode("-", $end_date_db); 108 else 109 list($end_year, $end_month, $end_day) = explode("-", $start_date_db); 107 110 $end_month_long = $wp_locale->get_month_abbrev($wp_locale->get_month($end_month)); 108 111 $start_time = get_post_meta( $id, 'start_time', true ); … … 373 376 $args = shortcode_atts( array( 374 377 'limit' => -1, 375 'show' => 'default' 378 'show' => 'default', 379 'link_to_book' => false, 376 380 ), $args ); 377 381 wp_enqueue_script('jquery-ui-tabs'); … … 388 392 'select' => 'future', 389 393 'limit' => $args['limit'], 390 'show' => $args['show'] 394 'show' => $args['show'], 395 'link_to_book' => $args['link_to_book'], 391 396 )); 392 397 $past_txt = __('Earlier events', 'hello-event'); -
hello-event/trunk/includes/hello-event-map.php
r1893011 r2873773 26 26 27 27 28 function get_map($ post_id) {28 function get_map($args) { 29 29 global $post; 30 $id = $post_id ? $post_id : $post->ID; 31 $mapservice = isset(get_option( 'hello_event')['hello_field_select_map_api']) ? get_option( 'hello_event')['hello_field_select_map_api'] : 'undefined'; 32 switch ($mapservice) { 33 case 'openstreetmap': 34 $html = $this->get_openstreet_map($id); 35 break; 30 $args = shortcode_atts( array( 31 'id' => $post->ID, 32 'show_map_links' => false, 33 'show_map' => true, 34 ), $args ); 35 36 $id = $args['id']; 37 $location = get_post_meta($id, 'location', true); 38 39 $coordinates = get_post_meta($id, 'coordinates'); 40 // global $hello_event_again; 41 // debug_log("MAP LOCATION for id $id : " . print_r($location, true)); 42 // $mycat = $hello_event_again->get_category_of_event_id($id); 43 // debug_log("Category ". print_r($mycat, true)); 44 // debug_log("Coordinates ". print_r($coordinates, true)); 45 46 $html = ''; 47 $html = '<div class="event-location">'; 48 $html .= '<b>' . __( 'Location', 'hello-event' ) . ':</b> '; 49 if ($location) { 50 $html .= $location; 51 if ($args['show_map_links']) { 52 $escaped_location = urlencode($location); 53 $google_url = "https://www.google.com/maps/search/?api=1&zoom=14&query=".$escaped_location; 54 $google_url = "https://www.google.com/maps/search/?api=1&zoom=14&q=".$coordinates['lat'].",".$coordinates['lng']; 55 $open_street_url = "http://www.openstreetmap.org/search?query=".$escaped_location; 56 // $html .= '<br/><a href="'.$google_url.'" target="_blank">' . __( 'See in Google Maps', 'hello-event' ) .'</a>'; 57 $html .= '<br/><a href="'.$open_street_url.'" target="_blank">' . __( 'See in Open Street Map', 'hello-event' ) .'</a>'; 58 } 59 } 60 else 61 $html .= __('No location given', 'hello-event'); 62 $html .='</div>'; 63 64 if ($args['show_map']) { 65 $mapservice = isset(get_option( 'hello_event')['hello_field_select_map_api']) ? get_option( 'hello_event')['hello_field_select_map_api'] : 'undefined'; 66 switch ($mapservice) { 67 case 'openstreetmap': 68 $html .= $this->get_openstreet_map($id); 69 break; 36 70 37 case 'googlemap' :38 $html= $this->get_google_map($id);39 break;71 case 'googlemap' : 72 $html .= $this->get_google_map($id); 73 break; 40 74 41 case 'undefined' :42 $html= __("Undefined map services", 'hello-event');43 break;75 case 'undefined' : 76 $html .= __("Undefined map services", 'hello-event'); 77 break; 44 78 79 } 45 80 } 46 81 return $html; -
hello-event/trunk/includes/hello-event-openstreet-map.php
r2122866 r2873773 50 50 $event_id = $args['event_id']; 51 51 $location = $args['location']; 52 52 53 $html = ''; 54 // $html .= "LAT=$lat LNG=$lng LOCATION=$location"; 53 55 $html .= '<div id="open-map""></div>'; 54 56 $html .= "<script>var lat=".$lat.";" ; -
hello-event/trunk/includes/sass/frontend-list.scss
r2272672 r2873773 136 136 vertical-align: top;; 137 137 } 138 139 -
hello-event/trunk/languages/hello-event-en_US.mo
-
Property
svn:executable
set to
*
-
Property
svn:executable
set to
-
hello-event/trunk/languages/hello-event-fr_FR.mo
-
Property
svn:executable
set to
*
-
Property
svn:executable
set to
-
hello-event/trunk/languages/hello-event-fr_FR.po
-
Property
svn:executable
set to
*
r2272672 r2873773 3 3 "Project-Id-Version: Hello Event\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2020-0 2-02 14:57+0000\n"6 "PO-Revision-Date: 2020-0 2-02 18:35+0000\n"7 "Last-Translator: Christer Fernstr öm <christer@fernstromOnThe.net>\n"5 "POT-Creation-Date: 2020-05-04 14:59+0000\n" 6 "PO-Revision-Date: 2020-05-10 06:09+0000\n" 7 "Last-Translator: Christer Fernstrom <christer@fernstromonthe.net>\n" 8 8 "Language-Team: French (France)\n" 9 9 "Language: fr_FR\n" … … 13 13 "Content-Transfer-Encoding: 8bit\n" 14 14 "X-Generator: Loco https://localise.biz/\n" 15 "X-Loco-Version: 2.3. 0; wp-5.2.3"16 17 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:22 318 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:22 415 "X-Loco-Version: 2.3.1; wp-5.3.2" 16 17 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:226 18 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:227 19 19 msgid "Add New" 20 20 msgstr "Ajouter" 21 21 22 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:22 522 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:228 23 23 msgid "New" 24 24 msgstr "Nouveau" 25 25 26 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:22 626 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:229 27 27 msgid "Edit" 28 28 msgstr "Modifier" 29 29 30 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:2 2730 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:230 31 31 msgid "View" 32 32 msgstr "Voir" 33 33 34 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:2 2834 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:231 35 35 msgid "All" 36 36 msgstr "Tous les" 37 37 38 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:2 2938 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:232 39 39 msgid "Search" 40 40 msgstr "Chercher" 41 41 42 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:23 143 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:23 242 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:234 43 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:235 44 44 msgid "Nono" 45 45 msgstr "Aucun" 46 46 47 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:26 147 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:264 48 48 msgid "Dates and time" 49 49 msgstr "Date et l'heure" 50 50 51 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:269 52 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:482 53 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1520 54 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1542 51 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:272 52 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:485 53 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1535 54 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1557 55 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:40 55 56 msgid "Location" 56 57 msgstr "Lieu" 57 58 58 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:2 7759 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:53 059 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:280 60 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:533 60 61 msgid "Tickets" 61 62 msgstr "Billets" 62 63 63 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:44 264 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:445 64 65 msgid "Start date" 65 66 msgstr "Date de début" 66 67 67 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:45 168 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:454 68 69 msgid "Start time" 69 70 msgstr "Heure de début" 70 71 71 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:46 072 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:463 72 73 msgid "End date" 73 74 msgstr "Date de fin" 74 75 75 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:47 076 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:473 76 77 msgid "End time" 77 78 msgstr "Heure de fin" 78 79 79 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:49 480 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:497 80 81 msgid "Sell tickets in the shop" 81 82 msgstr "Vendre des billets dans la boutique" 82 83 83 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:50 584 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:508 84 85 msgid "Shop link" 85 86 msgstr "Liens vers la boutique" 86 87 87 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:5 0788 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:5 5788 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:510 89 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:560 89 90 msgid "Edit ticket" 90 91 msgstr "Modifier billet" 91 92 92 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:51 093 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:513 93 94 msgid "Tickets are not yet available in the shop." 94 95 msgstr "Des billets ne sont pas encore en vente dans la boutique." 95 96 96 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:51 197 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:514 97 98 msgid "Fill in the checkbox above to start sell tickets" 98 99 msgstr "Cocher la case ci-dessus pour commencer la vente de billets" 99 100 100 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:51 2101 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:515 101 102 msgid "" 102 103 "then after saving the event a new link will appear to allow you to set the " … … 106 107 "permettra de définir tarif et quantité de billets." 107 108 108 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:51 6109 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:519 109 110 msgid "To sell tickets Woocommerce needs to be installed and actived" 110 111 msgstr "Afine de vendre des billet, Woocommerce doit être installé et activé" 111 112 112 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:5 28113 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:15 19114 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:15 32113 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:531 114 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1534 115 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1547 115 116 msgid "Start" 116 117 msgstr "Début" 117 118 118 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:5 29119 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:15 37119 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:532 120 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1552 120 121 msgid "End" 121 122 msgstr "Fin" 122 123 123 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:53 1124 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:534 124 125 msgid "Sales" 125 126 msgstr "Ventes" 126 127 127 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:5 68128 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:571 128 129 msgid "Tickets sold" 129 130 msgstr "Billets vendus" 130 131 131 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:61 0132 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:613 132 133 msgid "Event:" 133 134 msgstr "Evénement :" 134 135 135 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:61 6136 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:619 136 137 msgid "No event corresponds to the event id in the URL" 137 138 msgstr "" 138 139 "Aucun événement ne correspond à l'identifiant de l'événement dans l'URL" 139 140 140 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:62 0141 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:623 141 142 msgid "No event id in the URL" 142 143 msgstr "Aucun identifiant d'événement dans l'URL" 143 144 144 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:642 145 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:645 146 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:654 145 147 msgid "Event ticket" 146 148 msgstr "Billet d'événement" 147 149 148 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:813 149 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1247 150 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:657 151 msgid "Tickets to Events" 152 msgstr "billets d'événements" 153 154 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:828 155 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1262 156 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:300 157 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:344 150 158 msgid "Goto the event" 151 159 msgstr "Aller à l'événement" 152 160 153 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:9 79161 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:994 154 162 msgid "Ticket sales status" 155 163 msgstr "Situation de vente de billets" 156 164 157 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:9 82165 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:997 158 166 msgid "Date" 159 167 msgstr "Date" 160 168 161 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:983162 169 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:998 170 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1013 163 171 msgid "Order" 164 172 msgstr "Commande" 165 173 166 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:9 84174 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:999 167 175 msgid "Last name" 168 176 msgstr "Nom" 169 177 170 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:9 84178 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:999 171 179 msgid "First name" 172 180 msgstr "Prénom" 173 181 174 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php: 985182 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1000 175 183 msgid "Quantity" 176 184 msgstr "Quantité" 177 185 178 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php: 985186 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1000 179 187 msgid "Paid" 180 188 msgstr "Réglé" 181 189 182 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:10 07190 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1022 183 191 msgid "Total" 184 192 msgstr "Total" 185 193 186 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:10 21187 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1 189188 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:12 77189 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1 289190 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:13 14191 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:13 31192 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:13 44193 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:13 56194 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:13 68194 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1036 195 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1204 196 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1292 197 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1304 198 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1329 199 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1346 200 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1359 201 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1371 202 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1383 195 203 msgid "Shortcode can only be used when displaying events" 196 204 msgstr "Shortcode à utiliser uniquement avec des événements" 197 205 198 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:10 24199 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:11 58206 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1039 207 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1173 200 208 msgid "The Woocommerce plugin is not activated" 201 209 msgstr "L'extension Woocommerce n'est pas activée" 202 210 203 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:11 59211 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1174 204 212 msgid "You need to set the check box to sell tickets in the event!" 205 213 msgstr "Vous devez cocher la case pour vendre des billets !" 206 214 207 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:11 60215 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1175 208 216 msgid "There is no link from the event to a ticket. Save the event again!" 209 217 msgstr "" … … 211 219 "l'événement de nouveau !" 212 220 213 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:11 61221 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1176 214 222 msgid "" 215 223 "The link from the event does not point to a ticket in Woocommerce. Save the " … … 219 227 "Veuillez enregistrer l'événement de nouveau !" 220 228 221 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:11 62229 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1177 222 230 msgid "The ticket exists in Woocommerce, but you need to set it as published" 223 231 msgstr "" … … 225 233 "en publié" 226 234 227 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:11 63235 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1178 228 236 msgid "" 229 237 "The ticket exists in Woocommerce, and is published, but you need to set its " … … 233 241 "devez aussi définir son prix" 234 242 235 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:11 78243 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1193 236 244 msgid "Tickets to participate are available in our shop" 237 245 msgstr "Des billets pour participer sont en vente dans notre boutique" 238 246 239 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1 186247 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1201 240 248 msgid "Tickets not fully configured" 241 249 msgstr "Les billets ne sont pas complètement configurés" 242 250 243 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:12 36244 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:12 60251 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1251 252 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1275 245 253 msgid "Shortcode can only be used for products of the Hello Event category" 246 254 msgstr "" … … 248 256 "Event" 249 257 250 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:12 39251 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:12 63258 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1254 259 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1278 252 260 msgid "Product is orphaned" 253 261 msgstr "Aucun événement correspond au produit" 254 262 255 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:13 11256 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:13 28263 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1326 264 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1343 257 265 msgid "at" 258 266 msgstr "à" 259 267 260 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:13 76268 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1391 261 269 msgid "Add to Calendar" 262 270 msgstr "Ajouter au calendrier" 263 271 264 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:15 51272 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1566 265 273 msgid "Participate" 266 274 msgstr "Participer" 267 275 268 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:16 37276 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1652 269 277 msgid "No event points to the ticket" 270 278 msgstr "Aucun événement est associé au billet" 271 279 272 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:16 41280 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1656 273 281 msgid "There is already a ticket for the event in the shop" 274 282 msgstr "Il y a déjà un ticket pour l'événement dans la boutique" 275 283 276 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:16 45284 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1660 277 285 msgid "No start date given. The date has been set to today." 278 286 msgstr "Aucune date de début donnée. La date d'aujourd'hui est utilisée." 279 287 280 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:16 49288 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1664 281 289 msgid "No end date given. The date has been set to today." 282 290 msgstr "Aucune date de fin donnée. La date d'aujourd'hui est utilisée." 283 291 284 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:16 53292 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1668 285 293 msgid "End date is earlier than start date" 286 294 msgstr "La date de fin est avant la date de début" 287 295 288 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:16 57296 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1672 289 297 msgid "Unknown error" 290 298 msgstr "Erreur inconnue" 291 299 292 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:16 69300 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1684 293 301 msgid "The product was saved but there are error(s)" 294 302 msgstr "Le billet a été enregistré mais il y a des erreur(s)" 295 303 296 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:16 71304 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1686 297 305 msgid "The event was saved but there are error(s)" 298 306 msgstr "L'événement a été enregistré mais il y a des erreur(s)" 299 307 300 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:42 308 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:47 309 msgid "See in Google Maps" 310 msgstr "Vois dans Google Maps" 311 312 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:48 313 msgid "See in Open Street Map" 314 msgstr "Voir dans Open Street Map" 315 316 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:52 317 msgid "No location given" 318 msgstr "Aucune position donnée" 319 320 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:67 301 321 msgid "Undefined map services" 302 322 msgstr "Service de cartographie non defini" 303 323 304 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php: 61324 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:87 305 325 msgid "" 306 326 "You need to register your Google Maps API Key before the map can be shown" … … 309 329 "la carte" 310 330 311 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:1 04331 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:118 312 332 msgid "Full day" 313 333 msgstr "Journée entière" 314 334 315 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php: 280335 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:367 316 336 msgid "There is no event to show" 317 337 msgstr "Il n'y a pas d'événement à montrer" 318 338 319 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:3 07339 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:397 320 340 msgid "Earlier events" 321 341 msgstr "Evénements précédents" 322 342 323 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:3 08343 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:398 324 344 msgid "Upcoming events" 325 345 msgstr "" -
Property
svn:executable
set to
-
hello-event/trunk/languages/hello-event-sv_SE.mo
-
Property
svn:executable
set to
*
-
Property
svn:executable
set to
-
hello-event/trunk/languages/hello-event-sv_SE.po
-
Property
svn:executable
set to
*
-
Property
svn:executable
set to
-
hello-event/trunk/languages/hello-event.pot
-
Property
svn:executable
set to
*
r2272670 r2873773 4 4 "Project-Id-Version: Hello Event\n" 5 5 "Report-Msgid-Bugs-To: \n" 6 "POT-Creation-Date: 2020-0 2-02 14:57+0000\n"6 "POT-Creation-Date: 2020-05-04 14:59+0000\n" 7 7 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 8 8 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 15 15 "X-Generator: Loco https://localise.biz/" 16 16 17 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:22 318 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:22 417 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:226 18 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:227 19 19 msgid "Add New" 20 20 msgstr "" 21 21 22 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:22 522 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:228 23 23 msgid "New" 24 24 msgstr "" 25 25 26 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:22 626 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:229 27 27 msgid "Edit" 28 28 msgstr "" 29 29 30 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:2 2730 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:230 31 31 msgid "View" 32 32 msgstr "" 33 33 34 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:2 2834 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:231 35 35 msgid "All" 36 36 msgstr "" 37 37 38 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:2 2938 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:232 39 39 msgid "Search" 40 40 msgstr "" 41 41 42 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:23 143 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:23 242 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:234 43 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:235 44 44 msgid "Nono" 45 45 msgstr "" 46 46 47 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:26 147 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:264 48 48 msgid "Dates and time" 49 49 msgstr "" 50 50 51 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:269 52 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:482 53 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1520 54 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1542 51 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:272 52 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:485 53 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1535 54 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1557 55 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:40 55 56 msgid "Location" 56 57 msgstr "" 57 58 58 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:2 7759 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:53 059 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:280 60 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:533 60 61 msgid "Tickets" 61 62 msgstr "" 62 63 63 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:44 264 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:445 64 65 msgid "Start date" 65 66 msgstr "" 66 67 67 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:45 168 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:454 68 69 msgid "Start time" 69 70 msgstr "" 70 71 71 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:46 072 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:463 72 73 msgid "End date" 73 74 msgstr "" 74 75 75 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:47 076 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:473 76 77 msgid "End time" 77 78 msgstr "" 78 79 79 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:49 480 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:497 80 81 msgid "Sell tickets in the shop" 81 82 msgstr "" 82 83 83 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:50 584 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:508 84 85 msgid "Shop link" 85 86 msgstr "" 86 87 87 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:5 0788 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:5 5788 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:510 89 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:560 89 90 msgid "Edit ticket" 90 91 msgstr "" 91 92 92 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:51 093 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:513 93 94 msgid "Tickets are not yet available in the shop." 94 95 msgstr "" 95 96 96 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:51 197 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:514 97 98 msgid "Fill in the checkbox above to start sell tickets" 98 99 msgstr "" 99 100 100 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:51 2101 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:515 101 102 msgid "" 102 103 "then after saving the event a new link will appear to allow you to set the " … … 104 105 msgstr "" 105 106 106 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:51 6107 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:519 107 108 msgid "To sell tickets Woocommerce needs to be installed and actived" 108 109 msgstr "" 109 110 110 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:5 28111 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:15 19112 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:15 32111 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:531 112 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1534 113 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1547 113 114 msgid "Start" 114 115 msgstr "" 115 116 116 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:5 29117 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:15 37117 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:532 118 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1552 118 119 msgid "End" 119 120 msgstr "" 120 121 121 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:53 1122 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:534 122 123 msgid "Sales" 123 124 msgstr "" 124 125 125 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:5 68126 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:571 126 127 msgid "Tickets sold" 127 128 msgstr "" 128 129 129 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:61 0130 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:613 130 131 msgid "Event:" 131 132 msgstr "" 132 133 133 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:61 6134 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:619 134 135 msgid "No event corresponds to the event id in the URL" 135 136 msgstr "" 136 137 137 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:62 0138 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:623 138 139 msgid "No event id in the URL" 139 140 msgstr "" 140 141 141 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:642 142 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:645 143 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:654 142 144 msgid "Event ticket" 143 145 msgstr "" 144 146 145 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:813 146 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1247 147 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:657 148 msgid "Tickets to Events" 149 msgstr "" 150 151 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:828 152 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1262 153 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:300 154 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:344 147 155 msgid "Goto the event" 148 156 msgstr "" 149 157 150 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:9 79158 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:994 151 159 msgid "Ticket sales status" 152 160 msgstr "" 153 161 154 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:9 82162 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:997 155 163 msgid "Date" 156 164 msgstr "" 157 165 158 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:983159 166 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:998 167 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1013 160 168 msgid "Order" 161 169 msgstr "" 162 170 163 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:9 84171 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:999 164 172 msgid "Last name" 165 173 msgstr "" 166 174 167 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:9 84175 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:999 168 176 msgid "First name" 169 177 msgstr "" 170 178 171 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php: 985179 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1000 172 180 msgid "Quantity" 173 181 msgstr "" 174 182 175 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php: 985183 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1000 176 184 msgid "Paid" 177 185 msgstr "" 178 186 179 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:10 07187 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1022 180 188 msgid "Total" 181 189 msgstr "" 182 190 183 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:10 21184 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1 189185 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:12 77186 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1 289187 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:13 14188 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:13 31189 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:13 44190 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:13 56191 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:13 68191 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1036 192 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1204 193 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1292 194 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1304 195 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1329 196 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1346 197 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1359 198 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1371 199 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1383 192 200 msgid "Shortcode can only be used when displaying events" 193 201 msgstr "" 194 202 195 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:10 24196 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:11 58203 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1039 204 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1173 197 205 msgid "The Woocommerce plugin is not activated" 198 206 msgstr "" 199 207 200 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:11 59208 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1174 201 209 msgid "You need to set the check box to sell tickets in the event!" 202 210 msgstr "" 203 211 204 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:11 60212 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1175 205 213 msgid "There is no link from the event to a ticket. Save the event again!" 206 214 msgstr "" 207 215 208 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:11 61216 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1176 209 217 msgid "" 210 218 "The link from the event does not point to a ticket in Woocommerce. Save the " … … 212 220 msgstr "" 213 221 214 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:11 62222 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1177 215 223 msgid "The ticket exists in Woocommerce, but you need to set it as published" 216 224 msgstr "" 217 225 218 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:11 63226 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1178 219 227 msgid "" 220 228 "The ticket exists in Woocommerce, and is published, but you need to set its " … … 222 230 msgstr "" 223 231 224 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:11 78232 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1193 225 233 msgid "Tickets to participate are available in our shop" 226 234 msgstr "" 227 235 228 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1 186236 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1201 229 237 msgid "Tickets not fully configured" 230 238 msgstr "" 231 239 232 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:12 36233 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:12 60240 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1251 241 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1275 234 242 msgid "Shortcode can only be used for products of the Hello Event category" 235 243 msgstr "" 236 244 237 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:12 39238 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:12 63245 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1254 246 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1278 239 247 msgid "Product is orphaned" 240 248 msgstr "" 241 249 242 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:13 11243 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:13 28250 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1326 251 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1343 244 252 msgid "at" 245 253 msgstr "" 246 254 247 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:13 76255 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1391 248 256 msgid "Add to Calendar" 249 257 msgstr "" 250 258 251 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:15 51259 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1566 252 260 msgid "Participate" 253 261 msgstr "" 254 262 255 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:16 37263 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1652 256 264 msgid "No event points to the ticket" 257 265 msgstr "" 258 266 259 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:16 41267 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1656 260 268 msgid "There is already a ticket for the event in the shop" 261 269 msgstr "" 262 270 263 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:16 45271 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1660 264 272 msgid "No start date given. The date has been set to today." 265 273 msgstr "" 266 274 267 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:16 49275 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1664 268 276 msgid "No end date given. The date has been set to today." 269 277 msgstr "" 270 278 271 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:16 53279 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1668 272 280 msgid "End date is earlier than start date" 273 281 msgstr "" 274 282 275 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:16 57283 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1672 276 284 msgid "Unknown error" 277 285 msgstr "" 278 286 279 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:16 69287 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1684 280 288 msgid "The product was saved but there are error(s)" 281 289 msgstr "" 282 290 283 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:16 71291 #: ../../../../../../Programs/PLUGINS/hello_event/svn/hello_event.php:1686 284 292 msgid "The event was saved but there are error(s)" 285 293 msgstr "" 286 294 287 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:42 295 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:47 296 msgid "See in Google Maps" 297 msgstr "" 298 299 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:48 300 msgid "See in Open Street Map" 301 msgstr "" 302 303 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:52 304 msgid "No location given" 305 msgstr "" 306 307 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:67 288 308 msgid "Undefined map services" 289 309 msgstr "" 290 310 291 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php: 61311 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-map.php:87 292 312 msgid "" 293 313 "You need to register your Google Maps API Key before the map can be shown" 294 314 msgstr "" 295 315 296 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:1 04316 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:118 297 317 msgid "Full day" 298 318 msgstr "" 299 319 300 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php: 280320 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:367 301 321 msgid "There is no event to show" 302 322 msgstr "" 303 323 304 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:3 07324 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:397 305 325 msgid "Earlier events" 306 326 msgstr "" 307 327 308 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:3 08328 #: ../../../../../../Programs/PLUGINS/hello_event/svn/includes/hello-event-list-events.php:398 309 329 msgid "Upcoming events" 310 330 msgstr "" -
Property
svn:executable
set to
-
hello-event/trunk/readme.txt
r2272675 r2873773 72 72 == Changelog == 73 73 74 = 1.3.4 = 75 * Added parameters to the hello-event-map shortcode to allow more control (show the address, show links to open Google Maps or Open Street Maps on the location, show or not the map) 76 77 = 1.3.3 = 78 * Both the start date and the end date should be defined for avants, but if end date is not defined we use the start date as a substitute to avoid PHP warnings (but such events will still show up in lists and tabs with past events) 79 74 80 = 1.3.2 = 75 81 * Added optional parameter to list events shortcode to allow "book now" button directly in the event list
Note: See TracChangeset
for help on using the changeset viewer.