Plugin Directory

Changeset 2982206


Ignore:
Timestamp:
10/22/2023 11:36:38 AM (2 years ago)
Author:
codenlassen
Message:

update 1.3.1

Location:
simplest-analytics/trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • simplest-analytics/trunk/README.txt

    r2979293 r2982206  
    66Tested up to: 6.3.2
    77Requires PHP: 7.4
    8 Stable tag: 1.3.0
     8Stable tag: 1.3.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8383== Changelog ==
    8484
     85= 1.3.1 - 2023-10-22 =
     86* removed max events and max parameters from 5 to unlimited
     87* improved german translation
     88
    8589= 1.3.0 - 2023-10-16 =
    8690* added video tracking shortcode to track 1sec, 25%, 50%, 75%, 100% views
     
    111115== Upgrade Notice ==
    112116
    113 = 1.3.0 =
    114 New vide tracking shortcode
     117= 1.3.1 =
     118Track unlimited events and url parameters
  • simplest-analytics/trunk/admin/js/admin.js

    r2979293 r2982206  
     1function 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}
    140function 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  }
    1250}
    1351function simplest_analytics_close_all_popups() {
    14     document.getElementById("sa_bg").style.display = "none";
     52  document.getElementById("sa_bg").style.display = "none";
    1553
    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  }
    2058}
    2159function simplest_analytics_show_ele(ele_id) {
    22     document.getElementById(ele_id).style.display = "";
     60  document.getElementById(ele_id).style.display = "";
    2361}
    2462function simplest_analytics_hide_ele(ele_id) {
    25     document.getElementById(ele_id).style.display = "none";
     63  document.getElementById(ele_id).style.display = "none";
    2664}
    2765function 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");
    4179}
  • simplest-analytics/trunk/admin/structure.php

    r2979293 r2982206  
    1616
    1717    $save_array = [];
     18    $unique_names = [];
    1819
    1920    for ($i = 0; $i < sizeof($get_parameters); $i++) {
     
    2627                $this_label = $this_para;
    2728            }
     29            if (in_array($this_para, $unique_names)) {
     30                $this_para = $this_para . "_" . substr(md5(rand()), 0, 5);
     31            }
    2832            $save_array[$this_para] = $this_label;
     33            $unique_names[] = $this_para;
    2934        }
    3035
    3136    }
     37
    3238
    3339    update_option($option_name_paras, $save_array);
     
    3945
    4046    $save_array = [];
     47    $unique_names = [];
    4148
    4249    for ($i = 0; $i < sizeof($get_parameters); $i++) {
     
    4855            continue;
    4956        }
     57        if (in_array($this_para, $unique_names)) {
     58            $this_para = $this_para . "_" . substr(md5(rand()), 0, 5);
     59        }
    5060        $save_array[$this_para] = $this_label;
     61        $unique_names[] = $this_para;
    5162
    5263    }
     
    107118    <!-- tab: url parameters -->
    108119    <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">
    110121            <table class="settings_table">
    111122                <tr class="head_th">
     
    131142                <?php
    132143                $max_paras = 5;
     144                if (sizeof($option_paras) > $max_paras) {
     145                    $max_paras = sizeof($option_paras);
     146                }
    133147                for ($i = 0; $i < $max_paras; $i++) {
    134148                    $para = $i + 1;
     
    140154                        </th>
    141155                        <td>
    142                             <input type="text" name="parameter[]"
     156                            <input type="text" name="parameter[]" class="simplest_analytics_check_duplicate"
    143157                                value="<?php echo isset($option_paras[$i]) ? esc_html($option_paras[$i]) : "" ?>" />
    144158                            <?php
     
    164178                ?>
    165179
     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>
    166188
    167189
     
    179201    <!-- tab: events -->
    180202    <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">
    182204            <table class="settings_table">
    183205                <tr class="head_th">
     
    211233                <?php
    212234                $max_paras = 5;
     235                if (sizeof($option_event_name) > $max_paras) {
     236                    $max_paras = sizeof($option_event_name);
     237                }
    213238                for ($i = 0; $i < $max_paras; $i++) {
    214239                    $para = $i + 1;
     
    220245                        </th>
    221246                        <td>
    222                             <input type="text" name="event_name[]"
     247                            <input type="text" name="event_name[]" class="simplest_analytics_check_duplicate"
    223248                                value="<?php echo isset($option_event_name[$i]) ? esc_html($option_event_name[$i]) : "" ?>" />
    224249                            <?php
     
    244269                ?>
    245270
    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>
    247279
    248280            </table>
     
    444476    <script type="text/javascript">
    445477        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            });
    446495            $(".simplest_analytics_clear_ele").click(function (e) {
    447496
  • simplest-analytics/trunk/includes/class-activator.php

    r2979293 r2982206  
    4343         */
    4444         
    45          update_option( 'simplest_analytics_version', '1.3.0' );
     45         update_option( 'simplest_analytics_version', '1.3.1' );
    4646
    4747         /**
  • simplest-analytics/trunk/includes/class-simplest-analytics.php

    r2979293 r2982206  
    2929            $this->version = SIMPLEST_ANALYTICS_VERSION;
    3030        } else {
    31             $this->version = '1.3.0';
     31            $this->version = '1.3.1';
    3232        }
    3333        $this->simplest_analytics = 'simplest-analytics';
  • simplest-analytics/trunk/languages/simplest-analytics-de_DE.po

    r2979293 r2982206  
    22msgstr ""
    33"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"
    66"Last-Translator: \n"
    77"Language-Team: https://www.coden-lassen.de\n"
     
    5858msgstr "Unerwarteter Fehler, bitte lade die Seite neu und versuche es erneut."
    5959
    60 #: admin/dashboard.php:184
     60#: admin/dashboard.php:194
    6161msgid "Start date or end date is empty."
    6262msgstr "Start- oder Enddatum ist leer."
    6363
    64 #: admin/dashboard.php:187
     64#: admin/dashboard.php:197
    6565msgid "End date has to be ealier than start date."
    6666msgstr "Enddatum muss vor Startdatum liegen."
    6767
    68 #: admin/dashboard.php:252
     68#: admin/dashboard.php:264
    6969msgid "Dashboard"
    7070msgstr "Dashboard"
    7171
    72 #: admin/dashboard.php:265
     72#: admin/dashboard.php:279
    7373msgid "Raw Data"
    7474msgstr "Rohdaten"
    7575
    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
    7879msgid "Visits"
    7980msgstr "Aufrufe"
    8081
    81 #: admin/dashboard.php:288
     82#: admin/dashboard.php:308
    8283msgid "Unique Visitors"
    8384msgstr "Nutzer"
    8485
    85 #: admin/dashboard.php:295 admin/dashboard.php:591
     86#: admin/dashboard.php:317 admin/dashboard.php:617
    8687msgid "Tracked events"
    8788msgstr "Gemessene Events"
    8889
    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"
     93msgid "Tracked videos"
     94msgstr "Gemessene Events"
     95
     96#: admin/dashboard.php:339 admin/dashboard.php:388 admin/dashboard.php:846
     97#: admin/dashboard.php:889
    9198msgid "Date"
    9299msgstr "Datum"
    93100
    94 #: admin/dashboard.php:311 admin/dashboard.php:363 admin/dashboard.php:428
    95 #: admin/dashboard.php:484 admin/dashboard.php:539 admin/dashboard.php:600
    96 #: admin/dashboard.php:739 admin/dashboard.php:783 admin/dashboard.php:835
    97 #: admin/dashboard.php:910
     101#: 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
    98105msgid "no results"
    99106msgstr "keine Ergebnisse"
    100107
    101 #: admin/dashboard.php:330
     108#: admin/dashboard.php:360
    102109msgid "Daily visits"
    103110msgstr "Tägliche Aufrufe"
    104111
    105 #: admin/dashboard.php:358 admin/dashboard.php:421 admin/dashboard.php:477
    106 #: admin/dashboard.php:532 admin/dashboard.php:593
     112#: 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
    107114msgid "Unique visitors"
    108115msgstr "Nutzer"
    109116
    110 #: admin/dashboard.php:390
     117#: admin/dashboard.php:419
    111118msgid "Daily unique visitors"
    112119msgstr "Tägliche Nutzer"
    113120
    114 #: admin/dashboard.php:419
     121#: admin/dashboard.php:448
    115122msgid "Most visited sites"
    116123msgstr "Meistbesuchte Seiten"
    117124
    118 #: admin/dashboard.php:475
     125#: admin/dashboard.php:503
    119126msgid "Top external referrers"
    120127msgstr "Top external Referrers"
    121128
    122 #: admin/dashboard.php:529
     129#: admin/dashboard.php:556
    123130msgid "Top URL parameters"
    124131msgstr "Top URL Parameters"
    125132
    126 #: admin/dashboard.php:530 admin/dashboard.php:901
     133#: admin/dashboard.php:557 admin/dashboard.php:1008
    127134msgid "Value"
    128135msgstr "Wert"
    129136
    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"
     140msgid "event"
     141msgstr "Event"
     142
     143#: admin/dashboard.php:816 admin/dashboard.php:846 admin/dashboard.php:935
     144#: admin/dashboard.php:1009
    132145msgid "Sales"
    133146msgstr "Verkäufe"
    134147
    135 #: admin/dashboard.php:717 admin/dashboard.php:828 admin/dashboard.php:903
     148#: admin/dashboard.php:825 admin/dashboard.php:936 admin/dashboard.php:1010
    136149msgid "Amount"
    137150msgstr "Betrag"
    138151
    139 #: admin/dashboard.php:724
     152#: admin/dashboard.php:834
    140153msgid "avg Sale"
    141154msgstr "Durchschnitts-Verkäufe"
    142155
    143 #: admin/dashboard.php:754
     156#: admin/dashboard.php:863
    144157#, fuzzy
    145158#| msgid "Daily visits"
     
    147160msgstr "Tägliche Aufrufe"
    148161
    149 #: admin/dashboard.php:780
     162#: admin/dashboard.php:889
    150163msgid "Sales amount"
    151164msgstr "Verkaufsbetrag"
    152165
    153 #: admin/dashboard.php:800
     166#: admin/dashboard.php:908
    154167msgid "Daily sales amount"
    155168msgstr "Täglicher Verkaufsbetrag"
    156169
    157 #: admin/dashboard.php:826
     170#: admin/dashboard.php:934
    158171msgid "Sales: last referrer (max. 7 days before sale)"
    159172msgstr "Verkäufe: Letzte Referrer (max. 7 Tage vor Kauf)"
    160173
    161 #: admin/dashboard.php:900
     174#: admin/dashboard.php:1007
    162175msgid "Sales: last url parameter (max. 7 days before sale)"
    163176msgstr "Verkäufe: Letzter URL Parameter (max. 7 Tage vor Kauf)"
    164177
    165 #: admin/dashboard.php:1083
     178#: admin/dashboard.php:1188
    166179msgid "choose daterange"
    167180msgstr "Wähle eine Zeitspanne"
    168181
    169 #: admin/dashboard.php:1087
     182#: admin/dashboard.php:1192
    170183msgid "today"
    171184msgstr "heute"
    172185
    173 #: admin/dashboard.php:1091
     186#: admin/dashboard.php:1196
    174187msgid "yesterday"
    175188msgstr "gestern"
    176189
    177 #: admin/dashboard.php:1095
     190#: admin/dashboard.php:1200
    178191msgid "last 7 days"
    179192msgstr "letzte 7 Tage"
    180193
    181 #: admin/dashboard.php:1099
     194#: admin/dashboard.php:1204
    182195msgid "last 14 days"
    183196msgstr "letzte 14 Tage"
    184197
    185 #: admin/dashboard.php:1103
     198#: admin/dashboard.php:1208
    186199msgid "last 30 days"
    187200msgstr "letzte 30 Tage"
    188201
    189 #: admin/dashboard.php:1107
     202#: admin/dashboard.php:1212
    190203msgid "last month"
    191204msgstr "letzter Monat"
    192205
    193 #: admin/dashboard.php:1111
     206#: admin/dashboard.php:1216
    194207msgid "alltime"
    195208msgstr "Komplette Zeit"
    196209
    197 #: admin/dashboard.php:1115
     210#: admin/dashboard.php:1221
    198211msgid "custom"
    199212msgstr "benutzerdefiniert"
    200213
    201 #: admin/dashboard.php:1122
     214#: admin/dashboard.php:1230
    202215msgid "custom daterange"
    203216msgstr "Zeitspanne"
    204217
    205 #: admin/dashboard.php:1125
     218#: admin/dashboard.php:1235
    206219msgid "from:"
    207220msgstr "von:"
    208221
    209 #: admin/dashboard.php:1129
     222#: admin/dashboard.php:1241
    210223msgid "to:"
    211224msgstr "bis:"
    212225
    213 #: admin/dashboard.php:1133
     226#: admin/dashboard.php:1246
    214227msgid "apply daterange"
    215228msgstr "Zeitspanne auswählen"
    216229
    217 #: admin/structure.php:85
     230#: admin/structure.php:96
    218231msgid "Simplest Analytics Settings"
    219232msgstr "Simplest Analytics Einstellungen"
    220233
    221 #: admin/structure.php:90
     234#: admin/structure.php:102
    222235msgid "URL parameters"
    223236msgstr "URL Parameter"
    224237
    225 #: admin/structure.php:93
     238#: admin/structure.php:106
    226239msgid "Events"
    227240msgstr "Events"
    228241
    229 #: admin/structure.php:96
     242#: admin/structure.php:110
     243msgid "Videos"
     244msgstr "Videos"
     245
     246#: admin/structure.php:114
    230247msgid "Database"
    231248msgstr "Datenbank"
    232249
    233 #: admin/structure.php:106
     250#: admin/structure.php:125
    234251msgid "URL Parameter"
    235252msgstr "URL Parameter"
    236253
    237 #: admin/structure.php:107
     254#: admin/structure.php:128
    238255msgid "Label for reports"
    239256msgstr "Label für Reports"
    240257
    241 #: admin/structure.php:111
     258#: admin/structure.php:134
    242259msgid ""
    243260"e.g. set up \"campaign\" and all traffic with campaign=whatever will be "
     
    247264"Campaign=whatever wird getrackt. Nutze URL Parameter wie folgt: "
    248265
    249 #: admin/structure.php:114
     266#: admin/structure.php:138
    250267msgid ""
    251268"The label will appear as name shown in the reports and statistics. E.g. if "
     
    257274"wirst \"Kampagnen Name\" als Bezeichnung in Reports und Statistiken sehen."
    258275
    259 #: admin/structure.php:123
     276#: admin/structure.php:152
    260277msgid "Parameter"
    261278msgstr "Parameter"
    262279
    263 #: admin/structure.php:148
     280#: admin/structure.php:184 admin/structure.php:275
     281msgid "add more"
     282msgstr "mehr hinzufügen"
     283
     284#: admin/structure.php:192
    264285msgid "save url parameters"
    265286msgstr "speichere URL Parameter"
    266287
    267 #: admin/structure.php:163
     288#: admin/structure.php:208
    268289msgid "Event Name"
    269290msgstr "Event Name"
    270291
    271 #: admin/structure.php:164
     292#: admin/structure.php:211
    272293msgid "Click class/id"
    273294msgstr "Klick Klasse/ID"
    274295
    275 #: admin/structure.php:168
     296#: admin/structure.php:217
    276297msgid ""
    277298"Set up a name for the event. E.g. you want to track form submissions name "
     
    281302"Formular Versendungen messen soll."
    282303
    283 #: admin/structure.php:171
     304#: admin/structure.php:220
    284305msgid ""
    285306"Events will track when a user clicks on an element. To know what element to "
     
    290311"IDs angeben. Hier folgen einige Beispiele:"
    291312
    292 #: admin/structure.php:172
     313#: admin/structure.php:222
    293314msgid "element with class"
    294315msgstr "Element mit Klasse"
    295316
    296 #: admin/structure.php:173
     317#: admin/structure.php:224
    297318msgid "element with id"
    298319msgstr "Element mit ID"
    299320
    300 #: admin/structure.php:174
     321#: admin/structure.php:226
    301322msgid "element with the two classes"
    302323msgstr "Element mit zwei Klassen"
    303324
    304 #: admin/structure.php:175
     325#: admin/structure.php:229
    305326msgid ""
    306327"Element with \"btn\" which is in element with class \"form\" which is in "
     
    310331"welchen in Element mit Klasse \"order-Detail\" ist."
    311332
    312 #: admin/structure.php:185
     333#: admin/structure.php:243
    313334msgid "Event"
    314335msgstr "Event"
    315336
    316 #: admin/structure.php:210
     337#: admin/structure.php:282
    317338msgid "save events"
    318339msgstr "speichere Events"
    319340
    320 #: admin/structure.php:247
     341#: admin/structure.php:295
     342#, fuzzy
     343#| msgid "Tracked events"
     344msgid "Track Videos"
     345msgstr "Gemessene Events"
     346
     347#: admin/structure.php:298
     348msgid "Information"
     349msgstr "Information"
     350
     351#: admin/structure.php:304
     352msgid "You can track videos by using the shortcode [tracked_video]."
     353msgstr ""
     354"Du kannst Videos tracken indem du den Shortcode [tracked_video] verwendest."
     355
     356#: admin/structure.php:307
     357msgid ""
     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."
     360msgstr ""
     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
     365msgid "Example"
     366msgstr "Beispiel"
     367
     368#: admin/structure.php:319
     369msgid ""
     370"This will track the video \"your-video.mp4\" with the name \"video xyz\"."
     371msgstr "Das misst das Video \"your-video.mp4\" mit dem Namen \"video xyz\"."
     372
     373#: admin/structure.php:331
     374msgid ""
     375"You can also add width and height in the shortcode. Default are the "
     376"WordPress vidoe shortcode defaults."
     377msgstr ""
     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
    321382#, fuzzy
    322383#| msgid "Value"
     
    324385msgstr "Wert"
    325386
    326 #: admin/structure.php:248
     387#: admin/structure.php:376
    327388msgid "info"
    328389msgstr "Info"
    329390
    330 #: admin/structure.php:252
     391#: admin/structure.php:382
    331392msgid "Database Table name"
    332393msgstr "Name Datenbank Tabelle"
    333394
    334 #: admin/structure.php:257
     395#: admin/structure.php:388
    335396msgid "All options at this page are only related to this table."
    336397msgstr ""
     
    338399"Tabelle."
    339400
    340 #: admin/structure.php:262
     401#: admin/structure.php:394
    341402msgid "Total entries"
    342403msgstr "Anzahl Datenbankeinträge"
    343404
    344 #: admin/structure.php:267
     405#: admin/structure.php:400
    345406msgid "number of values in the database table"
    346407msgstr "Anzahl der Einträge in der Datenbank Tabelle"
    347408
    348 #: admin/structure.php:272 admin/structure.php:287 admin/structure.php:302
     409#: admin/structure.php:407 admin/structure.php:425 admin/structure.php:444
    349410msgid "clear options"
    350411msgstr "clear options"
    351412
    352 #: admin/structure.php:275
     413#: admin/structure.php:411
    353414msgid "delete all entries"
    354415msgstr "lösche alle Einträge"
    355416
    356 #: admin/structure.php:279
     417#: admin/structure.php:416
    357418msgid "All entries will be removed from the database."
    358419msgstr "Alle Einträge werden in der Datenbank Tabelle gelöscht."
    359420
    360 #: admin/structure.php:290
     421#: admin/structure.php:429
    361422msgid "delete entries older than this year"
    362423msgstr "Lösche ältere EInträge als dieses Jahr"
    363424
    364 #: admin/structure.php:294
     425#: admin/structure.php:434
    365426msgid "All entries will be deleted that are not from"
    366427msgstr "Alle Einträge werden gelöscht, die nicht aus folgendem Jahr sind: "
    367428
    368 #: admin/structure.php:306
     429#: admin/structure.php:450
    369430msgid "delete entries older than"
    370431msgstr "Lösche EInträge älter als"
    371432
    372 #: admin/structure.php:310
     433#: admin/structure.php:454
    373434msgid ""
    374435"Select a date and all entries that are older than this date will be deleted"
     
    377438"gelöscht"
    378439
    379 #: admin/structure.php:323
     440#: admin/structure.php:470
    380441msgid "loading"
    381442msgstr "lädt"
     443
     444#: admin/structure.php:486
     445msgid "Please use unique names. This name is used multiple times:"
     446msgstr ""
     447"Bitte nutze eindeutige Namen. Der folgende Name wurde mehrfach genutzt:"
  • simplest-analytics/trunk/simplest-analytics.php

    r2979293 r2982206  
    1313 * Plugin URI:        https://www.coden-lassen.de
    1414 * Description:       Serverside and cookieless webanalytics.
    15  * Version:           1.3.0
     15 * Version:           1.3.1
    1616 * Author:            Stefan Klaes
    1717 * Author URI:        https://www.coden-lassen.de/wordpress-freelancer
     
    3232/**
    3333 * Currently plugin version:
    34  * version 1.3.0
     34 * version 1.3.1
    3535 */
    3636 
    37 define( 'SIMPLEST_ANALYTICS_VERSION', '1.3.0' );
     37define( 'SIMPLEST_ANALYTICS_VERSION', '1.3.1' );
    3838
    3939
Note: See TracChangeset for help on using the changeset viewer.