Plugin Directory

Changeset 2099688


Ignore:
Timestamp:
06/03/2019 08:45:59 AM (7 years ago)
Author:
walljet
Message:

new version

Location:
wp-etracker/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-etracker/trunk/languages/wpetracker-de_DE.po

    r2099674 r2099688  
    22msgstr ""
    33"Project-Id-Version: WP etracker\n"
    4 "POT-Creation-Date: 2019-05-29 11:56+0200\n"
    5 "PO-Revision-Date: 2019-05-29 11:59+0200\n"
     4"POT-Creation-Date: 2019-06-03 10:44+0200\n"
     5"PO-Revision-Date: 2019-06-03 10:45+0200\n"
    66"Last-Translator: \n"
    77"Language-Team: \n"
     
    2121"X-Poedit-SearchPathExcluded-0: *.js\n"
    2222
    23 #: tracklet.php:183
     23#: tracklet.php:190
    2424msgid "Error while updating option!"
    2525msgstr "Fehler beim Aktualisieren!"
    2626
    27 #: tracklet.php:299 tracklet.php:300
     27#: tracklet.php:306 tracklet.php:307
    2828msgid "Startseite"
    2929msgstr "Startseite"
    3030
    31 #: tracklet.php:370
     31#: tracklet.php:378
    3232msgid "With Results"
    3333msgstr "Mit Ergebnisse"
    3434
    35 #: tracklet.php:370
     35#: tracklet.php:378
    3636msgid "Without Results"
    3737msgstr "Ohne Ergebnisse"
    3838
    39 #: tracklet.php:397
     39#: tracklet.php:405
    4040msgid "Search"
    4141msgstr "Suche"
    4242
    43 #: tracklet.php:397
     43#: tracklet.php:405
    4444msgid "Header Search"
    4545msgstr "Suchfeld in Kopfzeile"
     
    128128
    129129#: views/pages/dashboard.php:29 views/pages/dashboard.php:53
    130 #: views/pages/dashboard.php:80
     130#: views/pages/dashboard.php:80 views/pages/dashboard.php:104
    131131msgid "No"
    132132msgstr "Nein"
    133133
    134134#: views/pages/dashboard.php:34 views/pages/dashboard.php:58
    135 #: views/pages/dashboard.php:85 views/pages/dashboard.php:104
    136 #: views/pages/dashboard.php:109
     135#: views/pages/dashboard.php:85 views/pages/dashboard.php:109
    137136msgid "Yes"
    138137msgstr "Ja"
     
    199198
    200199#: views/pages/dashboard.php:103
    201 msgid "Tracking code in page header?"
    202 msgstr "Tracking-Code im Seitenkopf?"
     200msgid "Tracking code in page footer?"
     201msgstr "Tracking-Code im Seitenfuss?"
    203202
    204203#: views/pages/dashboard.php:114
    205 msgid "Tracking code in page header"
    206 msgstr "Tracking-Code im Seitenkopf"
     204msgid "Tracking code in page footer"
     205msgstr "Tracking-Code im Seitenfuss"
    207206
    208207#: views/pages/dashboard.php:116
    209208msgid ""
    210 "If this field is activated, the etracker tracking code is integrated into "
    211 "the page header, otherwise it will be integrated at the end of the page"
    212 msgstr ""
    213 "Wenn die Option aktiviert ist, wird der etracker Tracking Code im Seitenkopf "
    214 "integriert. Ansonsten wird der Tracking Code am Ende der Seite integriert."
     209"If this field is activated, the etracker tracking code is integrated at the "
     210"end of the page, otherwise it will be integrated in the page header"
     211msgstr ""
     212"Wenn die Option aktiviert ist, wird der etracker Tracking Code am Ende der "
     213"Seite integriert. Ansonsten wird der Tracking Code  im Seitenkopf (Header) "
     214"integriert."
    215215
    216216#: views/pages/dashboard.php:133
  • wp-etracker/trunk/tracklet.php

    r2099684 r2099688  
    5252        // K. Meffert: Optionally add etracker tracking code to footer instead of header
    5353        if(get_option('tracking_code_hf_option') == 'on') {
    54             add_action('wp_enqueue_scripts', array($this, 'wpetracker_add_tracking_script'));
     54            add_action('wp_footer', array($this, 'wpetracker_add_tracking_script'));
    5555        }
    5656        else {
    57             add_action('wp_footer', array($this, 'wpetracker_add_tracking_script'));
     57            add_action('wp_enqueue_scripts', array($this, 'wpetracker_add_tracking_script'));
    5858        }
    5959       
  • wp-etracker/trunk/views/pages/dashboard.php

    r2099677 r2099688  
    101101                    <form id="active3" action="" method="post">
    102102                        <input type="hidden" value="x" name="hfind3"></input>
    103                         <h2><?php _e('Tracking code in page header?', 'wpetracker'); ?></h2>
     103                        <h2><?php _e('Tracking code in page footer?', 'wpetracker'); ?></h2>
    104104                        <span class="mainTitle-block red-color"><?php _e('No', 'wpetracker'); ?></span>
    105105                        <label class="switch">
     
    112112                    <div class="question-mark"><span class="question">?</span></div>
    113113                    <div class="question-block hidden">
    114                         <h2><?php _e('Tracking code in page header', 'wpetracker'); ?></h2>
     114                        <h2><?php _e('Tracking code in page footer', 'wpetracker'); ?></h2>
    115115                        <div class="content-block">
    116                             <?php _e('If this field is activated, the etracker tracking code is integrated into the page header, otherwise it will be integrated at the end of the page', 'wpetracker'); ?>
     116                            <?php _e('If this field is activated, the etracker tracking code is integrated at the end of the page, otherwise it will be integrated in the page header', 'wpetracker'); ?>
    117117                        </div>
    118118                        <span class="close-question"></span>
Note: See TracChangeset for help on using the changeset viewer.