Changeset 2982206
- Timestamp:
- 10/22/2023 11:36:38 AM (2 years ago)
- Location:
- simplest-analytics/trunk
- Files:
-
- 8 edited
-
README.txt (modified) (3 diffs)
-
admin/js/admin.js (modified) (1 diff)
-
admin/structure.php (modified) (13 diffs)
-
includes/class-activator.php (modified) (1 diff)
-
includes/class-simplest-analytics.php (modified) (1 diff)
-
languages/simplest-analytics-de_DE.mo (modified) (previous)
-
languages/simplest-analytics-de_DE.po (modified) (11 diffs)
-
simplest-analytics.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simplest-analytics/trunk/README.txt
r2979293 r2982206 6 6 Tested up to: 6.3.2 7 7 Requires PHP: 7.4 8 Stable tag: 1.3. 08 Stable tag: 1.3.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 83 83 == Changelog == 84 84 85 = 1.3.1 - 2023-10-22 = 86 * removed max events and max parameters from 5 to unlimited 87 * improved german translation 88 85 89 = 1.3.0 - 2023-10-16 = 86 90 * added video tracking shortcode to track 1sec, 25%, 50%, 75%, 100% views … … 111 115 == Upgrade Notice == 112 116 113 = 1.3. 0=114 New vide tracking shortcode 117 = 1.3.1 = 118 Track unlimited events and url parameters -
simplest-analytics/trunk/admin/js/admin.js
r2979293 r2982206 1 function simplest_analytics_add_more(type) { 2 if (type == "url") { 3 var tab = document.getElementById("tab_urlparas"); 4 } else { 5 var tab = document.getElementById("tab_events"); 6 } 7 var table = tab.getElementsByTagName("table")[0]; 8 // add tr at 2nd last position 9 var tr = table.insertRow(table.rows.length - 1); 10 // add th, td, td to tr 11 var th = document.createElement("th"); 12 var td1 = document.createElement("td"); 13 var td2 = document.createElement("td"); 14 tr.appendChild(th); 15 tr.appendChild(td1); 16 tr.appendChild(td2); 17 // add text to th: Parameter {no} (length tr -2) 18 th.innerHTML = "Parameter " + (tr.rowIndex - 1); 19 // add input to td1: <input type="text" name="parameter[]" value="" /> 20 var input1 = document.createElement("input"); 21 input1.type = "text"; 22 if (type == "url") { 23 input1.name = "parameter[]"; 24 } else { 25 input1.name = "event_name[]"; 26 } 27 input1.value = ""; 28 // add input to td2: <input type="text" name="label[]" value="" /> 29 var input2 = document.createElement("input"); 30 input2.type = "text"; 31 if (type == "url") { 32 input2.name = "label[]"; 33 } else { 34 input2.name = "event_trigger[]"; 35 } 36 input2.value = ""; 37 td1.appendChild(input1); 38 td2.appendChild(input2); 39 } 1 40 function simplest_analytics_toggle_daterange() { 2 var bg = document.getElementById("sa_bg"); 3 var popup = document.getElementById("daterange_popup"); 4 if ( popup.className.indexOf("daterange_popup_active") > -1 ) { 5 popup.classList.remove("daterange_popup_active"); 6 bg.style.display = "none"; 7 } 8 else { 9 popup.classList.add("daterange_popup_active"); 10 bg.style.display = ""; 11 } 41 var bg = document.getElementById("sa_bg"); 42 var popup = document.getElementById("daterange_popup"); 43 if (popup.className.indexOf("daterange_popup_active") > -1) { 44 popup.classList.remove("daterange_popup_active"); 45 bg.style.display = "none"; 46 } else { 47 popup.classList.add("daterange_popup_active"); 48 bg.style.display = ""; 49 } 12 50 } 13 51 function simplest_analytics_close_all_popups() { 14 document.getElementById("sa_bg").style.display = "none";52 document.getElementById("sa_bg").style.display = "none"; 15 53 16 var all_ele = document.getElementsByClassName("closepopup");17 for ( var i=0; i<all_ele.length; i++) {18 all_ele[i].classList.remove("daterange_popup_active");19 }54 var all_ele = document.getElementsByClassName("closepopup"); 55 for (var i = 0; i < all_ele.length; i++) { 56 all_ele[i].classList.remove("daterange_popup_active"); 57 } 20 58 } 21 59 function simplest_analytics_show_ele(ele_id) { 22 document.getElementById(ele_id).style.display = "";60 document.getElementById(ele_id).style.display = ""; 23 61 } 24 62 function simplest_analytics_hide_ele(ele_id) { 25 document.getElementById(ele_id).style.display = "none";63 document.getElementById(ele_id).style.display = "none"; 26 64 } 27 65 function simplest_analytics_toggle_tabs_by_id(thiss) { 28 var ele_id = thiss.id;29 var tab_id = "tab_" + ele_id;30 var all_tabs = document.getElementsByClassName("all_tabs");31 for ( var i=0; i<all_tabs.length; i++) {32 all_tabs[i].style.display = "none";33 }34 var all_tabs = document.getElementsByClassName("nav-tab");35 for ( var i=0; i<all_tabs.length; i++) {36 all_tabs[i].classList.remove("nav-tab-active");37 }38 39 document.getElementById(tab_id).style.display = "";40 thiss.classList.add("nav-tab-active");66 var ele_id = thiss.id; 67 var tab_id = "tab_" + ele_id; 68 var all_tabs = document.getElementsByClassName("all_tabs"); 69 for (var i = 0; i < all_tabs.length; i++) { 70 all_tabs[i].style.display = "none"; 71 } 72 var all_tabs = document.getElementsByClassName("nav-tab"); 73 for (var i = 0; i < all_tabs.length; i++) { 74 all_tabs[i].classList.remove("nav-tab-active"); 75 } 76 77 document.getElementById(tab_id).style.display = ""; 78 thiss.classList.add("nav-tab-active"); 41 79 } -
simplest-analytics/trunk/admin/structure.php
r2979293 r2982206 16 16 17 17 $save_array = []; 18 $unique_names = []; 18 19 19 20 for ($i = 0; $i < sizeof($get_parameters); $i++) { … … 26 27 $this_label = $this_para; 27 28 } 29 if (in_array($this_para, $unique_names)) { 30 $this_para = $this_para . "_" . substr(md5(rand()), 0, 5); 31 } 28 32 $save_array[$this_para] = $this_label; 33 $unique_names[] = $this_para; 29 34 } 30 35 31 36 } 37 32 38 33 39 update_option($option_name_paras, $save_array); … … 39 45 40 46 $save_array = []; 47 $unique_names = []; 41 48 42 49 for ($i = 0; $i < sizeof($get_parameters); $i++) { … … 48 55 continue; 49 56 } 57 if (in_array($this_para, $unique_names)) { 58 $this_para = $this_para . "_" . substr(md5(rand()), 0, 5); 59 } 50 60 $save_array[$this_para] = $this_label; 61 $unique_names[] = $this_para; 51 62 52 63 } … … 107 118 <!-- tab: url parameters --> 108 119 <div id="tab_urlparas" class="all_tabs" <?php echo $tab == "url_paras" ? '' : ' style="display:none"' ?>> 109 <form method="post" action="" >120 <form method="post" action="" class="simplest_analytics_form"> 110 121 <table class="settings_table"> 111 122 <tr class="head_th"> … … 131 142 <?php 132 143 $max_paras = 5; 144 if (sizeof($option_paras) > $max_paras) { 145 $max_paras = sizeof($option_paras); 146 } 133 147 for ($i = 0; $i < $max_paras; $i++) { 134 148 $para = $i + 1; … … 140 154 </th> 141 155 <td> 142 <input type="text" name="parameter[]" 156 <input type="text" name="parameter[]" class="simplest_analytics_check_duplicate" 143 157 value="<?php echo isset($option_paras[$i]) ? esc_html($option_paras[$i]) : "" ?>" /> 144 158 <?php … … 164 178 ?> 165 179 180 <tr> 181 <th></th> 182 <td colspan="2"> 183 <div class="button button-primary" onclick="simplest_analytics_add_more('url')"> 184 <?php echo __('add more', 'simplest-analytics') ?> 185 </div> 186 </td> 187 </tr> 166 188 167 189 … … 179 201 <!-- tab: events --> 180 202 <div id="tab_events" class="all_tabs" <?php echo $tab == "events" ? '' : ' style="display:none"' ?>> 181 <form method="post" action="" >203 <form method="post" action="" class="simplest_analytics_form"> 182 204 <table class="settings_table"> 183 205 <tr class="head_th"> … … 211 233 <?php 212 234 $max_paras = 5; 235 if (sizeof($option_event_name) > $max_paras) { 236 $max_paras = sizeof($option_event_name); 237 } 213 238 for ($i = 0; $i < $max_paras; $i++) { 214 239 $para = $i + 1; … … 220 245 </th> 221 246 <td> 222 <input type="text" name="event_name[]" 247 <input type="text" name="event_name[]" class="simplest_analytics_check_duplicate" 223 248 value="<?php echo isset($option_event_name[$i]) ? esc_html($option_event_name[$i]) : "" ?>" /> 224 249 <?php … … 244 269 ?> 245 270 246 271 <tr> 272 <th></th> 273 <td colspan="2"> 274 <div class="button button-primary" onclick="simplest_analytics_add_more('event')"> 275 <?php echo __('add more', 'simplest-analytics') ?> 276 </div> 277 </td> 278 </tr> 247 279 248 280 </table> … … 444 476 <script type="text/javascript"> 445 477 jQuery(document).ready(function ($) { 478 // on formsubmit check duplicates 479 $('.simplest_analytics_form').submit(function (e) { 480 var para = []; 481 $('.simplest_analytics_check_duplicate').each(function () { 482 var this_val = $(this).val(); 483 if (this_val !== "") { 484 // if not in para push it 485 if ($.inArray(this_val, para) !== -1) { 486 var alert_txt = '<?php echo esc_html__('Please use unique names. This name is used multiple times:', 'simplest-analytics') ?>'; 487 alert(alert_txt+' '+this_val); 488 e.preventDefault(); 489 return false; 490 } 491 para.push(this_val); 492 } 493 }); 494 }); 446 495 $(".simplest_analytics_clear_ele").click(function (e) { 447 496 -
simplest-analytics/trunk/includes/class-activator.php
r2979293 r2982206 43 43 */ 44 44 45 update_option( 'simplest_analytics_version', '1.3. 0' );45 update_option( 'simplest_analytics_version', '1.3.1' ); 46 46 47 47 /** -
simplest-analytics/trunk/includes/class-simplest-analytics.php
r2979293 r2982206 29 29 $this->version = SIMPLEST_ANALYTICS_VERSION; 30 30 } else { 31 $this->version = '1.3. 0';31 $this->version = '1.3.1'; 32 32 } 33 33 $this->simplest_analytics = 'simplest-analytics'; -
simplest-analytics/trunk/languages/simplest-analytics-de_DE.po
r2979293 r2982206 2 2 msgstr "" 3 3 "Project-Id-Version: simplest-analytics 1.0.0\n" 4 "POT-Creation-Date: 2023- 07-07 21:41+0200\n"5 "PO-Revision-Date: 2023- 07-07 21:42+0200\n"4 "POT-Creation-Date: 2023-10-22 13:29+0200\n" 5 "PO-Revision-Date: 2023-10-22 13:29+0200\n" 6 6 "Last-Translator: \n" 7 7 "Language-Team: https://www.coden-lassen.de\n" … … 58 58 msgstr "Unerwarteter Fehler, bitte lade die Seite neu und versuche es erneut." 59 59 60 #: admin/dashboard.php:1 8460 #: admin/dashboard.php:194 61 61 msgid "Start date or end date is empty." 62 62 msgstr "Start- oder Enddatum ist leer." 63 63 64 #: admin/dashboard.php:1 8764 #: admin/dashboard.php:197 65 65 msgid "End date has to be ealier than start date." 66 66 msgstr "Enddatum muss vor Startdatum liegen." 67 67 68 #: admin/dashboard.php:2 5268 #: admin/dashboard.php:264 69 69 msgid "Dashboard" 70 70 msgstr "Dashboard" 71 71 72 #: admin/dashboard.php:2 6572 #: admin/dashboard.php:279 73 73 msgid "Raw Data" 74 74 msgstr "Rohdaten" 75 75 76 #: admin/dashboard.php:281 admin/dashboard.php:308 admin/dashboard.php:420 77 #: admin/dashboard.php:476 admin/dashboard.php:531 admin/dashboard.php:592 76 #: admin/dashboard.php:299 admin/dashboard.php:339 admin/dashboard.php:449 77 #: admin/dashboard.php:504 admin/dashboard.php:558 admin/dashboard.php:618 78 #: admin/dashboard.php:673 78 79 msgid "Visits" 79 80 msgstr "Aufrufe" 80 81 81 #: admin/dashboard.php: 28882 #: admin/dashboard.php:308 82 83 msgid "Unique Visitors" 83 84 msgstr "Nutzer" 84 85 85 #: admin/dashboard.php: 295 admin/dashboard.php:59186 #: admin/dashboard.php:317 admin/dashboard.php:617 86 87 msgid "Tracked events" 87 88 msgstr "Gemessene Events" 88 89 89 #: admin/dashboard.php:308 admin/dashboard.php:358 admin/dashboard.php:736 90 #: admin/dashboard.php:780 90 #: admin/dashboard.php:326 admin/dashboard.php:671 91 #, fuzzy 92 #| msgid "Tracked events" 93 msgid "Tracked videos" 94 msgstr "Gemessene Events" 95 96 #: admin/dashboard.php:339 admin/dashboard.php:388 admin/dashboard.php:846 97 #: admin/dashboard.php:889 91 98 msgid "Date" 92 99 msgstr "Datum" 93 100 94 #: admin/dashboard.php:3 11 admin/dashboard.php:363 admin/dashboard.php:42895 #: admin/dashboard.php: 484 admin/dashboard.php:539 admin/dashboard.php:60096 #: admin/dashboard.php: 739 admin/dashboard.php:783 admin/dashboard.php:83597 #: admin/dashboard.php:9 10101 #: admin/dashboard.php:342 admin/dashboard.php:393 admin/dashboard.php:457 102 #: admin/dashboard.php:512 admin/dashboard.php:566 admin/dashboard.php:626 103 #: admin/dashboard.php:681 admin/dashboard.php:849 admin/dashboard.php:892 104 #: admin/dashboard.php:943 admin/dashboard.php:1017 98 105 msgid "no results" 99 106 msgstr "keine Ergebnisse" 100 107 101 #: admin/dashboard.php:3 30108 #: admin/dashboard.php:360 102 109 msgid "Daily visits" 103 110 msgstr "Tägliche Aufrufe" 104 111 105 #: admin/dashboard.php:3 58 admin/dashboard.php:421 admin/dashboard.php:477106 #: admin/dashboard.php:5 32 admin/dashboard.php:593112 #: admin/dashboard.php:388 admin/dashboard.php:450 admin/dashboard.php:505 113 #: admin/dashboard.php:559 admin/dashboard.php:619 admin/dashboard.php:674 107 114 msgid "Unique visitors" 108 115 msgstr "Nutzer" 109 116 110 #: admin/dashboard.php: 390117 #: admin/dashboard.php:419 111 118 msgid "Daily unique visitors" 112 119 msgstr "Tägliche Nutzer" 113 120 114 #: admin/dashboard.php:4 19121 #: admin/dashboard.php:448 115 122 msgid "Most visited sites" 116 123 msgstr "Meistbesuchte Seiten" 117 124 118 #: admin/dashboard.php: 475125 #: admin/dashboard.php:503 119 126 msgid "Top external referrers" 120 127 msgstr "Top external Referrers" 121 128 122 #: admin/dashboard.php:5 29129 #: admin/dashboard.php:556 123 130 msgid "Top URL parameters" 124 131 msgstr "Top URL Parameters" 125 132 126 #: admin/dashboard.php:5 30 admin/dashboard.php:901133 #: admin/dashboard.php:557 admin/dashboard.php:1008 127 134 msgid "Value" 128 135 msgstr "Wert" 129 136 130 #: admin/dashboard.php:710 admin/dashboard.php:736 admin/dashboard.php:827 131 #: admin/dashboard.php:902 137 #: admin/dashboard.php:672 138 #, fuzzy 139 #| msgid "Event" 140 msgid "event" 141 msgstr "Event" 142 143 #: admin/dashboard.php:816 admin/dashboard.php:846 admin/dashboard.php:935 144 #: admin/dashboard.php:1009 132 145 msgid "Sales" 133 146 msgstr "Verkäufe" 134 147 135 #: admin/dashboard.php: 717 admin/dashboard.php:828 admin/dashboard.php:903148 #: admin/dashboard.php:825 admin/dashboard.php:936 admin/dashboard.php:1010 136 149 msgid "Amount" 137 150 msgstr "Betrag" 138 151 139 #: admin/dashboard.php: 724152 #: admin/dashboard.php:834 140 153 msgid "avg Sale" 141 154 msgstr "Durchschnitts-Verkäufe" 142 155 143 #: admin/dashboard.php: 754156 #: admin/dashboard.php:863 144 157 #, fuzzy 145 158 #| msgid "Daily visits" … … 147 160 msgstr "Tägliche Aufrufe" 148 161 149 #: admin/dashboard.php: 780162 #: admin/dashboard.php:889 150 163 msgid "Sales amount" 151 164 msgstr "Verkaufsbetrag" 152 165 153 #: admin/dashboard.php: 800166 #: admin/dashboard.php:908 154 167 msgid "Daily sales amount" 155 168 msgstr "Täglicher Verkaufsbetrag" 156 169 157 #: admin/dashboard.php: 826170 #: admin/dashboard.php:934 158 171 msgid "Sales: last referrer (max. 7 days before sale)" 159 172 msgstr "Verkäufe: Letzte Referrer (max. 7 Tage vor Kauf)" 160 173 161 #: admin/dashboard.php: 900174 #: admin/dashboard.php:1007 162 175 msgid "Sales: last url parameter (max. 7 days before sale)" 163 176 msgstr "Verkäufe: Letzter URL Parameter (max. 7 Tage vor Kauf)" 164 177 165 #: admin/dashboard.php:1 083178 #: admin/dashboard.php:1188 166 179 msgid "choose daterange" 167 180 msgstr "Wähle eine Zeitspanne" 168 181 169 #: admin/dashboard.php:1 087182 #: admin/dashboard.php:1192 170 183 msgid "today" 171 184 msgstr "heute" 172 185 173 #: admin/dashboard.php:1 091186 #: admin/dashboard.php:1196 174 187 msgid "yesterday" 175 188 msgstr "gestern" 176 189 177 #: admin/dashboard.php:1 095190 #: admin/dashboard.php:1200 178 191 msgid "last 7 days" 179 192 msgstr "letzte 7 Tage" 180 193 181 #: admin/dashboard.php:1 099194 #: admin/dashboard.php:1204 182 195 msgid "last 14 days" 183 196 msgstr "letzte 14 Tage" 184 197 185 #: admin/dashboard.php:1 103198 #: admin/dashboard.php:1208 186 199 msgid "last 30 days" 187 200 msgstr "letzte 30 Tage" 188 201 189 #: admin/dashboard.php:1 107202 #: admin/dashboard.php:1212 190 203 msgid "last month" 191 204 msgstr "letzter Monat" 192 205 193 #: admin/dashboard.php:1 111206 #: admin/dashboard.php:1216 194 207 msgid "alltime" 195 208 msgstr "Komplette Zeit" 196 209 197 #: admin/dashboard.php:1 115210 #: admin/dashboard.php:1221 198 211 msgid "custom" 199 212 msgstr "benutzerdefiniert" 200 213 201 #: admin/dashboard.php:1 122214 #: admin/dashboard.php:1230 202 215 msgid "custom daterange" 203 216 msgstr "Zeitspanne" 204 217 205 #: admin/dashboard.php:1 125218 #: admin/dashboard.php:1235 206 219 msgid "from:" 207 220 msgstr "von:" 208 221 209 #: admin/dashboard.php:1 129222 #: admin/dashboard.php:1241 210 223 msgid "to:" 211 224 msgstr "bis:" 212 225 213 #: admin/dashboard.php:1 133226 #: admin/dashboard.php:1246 214 227 msgid "apply daterange" 215 228 msgstr "Zeitspanne auswählen" 216 229 217 #: admin/structure.php: 85230 #: admin/structure.php:96 218 231 msgid "Simplest Analytics Settings" 219 232 msgstr "Simplest Analytics Einstellungen" 220 233 221 #: admin/structure.php: 90234 #: admin/structure.php:102 222 235 msgid "URL parameters" 223 236 msgstr "URL Parameter" 224 237 225 #: admin/structure.php: 93238 #: admin/structure.php:106 226 239 msgid "Events" 227 240 msgstr "Events" 228 241 229 #: admin/structure.php:96 242 #: admin/structure.php:110 243 msgid "Videos" 244 msgstr "Videos" 245 246 #: admin/structure.php:114 230 247 msgid "Database" 231 248 msgstr "Datenbank" 232 249 233 #: admin/structure.php:1 06250 #: admin/structure.php:125 234 251 msgid "URL Parameter" 235 252 msgstr "URL Parameter" 236 253 237 #: admin/structure.php:1 07254 #: admin/structure.php:128 238 255 msgid "Label for reports" 239 256 msgstr "Label für Reports" 240 257 241 #: admin/structure.php:1 11258 #: admin/structure.php:134 242 259 msgid "" 243 260 "e.g. set up \"campaign\" and all traffic with campaign=whatever will be " … … 247 264 "Campaign=whatever wird getrackt. Nutze URL Parameter wie folgt: " 248 265 249 #: admin/structure.php:1 14266 #: admin/structure.php:138 250 267 msgid "" 251 268 "The label will appear as name shown in the reports and statistics. E.g. if " … … 257 274 "wirst \"Kampagnen Name\" als Bezeichnung in Reports und Statistiken sehen." 258 275 259 #: admin/structure.php:1 23276 #: admin/structure.php:152 260 277 msgid "Parameter" 261 278 msgstr "Parameter" 262 279 263 #: admin/structure.php:148 280 #: admin/structure.php:184 admin/structure.php:275 281 msgid "add more" 282 msgstr "mehr hinzufügen" 283 284 #: admin/structure.php:192 264 285 msgid "save url parameters" 265 286 msgstr "speichere URL Parameter" 266 287 267 #: admin/structure.php: 163288 #: admin/structure.php:208 268 289 msgid "Event Name" 269 290 msgstr "Event Name" 270 291 271 #: admin/structure.php: 164292 #: admin/structure.php:211 272 293 msgid "Click class/id" 273 294 msgstr "Klick Klasse/ID" 274 295 275 #: admin/structure.php: 168296 #: admin/structure.php:217 276 297 msgid "" 277 298 "Set up a name for the event. E.g. you want to track form submissions name " … … 281 302 "Formular Versendungen messen soll." 282 303 283 #: admin/structure.php: 171304 #: admin/structure.php:220 284 305 msgid "" 285 306 "Events will track when a user clicks on an element. To know what element to " … … 290 311 "IDs angeben. Hier folgen einige Beispiele:" 291 312 292 #: admin/structure.php: 172313 #: admin/structure.php:222 293 314 msgid "element with class" 294 315 msgstr "Element mit Klasse" 295 316 296 #: admin/structure.php: 173317 #: admin/structure.php:224 297 318 msgid "element with id" 298 319 msgstr "Element mit ID" 299 320 300 #: admin/structure.php: 174321 #: admin/structure.php:226 301 322 msgid "element with the two classes" 302 323 msgstr "Element mit zwei Klassen" 303 324 304 #: admin/structure.php: 175325 #: admin/structure.php:229 305 326 msgid "" 306 327 "Element with \"btn\" which is in element with class \"form\" which is in " … … 310 331 "welchen in Element mit Klasse \"order-Detail\" ist." 311 332 312 #: admin/structure.php: 185333 #: admin/structure.php:243 313 334 msgid "Event" 314 335 msgstr "Event" 315 336 316 #: admin/structure.php:2 10337 #: admin/structure.php:282 317 338 msgid "save events" 318 339 msgstr "speichere Events" 319 340 320 #: admin/structure.php:247 341 #: admin/structure.php:295 342 #, fuzzy 343 #| msgid "Tracked events" 344 msgid "Track Videos" 345 msgstr "Gemessene Events" 346 347 #: admin/structure.php:298 348 msgid "Information" 349 msgstr "Information" 350 351 #: admin/structure.php:304 352 msgid "You can track videos by using the shortcode [tracked_video]." 353 msgstr "" 354 "Du kannst Videos tracken indem du den Shortcode [tracked_video] verwendest." 355 356 #: admin/structure.php:307 357 msgid "" 358 "The shortcode will track when 1sec, 25%, 50%, 75% and 100% of the video is " 359 "seen. These parameters are tracked once per pageview." 360 msgstr "" 361 "Der Shortcode trackt folgende Video Ereignisse: 1 Sekunde, 25%, 50%, 75% und " 362 "100% gesehen. Diese Ereignisse werden einmal pro Seitenaufruf gemessen." 363 364 #: admin/structure.php:313 admin/structure.php:325 365 msgid "Example" 366 msgstr "Beispiel" 367 368 #: admin/structure.php:319 369 msgid "" 370 "This will track the video \"your-video.mp4\" with the name \"video xyz\"." 371 msgstr "Das misst das Video \"your-video.mp4\" mit dem Namen \"video xyz\"." 372 373 #: admin/structure.php:331 374 msgid "" 375 "You can also add width and height in the shortcode. Default are the " 376 "WordPress vidoe shortcode defaults." 377 msgstr "" 378 "Es können Breite und Höhe in den Shortcode eingebunden werden. Standardmäßig " 379 "sind die WordPress Standardwerte hinterlegt." 380 381 #: admin/structure.php:373 321 382 #, fuzzy 322 383 #| msgid "Value" … … 324 385 msgstr "Wert" 325 386 326 #: admin/structure.php: 248387 #: admin/structure.php:376 327 388 msgid "info" 328 389 msgstr "Info" 329 390 330 #: admin/structure.php: 252391 #: admin/structure.php:382 331 392 msgid "Database Table name" 332 393 msgstr "Name Datenbank Tabelle" 333 394 334 #: admin/structure.php: 257395 #: admin/structure.php:388 335 396 msgid "All options at this page are only related to this table." 336 397 msgstr "" … … 338 399 "Tabelle." 339 400 340 #: admin/structure.php: 262401 #: admin/structure.php:394 341 402 msgid "Total entries" 342 403 msgstr "Anzahl Datenbankeinträge" 343 404 344 #: admin/structure.php: 267405 #: admin/structure.php:400 345 406 msgid "number of values in the database table" 346 407 msgstr "Anzahl der Einträge in der Datenbank Tabelle" 347 408 348 #: admin/structure.php: 272 admin/structure.php:287 admin/structure.php:302409 #: admin/structure.php:407 admin/structure.php:425 admin/structure.php:444 349 410 msgid "clear options" 350 411 msgstr "clear options" 351 412 352 #: admin/structure.php: 275413 #: admin/structure.php:411 353 414 msgid "delete all entries" 354 415 msgstr "lösche alle Einträge" 355 416 356 #: admin/structure.php: 279417 #: admin/structure.php:416 357 418 msgid "All entries will be removed from the database." 358 419 msgstr "Alle Einträge werden in der Datenbank Tabelle gelöscht." 359 420 360 #: admin/structure.php: 290421 #: admin/structure.php:429 361 422 msgid "delete entries older than this year" 362 423 msgstr "Lösche ältere EInträge als dieses Jahr" 363 424 364 #: admin/structure.php: 294425 #: admin/structure.php:434 365 426 msgid "All entries will be deleted that are not from" 366 427 msgstr "Alle Einträge werden gelöscht, die nicht aus folgendem Jahr sind: " 367 428 368 #: admin/structure.php: 306429 #: admin/structure.php:450 369 430 msgid "delete entries older than" 370 431 msgstr "Lösche EInträge älter als" 371 432 372 #: admin/structure.php: 310433 #: admin/structure.php:454 373 434 msgid "" 374 435 "Select a date and all entries that are older than this date will be deleted" … … 377 438 "gelöscht" 378 439 379 #: admin/structure.php: 323440 #: admin/structure.php:470 380 441 msgid "loading" 381 442 msgstr "lädt" 443 444 #: admin/structure.php:486 445 msgid "Please use unique names. This name is used multiple times:" 446 msgstr "" 447 "Bitte nutze eindeutige Namen. Der folgende Name wurde mehrfach genutzt:" -
simplest-analytics/trunk/simplest-analytics.php
r2979293 r2982206 13 13 * Plugin URI: https://www.coden-lassen.de 14 14 * Description: Serverside and cookieless webanalytics. 15 * Version: 1.3. 015 * Version: 1.3.1 16 16 * Author: Stefan Klaes 17 17 * Author URI: https://www.coden-lassen.de/wordpress-freelancer … … 32 32 /** 33 33 * Currently plugin version: 34 * version 1.3. 034 * version 1.3.1 35 35 */ 36 36 37 define( 'SIMPLEST_ANALYTICS_VERSION', '1.3. 0' );37 define( 'SIMPLEST_ANALYTICS_VERSION', '1.3.1' ); 38 38 39 39
Note: See TracChangeset
for help on using the changeset viewer.