diff options
author | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2011-08-18 18:04:16 +0200 |
---|---|---|
committer | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2011-08-18 18:04:16 +0200 |
commit | cf64ae0e4bae6efd7fd6997f699bdf6c7401618b (patch) | |
tree | bc192d25d06b6d806c6190c7a649efcf04eb6902 /addon/piwik/piwik.php | |
parent | bea02876eb41c8ffdffbeb90083491be9c334a1a (diff) | |
download | volse-hubzilla-cf64ae0e4bae6efd7fd6997f699bdf6c7401618b.tar.gz volse-hubzilla-cf64ae0e4bae6efd7fd6997f699bdf6c7401618b.tar.bz2 volse-hubzilla-cf64ae0e4bae6efd7fd6997f699bdf6c7401618b.zip |
piwik analytics opt-out note now translate able
Diffstat (limited to 'addon/piwik/piwik.php')
-rw-r--r-- | addon/piwik/piwik.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/addon/piwik/piwik.php b/addon/piwik/piwik.php index 8389416e9..890309d4f 100644 --- a/addon/piwik/piwik.php +++ b/addon/piwik/piwik.php @@ -66,7 +66,12 @@ function piwik_analytics($a,&$b) { * otherwise just include the above code into the page. */ if ($optout) { - $b .= "<div id='piwik-optout-link'>This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool. If you do not want that your visits are logged this way you <a href='http://". $baseurl ."index.php?module=CoreAdminHome&action=optOut'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out).</div>"; + $b .= "<div id='piwik-optout-link'>"; + $b .= t("This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."); + $b .= " "; + $the_url = "http://".$baseurl ."index.php?module=CoreAdminHome&action=optOut"; + $b .= sprintf(t("If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."), $the_url); + $b .= "</div>"; } } |