diff --git a/classes/WP_Piwik.php b/classes/WP_Piwik.php
index 199ce3d..c6a0557 100644
--- a/classes/WP_Piwik.php
+++ b/classes/WP_Piwik.php
@@ -557,16 +557,17 @@ public function addPiwikAnnotation($postID) {
* @return boolean settings update applied
*/
private function applySettings() {
- $_POST ['wp-piwik']['last_settings_update'] = time();
- $_POST ['wp-piwik']['revision'] = self::$revisionId;
self::$settings->applyChanges ( $_POST ['wp-piwik'] );
+ echo 'Settings gespeichert';
if (self::$settings->getGlobalOption ( 'auto_site_config' ) && self::isConfigured ()) {
if ($this->isPHPMode () && ! defined ( 'PIWIK_INCLUDE_PATH' ))
self::definePiwikConstants ();
- $siteId = $this->requestPiwikSiteId ();
+ $siteId = $this->getPiwikSiteId ();
$trackingCode = $this->updateTrackingCode ( $siteId );
- self::$settings->getOption ( 'site_id', $siteId );
+ self::$settings->setOption ( 'site_id', $siteId );
}
+ self::$settings->setGlobalOption ( 'revision', self::$revisionId );
+ self::$settings->setGlobalOption ( 'last_settings_update', time () );
return true;
}
@@ -919,6 +920,8 @@ private static function showErrorMessage($message) {
* @return mixed request result
*/
public function request($id, $debug = false) {
+ if ( self::$settings->getGlobalOption ( 'piwik_mode' ) == 'disabled' )
+ return 'n/a';
if (! isset ( self::$request ))
self::$request = (self::$settings->getGlobalOption ( 'piwik_mode' ) == 'http' || self::$settings->getGlobalOption ( 'piwik_mode' ) == 'pro' ? new WP_Piwik\Request\Rest ( $this, self::$settings ) : new WP_Piwik\Request\Php ( $this, self::$settings ));
if ($debug)
@@ -992,7 +995,7 @@ private function requestPiwikSiteId($blogId = null) {
$this->log ( 'Tried to identify current site, result: ' . serialize ( $result ) );
if (empty ( $result ) || ! isset ( $result [0] ))
$result = $this->addPiwikSite ( $blogId );
- else
+ elseif ( $result != 'n/a' )
$result = $result [0] ['idsite'];
} else
$result = null;
diff --git a/classes/WP_Piwik/Request.php b/classes/WP_Piwik/Request.php
index 711f3a2..69d7a15 100644
--- a/classes/WP_Piwik/Request.php
+++ b/classes/WP_Piwik/Request.php
@@ -19,6 +19,8 @@ public static function register($method, $parameter) {
$id = 'method='.$method.self::parameterToString($parameter);
if (
in_array( $method, array( 'API.getPiwikVersion', 'SitesManager.getJavascriptTag', 'SitesManager.getSitesWithAtLeastViewAccess', 'SitesManager.getSitesIdFromSiteUrl', 'SitesManager.addSite', 'SitesManager.updateSite', 'SitesManager.getSitesWithAtLeastViewAccess' ) ) ||
+ !isset( $parameter['date'] ) ||
+ !isset( $parameter['period'] ) ||
substr($parameter['date'], 0, 4) == 'last' ||
$parameter['date'] == 'today' ||
( $parameter['period'] == 'day' && $parameter['date'] == date('Ymd') ) ||
diff --git a/classes/WP_Piwik/Widget/OptOut.php b/classes/WP_Piwik/Widget/OptOut.php
index 053a282..7422eea 100644
--- a/classes/WP_Piwik/Widget/OptOut.php
+++ b/classes/WP_Piwik/Widget/OptOut.php
@@ -11,7 +11,18 @@ protected function configure($prefix = '', $params = array()) {
}
public function show() {
- $this->out ( '' );
+ $protocol = (isset ( $_SERVER ['HTTPS'] ) && $_SERVER ['HTTPS'] != 'off') ? 'https' : 'http';
+ switch (self::$settings->getGlobalOption ( 'piwik_mode' )) {
+ case 'php' :
+ $PIWIK_URL = $protocol . ':' . self::$settings->getGlobalOption ( 'proxy_url' );
+ break;
+ case 'pro' :
+ $PIWIK_URL = 'https://' . self::$settings->getGlobalOption ( 'piwik_user' ) . '.piwik.pro/';
+ break;
+ default :
+ $PIWIK_URL = self::$settings->getGlobalOption ( 'piwik_url' );
+ }
+ $this->out ( '' );
}
}
\ No newline at end of file
diff --git a/languages/wp-piwik-de_DE.mo b/languages/wp-piwik-de_DE.mo
index 379a777..c5124af 100755
Binary files a/languages/wp-piwik-de_DE.mo and b/languages/wp-piwik-de_DE.mo differ
diff --git a/languages/wp-piwik-de_DE.po b/languages/wp-piwik-de_DE.po
index c9419fb..5812b85 100755
--- a/languages/wp-piwik-de_DE.po
+++ b/languages/wp-piwik-de_DE.po
@@ -1,4 +1,4 @@
-#
+#
# Translators:
# André Bräkling , 2011
# André Bräkling , 2015
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WP-Piwik\n"
"POT-Creation-Date: 2015-05-10 16:33+0100\n"
-"PO-Revision-Date: 2015-05-10 14:45+0000\n"
+"PO-Revision-Date: 2015-05-15 22:19+0100\n"
"Last-Translator: André Bräkling \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/wp-piwik/language/de_DE/)\n"
"MIME-Version: 1.0\n"
@@ -17,8 +17,8 @@ msgstr ""
"X-Generator: Poedit 1.7.5\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
-"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SourceCharset: UTF-8\n"
+"X-Poedit-SearchPath-0: .\n"
#: classes/WP_Piwik.php:185
#, php-format
@@ -82,23 +82,17 @@ msgstr "Du verwendest WordPress %s."
#: classes/WP_Piwik/Admin/Settings.php:35
#, php-format
-msgid ""
-"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
-"your sites as different websites."
+msgid "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle your sites as different websites."
msgstr "Du verwendest ein WordPress %s Blog Netzwerk (WPMU). WP-Piwik wird Deine Seiten als unterschiedliche Webseiten behandeln."
#: classes/WP_Piwik/Admin/Settings.php:37
#, php-format
-msgid ""
-"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
-" the »Connect to Piwik« section below."
+msgid "WP-Piwik %s was not able to connect to Piwik using your configuration. Check the »Connect to Piwik« section below."
msgstr "WP-Piwik %s konnte sich mit Deiner Konfiguration nicht mit Piwik verbinden. Bitte überprfüfe die »Mit Piwik verbinden«-Sektion unten."
#: classes/WP_Piwik/Admin/Settings.php:40
#, php-format
-msgid ""
-"WP-Piwik %s has to be connected to Piwik first. Check the »Connect to "
-"Piwik« section below."
+msgid "WP-Piwik %s has to be connected to Piwik first. Check the »Connect to Piwik« section below."
msgstr "WP-Piwik %s muss zunächst mit Piwik verbunden werden. Bitte überprfüfe die »Mit Piwik verbinden«-Sektion unten."
#: classes/WP_Piwik/Admin/Settings.php:44
@@ -122,11 +116,7 @@ msgid "Credits"
msgstr "Danksagungen"
#: classes/WP_Piwik/Admin/Settings.php:79
-msgid ""
-"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
-"WordPress admin dashboard and to add and configure your Piwik tracking code."
-" To use this you will need your own Piwik instance. If you do not already "
-"have a Piwik setup, you have two simple options: use either"
+msgid "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your WordPress admin dashboard and to add and configure your Piwik tracking code. To use this you will need your own Piwik instance. If you do not already have a Piwik setup, you have two simple options: use either"
msgstr "WP-Piwik ist ein WordPress Plugin, um eine Auswahl von Piwik-Statistiken in Deinem WordPress Admin-Dashboard anzuzeigen, und um Deinen Piwik-Tracking-Code hinzuzufügen und zu konfigurieren. Um es zu verwenden, musst Du zunächst eine Piwik-Installation haben. Es gibt zwei Möglichkeiten: Betreibe Piwik entweder "
#: classes/WP_Piwik/Admin/Settings.php:79
@@ -142,13 +132,10 @@ msgid "Cloud-hosted"
msgstr "in der Cloud"
#: classes/WP_Piwik/Admin/Settings.php:82
-msgid ""
-"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
-"and not connect to Piwik Pro."
+msgid "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API and not connect to Piwik Pro."
msgstr "Weder cURL noch fopen ist verfügbar. Deswegen kann WP-Piwik die HTTP-API nicht verwenden und auch nicht zu Piwik Pro verbinden."
-#: classes/WP_Piwik/Admin/Settings.php:82
-#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+#: classes/WP_Piwik/Admin/Settings.php:82 classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
msgid "More information"
msgstr "Weitere Informationen"
@@ -156,37 +143,28 @@ msgstr "Weitere Informationen"
msgid "You can choose between three connection methods:"
msgstr "Du kannst zwischen drei Verbindungsmöglichkeiten wählen:"
-#: classes/WP_Piwik/Admin/Settings.php:84
-#: classes/WP_Piwik/Admin/Settings.php:87
+#: classes/WP_Piwik/Admin/Settings.php:84 classes/WP_Piwik/Admin/Settings.php:87
msgid "Self-hosted (HTTP API, default)"
msgstr "Selbst-gehostet (HTTP API, Standard)"
#: classes/WP_Piwik/Admin/Settings.php:84
-msgid ""
-"This is the default option for a self-hosted Piwik and should work for most "
-"configurations. WP-Piwik will connect to Piwk using http(s)."
+msgid "This is the default option for a self-hosted Piwik and should work for most configurations. WP-Piwik will connect to Piwik using http(s)."
msgstr "Dies ist die Standard-Einstellung für ein selbst-gehostetes Piwik und sollte in den meisten Konfigurationen funktionieren. WP-Piwik verbindet sich mit Piwik über http(s)."
-#: classes/WP_Piwik/Admin/Settings.php:84
-#: classes/WP_Piwik/Admin/Settings.php:88
+#: classes/WP_Piwik/Admin/Settings.php:84 classes/WP_Piwik/Admin/Settings.php:88
msgid "Self-hosted (PHP API)"
msgstr "Selbst-gehostet (PHP AP)"
#: classes/WP_Piwik/Admin/Settings.php:84
-msgid ""
-"Choose this, if your self-hosted Piwik and WordPress are running on the same"
-" machine and you know the full server path to your Piwik instance."
+msgid "Choose this, if your self-hosted Piwik and WordPress are running on the same machine and you know the full server path to your Piwik instance."
msgstr "Wähle diese Option, wenn Dein selbst-gehostetes Piwik und WordPress auf dem gleichen Server laufen und Du den vollen Serverpfad zu Deiner Piwik-Installation kennst."
-#: classes/WP_Piwik/Admin/Settings.php:84
-#: classes/WP_Piwik/Admin/Settings.php:89
+#: classes/WP_Piwik/Admin/Settings.php:84 classes/WP_Piwik/Admin/Settings.php:89
msgid "Cloud-hosted (Piwik Pro)"
msgstr "In der Cloud (Piwik Pro)"
#: classes/WP_Piwik/Admin/Settings.php:84
-msgid ""
-"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
-"option."
+msgid "If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this option."
msgstr "Wenn Du ein Piwik in der Cloud von Piwik Pro verwendest, kannst Du einfach diese Option wählen."
#: classes/WP_Piwik/Admin/Settings.php:85
@@ -202,9 +180,7 @@ msgid "Piwik URL"
msgstr "Piwik URL"
#: classes/WP_Piwik/Admin/Settings.php:92
-msgid ""
-"Enter your Piwik URL. This is the same URL you use to access your Piwik "
-"instance, e.g. http://www.example.com/piwik/."
+msgid "Enter your Piwik URL. This is the same URL you use to access your Piwik instance, e.g. http://www.example.com/piwik/."
msgstr "Gebe Deine Piwik-URL ein. Es handelt sich um die gleiche URL, die Du auch verwendest, um Dein Piwik zu öffnen, z.B. http://www.example.com/piwik/."
#: classes/WP_Piwik/Admin/Settings.php:93
@@ -220,9 +196,7 @@ msgid "Piwik user"
msgstr "Piwik-Benutzer"
#: classes/WP_Piwik/Admin/Settings.php:94
-msgid ""
-"Enter your Piwik Pro username. It is also part of your URL: "
-"http://USERNAME.piwik.pro."
+msgid "Enter your Piwik Pro username. It is also part of your URL: http://USERNAME.piwik.pro."
msgstr "Gib hier Deinen Piwik Pro Benutzernamen an. Er ist auch Teil Deiner URL: http://USERNAME.piwik.pro."
#: classes/WP_Piwik/Admin/Settings.php:95
@@ -230,9 +204,7 @@ msgid "Auth token"
msgstr "Auth Token"
#: classes/WP_Piwik/Admin/Settings.php:95
-msgid ""
-"Enter your Piwik auth token here. It is an alphanumerical code like "
-"0a1b2c34d56e78901fa2bc3d45678efa."
+msgid "Enter your Piwik auth token here. It is an alphanumerical code like 0a1b2c34d56e78901fa2bc3d45678efa."
msgstr "Gib hier Dein Piwik Auth Token an. Es ist ein alphanumerische Code wie 0a1b2c34d56e78901fa2bc3d45678efa."
#: classes/WP_Piwik/Admin/Settings.php:95
@@ -245,9 +217,7 @@ msgid "Auto config"
msgstr "Auto-Konfiguration"
#: classes/WP_Piwik/Admin/Settings.php:100
-msgid ""
-"Check this to automatically choose your blog from your Piwik sites by URL. "
-"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgid "Check this to automatically choose your blog from your Piwik sites by URL. If your blog is not added to Piwik yet, WP-Piwik will add a new site."
msgstr "Aktiviere diesen Haken, um Dein Blog über seine URL automatisch aus Deinen Piwik-Seiten auszuwählen. Wenn Dein Blog bisher nicht zu Piwik hinzugefügt wurde, wird WP-Piwik eine neue Seite hinzufügen."
#: classes/WP_Piwik/Admin/Settings.php:106
@@ -266,13 +236,11 @@ msgstr "Wähle die Seite"
msgid "Piwik default date"
msgstr "Piwik Standard-Datum"
-#: classes/WP_Piwik/Admin/Settings.php:123
-#: classes/WP_Piwik/Admin/Settings.php:136
+#: classes/WP_Piwik/Admin/Settings.php:123 classes/WP_Piwik/Admin/Settings.php:136
msgid "Today"
msgstr "Heute"
-#: classes/WP_Piwik/Admin/Settings.php:124
-#: classes/WP_Piwik/Admin/Settings.php:135
+#: classes/WP_Piwik/Admin/Settings.php:124 classes/WP_Piwik/Admin/Settings.php:135
msgid "Yesterday"
msgstr "Gestern"
@@ -304,8 +272,7 @@ msgstr "Zeige SEO-Daten"
msgid "Display SEO ranking data on statistics page."
msgstr "Zeige SEO-Ranking-Daten auf der Statistiken-Seite."
-#: classes/WP_Piwik/Admin/Settings.php:131
-#: classes/WP_Piwik/Admin/Settings.php:142
+#: classes/WP_Piwik/Admin/Settings.php:131 classes/WP_Piwik/Admin/Settings.php:142
msgid "Slow!"
msgstr "Langsam!"
@@ -313,10 +280,7 @@ msgstr "Langsam!"
msgid "Dashboard overview"
msgstr "Dashboard Übersicht"
-#: classes/WP_Piwik/Admin/Settings.php:134
-#: classes/WP_Piwik/Admin/Settings.php:172
-#: classes/WP_Piwik/Admin/Settings.php:174
-#: classes/WP_Piwik/Admin/Settings.php:195
+#: classes/WP_Piwik/Admin/Settings.php:134 classes/WP_Piwik/Admin/Settings.php:172 classes/WP_Piwik/Admin/Settings.php:174 classes/WP_Piwik/Admin/Settings.php:195
msgid "Disabled"
msgstr "Deaktiviert"
@@ -397,14 +361,10 @@ msgid "You can choose between four tracking code modes:"
msgstr "Du kannst zwischen vier Tracking-Code-Varianten wählen:"
#: classes/WP_Piwik/Admin/Settings.php:172
-msgid ""
-"WP-Piwik will not add the tracking code. Use this, if you want to add the "
-"tracking code to your template files or you use another plugin to add the "
-"tracking code."
+msgid "WP-Piwik will not add the tracking code. Use this, if you want to add the tracking code to your template files or you use another plugin to add the tracking code."
msgstr "WP-Piwik wird den Tracking-Code nicht hinzufügen. Benutze dies, wenn Du den Tracking-Code direkt in Deinem Template oder über ein anderes Plugin einfügen willst."
-#: classes/WP_Piwik/Admin/Settings.php:172
-#: classes/WP_Piwik/Admin/Settings.php:175
+#: classes/WP_Piwik/Admin/Settings.php:172 classes/WP_Piwik/Admin/Settings.php:175
msgid "Default tracking"
msgstr "Standard-Tracking"
@@ -412,15 +372,12 @@ msgstr "Standard-Tracking"
msgid "WP-Piwik will use Piwik's standard tracking code."
msgstr "WP-Piwik verwendet den Standard Tracking-Code von Piwik."
-#: classes/WP_Piwik/Admin/Settings.php:172
-#: classes/WP_Piwik/Admin/Settings.php:176
+#: classes/WP_Piwik/Admin/Settings.php:172 classes/WP_Piwik/Admin/Settings.php:176
msgid "Use js/index.php"
msgstr "Nutze js/index.php"
#: classes/WP_Piwik/Admin/Settings.php:172
-msgid ""
-"You can choose this tracking code, to deliver a minified proxy code and to "
-"avoid using the files called piwik.js or piwik.php."
+msgid "You can choose this tracking code, to deliver a minified proxy code and to avoid using the files called piwik.js or piwik.php."
msgstr "Du kannst diesen Tracking-Code wählen, um einen minimierten Proxy-Code auszuliefern und dabei zu vermeiden, dass die Dateien mit dem Namen piwik.js oder piwik.php verwendet werden."
#: classes/WP_Piwik/Admin/Settings.php:172
@@ -428,8 +385,7 @@ msgstr "Du kannst diesen Tracking-Code wählen, um einen minimierten Proxy-C
msgid "See %sreadme file%s."
msgstr "Siehe %sReadme-Datei%s."
-#: classes/WP_Piwik/Admin/Settings.php:172
-#: classes/WP_Piwik/Admin/Settings.php:177
+#: classes/WP_Piwik/Admin/Settings.php:172 classes/WP_Piwik/Admin/Settings.php:177
msgid "Use proxy script"
msgstr "Verwende Proxy-Skript"
@@ -437,23 +393,17 @@ msgstr "Verwende Proxy-Skript"
msgid "Use this tracking code to not reveal the Piwik server URL."
msgstr "Verwende diesen Tracking-Code, um die URL zu Deinem Piwik-Sever nicht offenzulegen."
-#: classes/WP_Piwik/Admin/Settings.php:172
-#: classes/WP_Piwik/Admin/Settings.php:192
-#: classes/WP_Piwik/Admin/Settings.php:202
+#: classes/WP_Piwik/Admin/Settings.php:172 classes/WP_Piwik/Admin/Settings.php:192 classes/WP_Piwik/Admin/Settings.php:202
#, php-format
msgid "See %sPiwik FAQ%s."
msgstr "Siehe %sPiwik FAQ%s."
-#: classes/WP_Piwik/Admin/Settings.php:172
-#: classes/WP_Piwik/Admin/Settings.php:178
+#: classes/WP_Piwik/Admin/Settings.php:172 classes/WP_Piwik/Admin/Settings.php:178
msgid "Enter manually"
msgstr "Manuelle Eingabe"
#: classes/WP_Piwik/Admin/Settings.php:172
-msgid ""
-"Enter your own tracking code manually. You can choose one of the prior "
-"options, pre-configure your tracking code and switch to manually editing at "
-"last."
+msgid "Enter your own tracking code manually. You can choose one of the prior options, pre-configure your tracking code and switch to manually editing at last."
msgstr "Gebe manuell Deinen eigenen Tracking-Code ein. Du kannst eine der vorhergehenden Optionen nutzen, Deinen Tracking-Code vorkonfigurieren und abschließend auf die manuelle Bearbeitung wechseln."
#: classes/WP_Piwik/Admin/Settings.php:172
@@ -481,8 +431,7 @@ msgid "Header"
msgstr "Kopfbereich"
#: classes/WP_Piwik/Admin/Settings.php:186
-msgid ""
-"Choose whether the JavaScript code is added to the footer or the header."
+msgid "Choose whether the JavaScript code is added to the footer or the header."
msgstr "Wähle, ob der JavaScript-Code im Footer oder im Header eingefügt werden soll."
#: classes/WP_Piwik/Admin/Settings.php:188
@@ -497,8 +446,7 @@ msgstr "Füge <noscript> hinzu"
msgid "Adds the <noscript> code to your footer."
msgstr "Fügt den <noscript>-Code im Footer ein."
-#: classes/WP_Piwik/Admin/Settings.php:190
-#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:190 classes/WP_Piwik/Admin/Settings.php:192
msgid "Disabled in proxy mode."
msgstr "Im Proxy-Modus deaktiviert."
@@ -523,19 +471,10 @@ msgid "Track only visible content blocks"
msgstr "Tracke nur sichtbare Content-Bereiche"
#: classes/WP_Piwik/Admin/Settings.php:198
-msgid ""
-"Content tracking allows you to track interaction with the content of a web "
-"page or application."
+msgid "Content tracking allows you to track interaction with the content of a web page or application."
msgstr "Das Content-Tracking erlaubt es Dir, Interaktionen mit dem Inhalt einer Webseite oder -anwendung zu tracken."
-#: classes/WP_Piwik/Admin/Settings.php:198
-#: classes/WP_Piwik/Admin/Settings.php:200
-#: classes/WP_Piwik/Admin/Settings.php:204
-#: classes/WP_Piwik/Admin/Settings.php:206
-#: classes/WP_Piwik/Admin/Settings.php:208
-#: classes/WP_Piwik/Admin/Settings.php:229
-#: classes/WP_Piwik/Admin/Settings.php:231
-#: classes/WP_Piwik/Admin/Settings.php:235
+#: classes/WP_Piwik/Admin/Settings.php:198 classes/WP_Piwik/Admin/Settings.php:200 classes/WP_Piwik/Admin/Settings.php:204 classes/WP_Piwik/Admin/Settings.php:206 classes/WP_Piwik/Admin/Settings.php:208 classes/WP_Piwik/Admin/Settings.php:229 classes/WP_Piwik/Admin/Settings.php:231 classes/WP_Piwik/Admin/Settings.php:235
#, php-format
msgid "See %sPiwik documentation%s."
msgstr "Siehe %sPiwik-Dokumentation%s."
@@ -553,8 +492,7 @@ msgid "Track 404"
msgstr "404-Tracking"
#: classes/WP_Piwik/Admin/Settings.php:202
-msgid ""
-"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgid "WP-Piwik can automatically add a 404-category to track 404-page-visits."
msgstr "WP-Piwik kann automatisch eine eigene Kategorie für 404-Seiten hinzufügen."
#: classes/WP_Piwik/Admin/Settings.php:204
@@ -578,9 +516,7 @@ msgid "Add new file types for download tracking"
msgstr "Füge weitere Dateitypen für das Download-Tracking hinzu."
#: classes/WP_Piwik/Admin/Settings.php:208
-msgid ""
-"Add file extensions for download tracking, divided by a vertical bar "
-"(|)."
+msgid "Add file extensions for download tracking, divided by a vertical bar (|)."
msgstr "Füge Dateierweiterung zum Download-Tracking hinzu. Trenne mehrere Erweiterung durch einen senkrechten Strich (|)."
#: classes/WP_Piwik/Admin/Settings.php:210
@@ -596,9 +532,7 @@ msgid "Limit cookie lifetime"
msgstr "Cookie-Lebensdauer beschränken"
#: classes/WP_Piwik/Admin/Settings.php:212
-msgid ""
-"You can limit the cookie lifetime to avoid tracking your users over a longer"
-" period as necessary."
+msgid "You can limit the cookie lifetime to avoid tracking your users over a longer period as necessary."
msgstr "Du kannst die Cookie-Lebenszeit begrenzen, um Deine Besucher nicht länger als notwendig zu tracken."
#: classes/WP_Piwik/Admin/Settings.php:214
@@ -618,9 +552,7 @@ msgid "Track admin pages"
msgstr "Admin-Seiten tracken"
#: classes/WP_Piwik/Admin/Settings.php:220
-msgid ""
-"Enable to track users on admin pages (remember to configure the tracking "
-"filter appropriately)."
+msgid "Enable to track users on admin pages (remember to configure the tracking filter appropriately)."
msgstr "Aktivieren, um Nutzer auf Admin-Seiten zu zählen (bitte den Tracking Filter entsprechend konfigurieren)."
#: classes/WP_Piwik/Admin/Settings.php:223
@@ -640,7 +572,7 @@ msgid "Adds *.-prefix to cookie domain."
msgstr "Fügt ein *.-Präfix zur Cookie Domain hinzu."
#: classes/WP_Piwik/Admin/Settings.php:231
-msgid "Do not count subdomians as outlink"
+msgid "Do not count subdomains as outlink"
msgstr "Werte Subdomains nicht als ausgehenden Link"
#: classes/WP_Piwik/Admin/Settings.php:231
@@ -672,9 +604,7 @@ msgid "Keyword: post name."
msgstr "Schlüsselwort: Name des Beitrags."
#: classes/WP_Piwik/Admin/Settings.php:242
-msgid ""
-"Usually, you do not need to change these settings. If you want to do so, you"
-" should know what you do or you got an expert's advice."
+msgid "Usually, you do not need to change these settings. If you want to do so, you should know what you do or you got an expert's advice."
msgstr "Normalerweise solltest Du diese Einstellungen nicht ändern müssen. Solltest Du hier doch etwas ändern wollen, solltest Du wissen was Du tust oder dies auf Anleitung eines Experten tun."
#: classes/WP_Piwik/Admin/Settings.php:244
@@ -735,9 +665,7 @@ msgid "See %sCloudFlare Knowledge Base%s."
msgstr "Siehe %sdie CloudFlare Knowledge Base%s."
#: classes/WP_Piwik/Admin/Settings.php:258
-msgid ""
-"Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
-"ignore the script. "
+msgid "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to ignore the script. "
msgstr "Füge data-cfasync=false zum Script-Tag hinzu. Damit wird z.B. Rocket Loader aufgefordert, das Skript zu ignorieren."
#: classes/WP_Piwik/Admin/Settings.php:260
@@ -765,9 +693,7 @@ msgid "https (SSL)"
msgstr "https (SSL)"
#: classes/WP_Piwik/Admin/Settings.php:268
-msgid ""
-"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
-"work with a CDN URL."
+msgid "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not work with a CDN URL."
msgstr "Wähle aus, ob Du Piwik ausdrücklich zwingen willst, HTTP oder HTTPS zu verwenden. Funktioniert nicht mit einer CDN URL."
#: classes/WP_Piwik/Admin/Settings.php:427
@@ -782,8 +708,7 @@ msgstr "Wenn Dir WP-Piwik gefällt, kannst Du die weitere Entwicklung mit ei
msgid "My Amazon.de wishlist"
msgstr "Meine Wunschliste bei Amazon.de"
-#: classes/WP_Piwik/Admin/Settings.php:470
-#: classes/WP_Piwik/Admin/Settings.php:517
+#: classes/WP_Piwik/Admin/Settings.php:470 classes/WP_Piwik/Admin/Settings.php:517
msgid "Please don't forget to vote the compatibility at the"
msgstr "Bitte denke daran, eine Kompatibilitätsbewertung abzugeben:"
@@ -800,11 +725,7 @@ msgid ", and all people flattering this"
msgstr " und allen, die WP-Piwik flattrn"
#: classes/WP_Piwik/Admin/Settings.php:502
-msgid ""
-"Graphs powered by jqPlot (License: "
-"GPL 2.0 and MIT) and jQuery Sparklines "
-"(License: New BSD License)."
+msgid "Graphs powered by jqPlot (License: GPL 2.0 and MIT) and jQuery Sparklines (License: New BSD License)."
msgstr "Die Graphen werden mit jqPlot (Lizenz: GPL 2.0 and MIT) und jQuery Sparklines (Lizenz: New BSD License) erstellt."
#: classes/WP_Piwik/Admin/Settings.php:503
@@ -824,16 +745,11 @@ msgid "for your translation work"
msgstr "für eure Übersetzungsarbeit"
#: classes/WP_Piwik/Admin/Settings.php:506
-msgid ""
-"Thank you very much, all users who send me mails containing criticism, "
-"commendation, feature requests and bug reports! You help me to make WP-Piwik"
-" much better."
+msgid "Thank you very much, all users who send me mails containing criticism, commendation, feature requests and bug reports! You help me to make WP-Piwik much better."
msgstr "Vielen Dank an alle Nutzer, die mir Mails mit Kritik, Lob, Featurewünsche und Bugmeldungen senden. Ihr helft mir dabei, WP-Piwik viel besser zu machen."
#: classes/WP_Piwik/Admin/Settings.php:507
-msgid ""
-"Thank you for using my plugin. It is the best commendation "
-"if my piece of code is really used!"
+msgid "Thank you for using my plugin. It is the best commendation if my piece of code is really used!"
msgstr "Vielen Dank an Dich für die Nutzung meines Plugins. Es ist das größte Lob, wenn mein Code tatsächlich benutzt wird!"
#: classes/WP_Piwik/Admin/Settings.php:516
@@ -849,17 +765,14 @@ msgid "Debugging"
msgstr "Fehlersuche"
#: classes/WP_Piwik/Admin/Settings.php:520
-msgid ""
-"Either allow_url_fopen has to be enabled or cURL has to be "
-"available:"
+msgid "Either allow_url_fopen has to be enabled or cURL has to be available:"
msgstr "Entweder allow_url_fopen muss aktiviert oder cURL muss verfügbar sein:"
#: classes/WP_Piwik/Admin/Settings.php:523
msgid "cURL is"
msgstr "cURL ist"
-#: classes/WP_Piwik/Admin/Settings.php:524
-#: classes/WP_Piwik/Admin/Settings.php:529
+#: classes/WP_Piwik/Admin/Settings.php:524 classes/WP_Piwik/Admin/Settings.php:529
msgid "not"
msgstr "nicht"
@@ -951,31 +864,16 @@ msgstr "Wert"
msgid "Set custom variables for a page view"
msgstr "Definiere custom variables für einen Seitenaufruf."
-#: classes/WP_Piwik/Widget.php:91
-#: classes/WP_Piwik/Widget/BrowserDetails.php:35
-#: classes/WP_Piwik/Widget/Browsers.php:35
-#: classes/WP_Piwik/Widget/Chart.php:41
-#: classes/WP_Piwik/Widget/Noresult.php:23
-#: classes/WP_Piwik/Widget/Overview.php:24
-#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
-#: classes/WP_Piwik/Widget/Screens.php:35
-#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
-#: classes/WP_Piwik/Widget/Systems.php:33
-#: classes/WP_Piwik/Widget/Visitors.php:35
+#: classes/WP_Piwik/Widget.php:91 classes/WP_Piwik/Widget/BrowserDetails.php:35 classes/WP_Piwik/Widget/Browsers.php:35 classes/WP_Piwik/Widget/Chart.php:41 classes/WP_Piwik/Widget/Noresult.php:23 classes/WP_Piwik/Widget/Overview.php:24 classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35 classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20 classes/WP_Piwik/Widget/Systems.php:33 classes/WP_Piwik/Widget/Visitors.php:35
msgid "Piwik error"
msgstr "Piwik-Fehler"
-#: classes/WP_Piwik/Widget.php:100
-#: classes/WP_Piwik/Widget/BrowserDetails.php:37
-#: classes/WP_Piwik/Widget/Browsers.php:37
-#: classes/WP_Piwik/Widget/Screens.php:37
-#: classes/WP_Piwik/Widget/Systems.php:35
-#: classes/WP_Piwik/Widget/Visitors.php:57
+#: classes/WP_Piwik/Widget.php:100 classes/WP_Piwik/Widget/BrowserDetails.php:37 classes/WP_Piwik/Widget/Browsers.php:37 classes/WP_Piwik/Widget/Screens.php:37 classes/WP_Piwik/Widget/Systems.php:35 classes/WP_Piwik/Widget/Visitors.php:57
msgid "Unique"
msgstr "Unique"
-#: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25
-#: classes/WP_Piwik/Widget/Visitors.php:57
+#: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25 classes/WP_Piwik/Widget/Visitors.php:57
msgid "Visits"
msgstr "Besuche"
@@ -999,23 +897,15 @@ msgstr "Woche"
msgid "Browser Details"
msgstr "Browser-Details"
-#: classes/WP_Piwik/Widget/BrowserDetails.php:37
-#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37 classes/WP_Piwik/Widget/Browsers.php:37
msgid "Browser"
msgstr "Browser"
-#: classes/WP_Piwik/Widget/BrowserDetails.php:37
-#: classes/WP_Piwik/Widget/Browsers.php:37
-#: classes/WP_Piwik/Widget/Plugins.php:25
-#: classes/WP_Piwik/Widget/Screens.php:37
-#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37 classes/WP_Piwik/Widget/Browsers.php:37 classes/WP_Piwik/Widget/Plugins.php:25 classes/WP_Piwik/Widget/Screens.php:37 classes/WP_Piwik/Widget/Systems.php:35
msgid "Percent"
msgstr "Prozent"
-#: classes/WP_Piwik/Widget/BrowserDetails.php:53
-#: classes/WP_Piwik/Widget/Browsers.php:53
-#: classes/WP_Piwik/Widget/Screens.php:53
-#: classes/WP_Piwik/Widget/Systems.php:51
+#: classes/WP_Piwik/Widget/BrowserDetails.php:53 classes/WP_Piwik/Widget/Browsers.php:53 classes/WP_Piwik/Widget/Screens.php:53 classes/WP_Piwik/Widget/Systems.php:51
msgid "Others"
msgstr "Andere"
@@ -1023,40 +913,31 @@ msgstr "Andere"
msgid "Browsers"
msgstr "Browser"
-#: classes/WP_Piwik/Widget/Chart.php:17
-#: classes/WP_Piwik/Widget/Overview.php:40 classes/WP_Piwik/Widget/Post.php:37
-#: classes/WP_Piwik/Widget/Visitors.php:17
+#: classes/WP_Piwik/Widget/Chart.php:17 classes/WP_Piwik/Widget/Overview.php:40 classes/WP_Piwik/Widget/Post.php:37 classes/WP_Piwik/Widget/Visitors.php:17
msgid "Visitors"
msgstr "Besucher"
#: classes/WP_Piwik/Widget/Chart.php:69
-msgid ""
-"The graph contains the values shown in the table below (visitors / unique / "
-"bounces). The red line show a linear trendline (unique)."
+msgid "The graph contains the values shown in the table below (visitors / unique / bounces). The red line show a linear trendline (unique)."
msgstr "Der Graph zeigt die Werte aus der Besucher-Tabelle (Besucher / Unique / Absprünge). Die rote Linie zeigt eine lineare Trendlinie (Unique)."
#: classes/WP_Piwik/Widget/Keywords.php:16
msgid "Keywords"
msgstr "Keywords"
-#: classes/WP_Piwik/Widget/Noresult.php:16
-#: classes/WP_Piwik/Widget/Search.php:16
+#: classes/WP_Piwik/Widget/Noresult.php:16 classes/WP_Piwik/Widget/Search.php:16
msgid "Site Search"
msgstr "Seitensuche"
-#: classes/WP_Piwik/Widget/Noresult.php:25
-#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Noresult.php:25 classes/WP_Piwik/Widget/Search.php:25
msgid "Keyword"
msgstr "Keyword"
-#: classes/WP_Piwik/Widget/Noresult.php:25
-#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Noresult.php:25 classes/WP_Piwik/Widget/Search.php:25
msgid "Requests"
msgstr "Anfragen"
-#: classes/WP_Piwik/Widget/Noresult.php:25
-#: classes/WP_Piwik/Widget/Search.php:25
-#: classes/WP_Piwik/Widget/Visitors.php:57
+#: classes/WP_Piwik/Widget/Noresult.php:25 classes/WP_Piwik/Widget/Search.php:25 classes/WP_Piwik/Widget/Visitors.php:57
msgid "Bounced"
msgstr "Absprünge"
@@ -1150,7 +1031,5 @@ msgstr "Seitenansichten"
#: wp-piwik.php:60
#, php-format
-msgid ""
-"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
-" Please update PHP to use WP-Piwik."
+msgid "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s. Please update PHP to use WP-Piwik."
msgstr "WP-Piwik benötigt zumindest PHP 5.3. Du verwendest die veraltete Version %s. Bitte aktualisiere PHP um WP-Piwik zu nutzen."
diff --git a/languages/wp-piwik-fr_FR.mo b/languages/wp-piwik-fr_FR.mo
index ba536f8..237a63d 100644
Binary files a/languages/wp-piwik-fr_FR.mo and b/languages/wp-piwik-fr_FR.mo differ
diff --git a/languages/wp-piwik-fr_FR.po b/languages/wp-piwik-fr_FR.po
index bb81095..9883699 100644
--- a/languages/wp-piwik-fr_FR.po
+++ b/languages/wp-piwik-fr_FR.po
@@ -1,258 +1,1156 @@
-# WP-Piwik 0.3.0 - French language file
-# Copyright (C) 2009 Andre Braekling
-# This file is distributed under the same license as the WP-Piwik package.
-# Andre Braekling , 2009.
-#
+#
+# Translators:
+# Andre Braekling , 2009
+# Franck, 2015
msgid ""
msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: \n"
-"PO-Revision-Date: 2010-04-28 15:44+0100\n"
-"Last-Translator: fuburize \n"
-"Language-Team: \n"
+"Project-Id-Version: WP-Piwik\n"
+"POT-Creation-Date: 2015-05-10 16:33+0100\n"
+"PO-Revision-Date: 2015-05-15 18:43+0000\n"
+"Last-Translator: André Bräkling \n"
+"Language-Team: French (France) (http://www.transifex.com/projects/p/wp-piwik/language/fr_FR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: fr_FR\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"X-Generator: Poedit 1.7.5\n"
+"X-Poedit-Basepath: .\n"
+"X-Poedit-KeywordsList: __;_e\n"
+"X-Poedit-SearchPath-0: .\n"
+"X-Poedit-SourceCharset: UTF-8\n"
+
+#: classes/WP_Piwik.php:185
+#, php-format
+msgid "%s %s installed."
+msgstr "%s %s installé."
+
+#: classes/WP_Piwik.php:185
+msgid "Next you should connect to Piwik"
+msgstr "Ensuite, vous devez vous connecter à Piwik"
+
+#: classes/WP_Piwik.php:215
+#, php-format
+msgid "%s updated to %s."
+msgstr "%s mis à jour vers %s."
+
+#: classes/WP_Piwik.php:215
+msgid "Please validate your configuration"
+msgstr "Merci de valider votre configuration"
+
+#: classes/WP_Piwik.php:247 classes/WP_Piwik.php:463
+msgid "Settings"
+msgstr "Paramètres"
-#: dashboard/browsers.php:8
-#: dashboard/browsers.php:37
-msgid "Browser"
-msgstr "Navigateur"
+#: classes/WP_Piwik.php:250
+msgid "Important"
+msgstr "Important"
-msgid "Others"
-msgstr "Autres"
+#: classes/WP_Piwik.php:331 classes/WP_Piwik.php:353
+msgid "Piwik Statistics"
+msgstr "Statistiques Piwik"
-msgid "Resolution"
-msgstr "Résolution"
+#: classes/WP_Piwik.php:901
+msgid "An error occured"
+msgstr "Une erreur s'est produite"
-msgid "Operating System"
-msgstr "Système d'exploitation"
+#: classes/WP_Piwik.php:901 classes/WP_Piwik/Admin/Settings.php:62
+msgid "Support"
+msgstr "Support"
-msgid "Shortcut"
-msgstr "Raccourci"
+#: classes/WP_Piwik.php:1150
+msgid "Cheatin’ uh?"
+msgstr "Alors, on triche ?"
-msgid "Advertisement"
-msgstr "Publicité"
+#: classes/WP_Piwik/Admin/Settings.php:19
+msgid "Changes saved."
+msgstr "Modifications enregistrées."
-msgid "Looking for premium themes? Visit "
-msgstr "Vous cherchez des Premium-Themes ? Visitez "
+#: classes/WP_Piwik/Admin/Settings.php:30
+msgid "Thanks for using WP-Piwik!"
+msgstr "Merci d'utiliser WP-Piwik !"
-msgid "Avg"
-msgstr "Moyenne"
+#: classes/WP_Piwik/Admin/Settings.php:35
+#, php-format
+msgid "WP-Piwik %s is successfully connected to Piwik %s."
+msgstr "WP-Piwik %s est connecté avec succès à Piwik %s."
-msgid "Sum"
-msgstr "Somme"
+#: classes/WP_Piwik/Admin/Settings.php:35
+#, php-format
+msgid "You are running WordPress %s."
+msgstr "Vous utilisez WordPress %s."
-msgid "Unique TOTAL"
-msgstr "Unique TOTAL"
+#: classes/WP_Piwik/Admin/Settings.php:35
+#, php-format
+msgid ""
+"You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
+"your sites as different websites."
+msgstr "Vous utilisez le réseau de blogs (WPMU) d'un WordPress %s . WP-Piwik va gérer vos sites comme des sites distincts."
-#: dashboard/browsers.php:37
-#: dashboard/keywords.php:13
-#: dashboard/visitors.php:56
-#: dashboard/websites.php:13
-msgid "Unique"
-msgstr "Unique"
+#: classes/WP_Piwik/Admin/Settings.php:37
+#, php-format
+msgid ""
+"WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
+" the »Connect to Piwik« section below."
+msgstr "WP-Piwik %s n'a pas pu se connecter à Piwik à partir de votre configuration. Vérifiez la section ci-dessous »Connecter à Piwik«."
-#: dashboard/browsers.php:37
-msgid "Percent"
-msgstr "Pourcentage"
+#: classes/WP_Piwik/Admin/Settings.php:40
+#, php-format
+msgid ""
+"WP-Piwik %s has to be connected to Piwik first. Check the »Connect to "
+"Piwik« section below."
+msgstr "WP-Piwik %s doit en premier être connecté à Piwik. Vérifiez la section ci-dessous » Connecter à Piwik « à Piwik«."
-#: dashboard/keywords.php:8
-msgid "Keywords"
-msgstr "Mots Clés"
+#: classes/WP_Piwik/Admin/Settings.php:44
+msgid "Connect to Piwik"
+msgstr "Connecter à Piwik"
-#: dashboard/keywords.php:13
-msgid "Keyword"
-msgstr "Mots clés"
+#: classes/WP_Piwik/Admin/Settings.php:49
+msgid "Show Statistics"
+msgstr "Afficher les statistiques"
-#: dashboard/overview.php:8
-msgid "Overview"
-msgstr "Vue d'ensemble"
+#: classes/WP_Piwik/Admin/Settings.php:53
+msgid "Enable Tracking"
+msgstr "Activer le suivi"
-#: dashboard/overview.php:16
-#: dashboard/visitors.php:21
-msgid "Visitors"
-msgstr "Visiteurs"
+#: classes/WP_Piwik/Admin/Settings.php:58
+msgid "Expert Settings"
+msgstr "Réglages expert"
-#: dashboard/overview.php:17
-msgid "Unique visitors"
-msgstr "Visiteurs uniques"
+#: classes/WP_Piwik/Admin/Settings.php:66
+msgid "Credits"
+msgstr "Crédits"
-#: dashboard/overview.php:18
-msgid "Page views"
-msgstr "Pages vues"
+#: classes/WP_Piwik/Admin/Settings.php:79
+msgid ""
+"WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
+"WordPress admin dashboard and to add and configure your Piwik tracking code."
+" To use this you will need your own Piwik instance. If you do not already "
+"have a Piwik setup, you have two simple options: use either"
+msgstr "WP-Piwik est une extension WordPress pour afficher une sélection de stats Piwik dans votre tableau de bord d'admin WordPress et pour ajouter et configurer votre code de suivi Piwik. Pour utiliser cela, vous aurez besoin de votre propre instance Piwik. Si vous ne possédez pas encore de configuration Piwik, vous avez deux options simples : utilisez au choix"
-#: dashboard/overview.php:19
-msgid "Max. page views in one visit"
-msgstr "Pages vues max.par visite"
+#: classes/WP_Piwik/Admin/Settings.php:79
+msgid "Self-hosted"
+msgstr "auto-hébergé"
-#: dashboard/overview.php:20
-msgid "Total time spent by visitors"
-msgstr "Temps total passé par les visiteurs"
+#: classes/WP_Piwik/Admin/Settings.php:79
+msgid "or"
+msgstr "ou"
-#: dashboard/overview.php:21
-msgid "Bounce count"
-msgstr "Nombre de sauts"
+#: classes/WP_Piwik/Admin/Settings.php:79
+msgid "Cloud-hosted"
+msgstr "hébergé dans un Cloud"
-#: dashboard/visitors.php:56
-msgid "Date"
-msgstr "Date"
+#: classes/WP_Piwik/Admin/Settings.php:82
+msgid ""
+"Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
+"and not connect to Piwik Pro."
+msgstr "Ni cURL ni fopen sont disponibles. WP-Piwik ne peut donc pas utiliser l'API HTTP et ne peut pas se connecter à Piwik Pro."
-#: dashboard/visitors.php:56
-msgid "Visits"
-msgstr "Visites"
+#: classes/WP_Piwik/Admin/Settings.php:82
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "More information"
+msgstr "Plus d'informations"
-#: dashboard/visitors.php:56
-msgid "Bounced"
-msgstr "Rebonds"
+#: classes/WP_Piwik/Admin/Settings.php:84
+msgid "You can choose between three connection methods:"
+msgstr "Vous pouvez choisir entre trois méthodes de connexion :"
-#: dashboard/websites.php:8
-msgid "Websites"
-msgstr "Sites web"
+#: classes/WP_Piwik/Admin/Settings.php:84
+#: classes/WP_Piwik/Admin/Settings.php:87
+msgid "Self-hosted (HTTP API, default)"
+msgstr "Auto-hébergé (API HTTP par défaut)"
-#: dashboard/websites.php:13
-msgid "Website"
-msgstr "Site web"
+#: classes/WP_Piwik/Admin/Settings.php:84
+msgid ""
+"This is the default option for a self-hosted Piwik and should work for most "
+"configurations. WP-Piwik will connect to Piwik using http(s)."
+msgstr ""
-#: wp-piwik.php:49
-#: wp-piwik.php:147
-msgid "Piwik Statistics"
-msgstr "Statistiques Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:84
+#: classes/WP_Piwik/Admin/Settings.php:88
+msgid "Self-hosted (PHP API)"
+msgstr "Auto-hébergé (API PHP)"
-#. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
-#. Plugin Name of an extension
-#: wp-piwik.php:49
-msgid "WP-Piwik"
-msgstr "WP-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:84
+msgid ""
+"Choose this, if your self-hosted Piwik and WordPress are running on the same"
+" machine and you know the full server path to your Piwik instance."
+msgstr "Choisissez cela, si votre Piwik auto-hébergé et WordPress fonctionnent sur la même machine et que vous connaissez le chemin complet du serveur de votre instance Piwik."
-#: wp-piwik.php:53
-#: wp-piwik.php:185
-msgid "WP-Piwik Settings"
-msgstr "Paramètres WP-Piwik"
+#: classes/WP_Piwik/Admin/Settings.php:84
+#: classes/WP_Piwik/Admin/Settings.php:89
+msgid "Cloud-hosted (Piwik Pro)"
+msgstr "Hébergé dans un Cloud (Piwik Pro)"
-#: wp-piwik.php:59
-msgid "Settings"
-msgstr "Paramètres"
+#: classes/WP_Piwik/Admin/Settings.php:84
+msgid ""
+"If you are using a cloud-hosted Piwik by Piwik Pro, you can simply use this "
+"option."
+msgstr "Si vous utilisez Piwik hébergé dans un cloud par Piwik Pro, vous pouvez simplement utiliser cette option."
-#: wp-piwik.php:112
-msgid "Remote access to Piwik not possible. Enable allow_url_fopen or CURL."
-msgstr "Accès à distance à Piwik impossible. Activez allow_url_fopen ou CURL."
+#: classes/WP_Piwik/Admin/Settings.php:85
+msgid "Piwik Mode"
+msgstr "Mode Piwik"
-#: wp-piwik.php:190
-msgid "Account settings"
-msgstr "Paramètres du compte"
+#: classes/WP_Piwik/Admin/Settings.php:86
+msgid "Disabled (WP-Piwik will not connect to Piwik)"
+msgstr "Désactivé (WP-Piwik ne se connectera pas à Piwik)"
-#: wp-piwik.php:192
+#: classes/WP_Piwik/Admin/Settings.php:92
msgid "Piwik URL"
msgstr "Piwik URL"
-#: wp-piwik.php:196
+#: classes/WP_Piwik/Admin/Settings.php:92
+msgid ""
+"Enter your Piwik URL. This is the same URL you use to access your Piwik "
+"instance, e.g. http://www.example.com/piwik/."
+msgstr "Entrez votre URL Piwik. C'est la même URL que vous utilisez pour accéder à votre instance de Piwik, par exemple, http://www.example.com/piwik/."
+
+#: classes/WP_Piwik/Admin/Settings.php:93
+msgid "Piwik path"
+msgstr "Chemin Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:93
+msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
+msgstr "Entrez le chemin de votre instance Piwik, par exemple /var/www/piwik/."
+
+#: classes/WP_Piwik/Admin/Settings.php:94
+msgid "Piwik user"
+msgstr "Utilisateur Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:94
+msgid ""
+"Enter your Piwik Pro username. It is also part of your URL: "
+"http://USERNAME.piwik.pro."
+msgstr "Entrez votre nom d'utilisateur Piwik Pro. C'est également une partie de votre URL : http://NOMUTILISATEUR.piwik.pro."
+
+#: classes/WP_Piwik/Admin/Settings.php:95
msgid "Auth token"
-msgstr "Auth Token"
+msgstr "Clef partagée (token_auth)"
-#: wp-piwik.php:200
-msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like "1234a5cd6789e0a12345b678cd9012ef"."
-msgstr "Pour activer les statistiques Piwik, saisissez l'url du dossier d'installation de Piwik (comme http://mydomain.com/piwik) ainsi que votre Auth Token. Vous pouvez obtenir votre Auth Token sur la page API de votre interface de Piwik. Il ressemble à \"1234a5cd6789e0a12345b678cd9012ef\"."
+#: classes/WP_Piwik/Admin/Settings.php:95
+msgid ""
+"Enter your Piwik auth token here. It is an alphanumerical code like "
+"0a1b2c34d56e78901fa2bc3d45678efa."
+msgstr "Entrez votre clef partagée (token_auth) Piwik ici. C'est un code alphanumérique du genre 0a1b2c34d56e78901fa2bc3d45678efa."
-#: wp-piwik.php:205
-#: wp-piwik.php:207
-msgid "An error occured"
-msgstr "Une erreur s'est produite"
+#: classes/WP_Piwik/Admin/Settings.php:95
+#, php-format
+msgid "See %sWP-Piwik FAQ%s."
+msgstr "Voir la %sFAQ WP-Piwik%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid "Auto config"
+msgstr "Auto config"
+
+#: classes/WP_Piwik/Admin/Settings.php:100
+msgid ""
+"Check this to automatically choose your blog from your Piwik sites by URL. "
+"If your blog is not added to Piwik yet, WP-Piwik will add a new site."
+msgstr "Cochez cette case pour choisir automatiquement votre blog à partir de vos sites Piwik par URL. Si votre blog est pas encore ajouté à Piwik, WP-Piwik ajoutera un nouveau site."
+
+#: classes/WP_Piwik/Admin/Settings.php:106
+msgid "Save settings to start estimation."
+msgstr "Enregistrer les réglages pour démarrer l'estimation."
+
+#: classes/WP_Piwik/Admin/Settings.php:109
+msgid "Determined site"
+msgstr "Site déterminé"
+
+#: classes/WP_Piwik/Admin/Settings.php:114
+msgid "Select site"
+msgstr "Sélectionner le site"
+
+#: classes/WP_Piwik/Admin/Settings.php:122
+msgid "Piwik default date"
+msgstr "Date par défaut Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:123
+#: classes/WP_Piwik/Admin/Settings.php:136
+msgid "Today"
+msgstr "Aujourd'hui"
+
+#: classes/WP_Piwik/Admin/Settings.php:124
+#: classes/WP_Piwik/Admin/Settings.php:135
+msgid "Yesterday"
+msgstr "Hier"
+
+#: classes/WP_Piwik/Admin/Settings.php:125
+msgid "Current month"
+msgstr "Mois en cours"
+
+#: classes/WP_Piwik/Admin/Settings.php:126
+msgid "Last month"
+msgstr "Mois précédent"
+
+#: classes/WP_Piwik/Admin/Settings.php:127
+msgid "Current week"
+msgstr "Semaine en cours"
+
+#: classes/WP_Piwik/Admin/Settings.php:128
+msgid "Last week"
+msgstr "Semaine précédente"
+
+#: classes/WP_Piwik/Admin/Settings.php:129
+msgid "Default date shown on statistics page."
+msgstr "Date affichée par défaut sur la page de statistiques."
+
+#: classes/WP_Piwik/Admin/Settings.php:131
+msgid "Show SEO data"
+msgstr "Afficher les données SEO"
+
+#: classes/WP_Piwik/Admin/Settings.php:131
+msgid "Display SEO ranking data on statistics page."
+msgstr "Afficher les données de classement SEO sur la page de statistiques."
+
+#: classes/WP_Piwik/Admin/Settings.php:131
+#: classes/WP_Piwik/Admin/Settings.php:142
+msgid "Slow!"
+msgstr "Doucement !"
+
+#: classes/WP_Piwik/Admin/Settings.php:133
+msgid "Dashboard overview"
+msgstr "Tableau de bord vue d'ensemble"
+
+#: classes/WP_Piwik/Admin/Settings.php:134
+#: classes/WP_Piwik/Admin/Settings.php:172
+#: classes/WP_Piwik/Admin/Settings.php:174
+#: classes/WP_Piwik/Admin/Settings.php:195
+msgid "Disabled"
+msgstr "Désactivé"
+
+#: classes/WP_Piwik/Admin/Settings.php:137
+msgid "Last 30 days"
+msgstr "30 derniers jours"
+
+#: classes/WP_Piwik/Admin/Settings.php:138
+msgid "Enable WP-Piwik dashboard widget "Overview"."
+msgstr "Activer le widget du tableau de bord WP-Piwik "Vue d'ensemble"."
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Dashboard graph"
+msgstr "Tableau de bord graphique"
+
+#: classes/WP_Piwik/Admin/Settings.php:140
+msgid "Enable WP-Piwik dashboard widget "Graph"."
+msgstr "Activer le widget du tableau de bord WP-Piwik "Graphique"."
+
+#: classes/WP_Piwik/Admin/Settings.php:142
+msgid "Dashboard SEO"
+msgstr "Tableau de bord SEO"
+
+#: classes/WP_Piwik/Admin/Settings.php:142
+msgid "Enable WP-Piwik dashboard widget "SEO"."
+msgstr "Activer le widget du tableau de bord WP-Piwik "SEO"."
+
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Show graph on WordPress Toolbar"
+msgstr "Afficher le graphique dans la barre d'outils WordPress"
+
+#: classes/WP_Piwik/Admin/Settings.php:144
+msgid "Display a last 30 days visitor graph on WordPress' toolbar."
+msgstr "Afficher un graphique des visiteurs des 30 derniers jours dans la barre d'outils WordPress"
+
+#: classes/WP_Piwik/Admin/Settings.php:146
+msgid "Display stats to"
+msgstr "Afficher les stats pour le(s)"
+
+#: classes/WP_Piwik/Admin/Settings.php:153
+msgid "Choose user roles allowed to see the statistics page."
+msgstr "Choisissez les rôles utilisateurs autorisés à voir la page de statistiques."
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Show per post stats"
+msgstr "Afficher les stats par article"
+
+#: classes/WP_Piwik/Admin/Settings.php:155
+msgid "Show stats about single posts at the post edit admin page."
+msgstr "Afficher les stats de l'article sur la page admin de modification des articles."
+
+#: classes/WP_Piwik/Admin/Settings.php:157
+msgid "Piwik shortcut"
+msgstr "Raccourci Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:157
+msgid "Display a shortcut to Piwik itself."
+msgstr "Affiche un raccourci vers Piwik lui-même."
+
+#: classes/WP_Piwik/Admin/Settings.php:159
+msgid "WP-Piwik display name"
+msgstr "Nom d'affichage WP-Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:159
+msgid "Plugin name shown in WordPress."
+msgstr "Nom d'extension affichée dans WordPress."
+
+#: classes/WP_Piwik/Admin/Settings.php:161
+msgid "Enable shortcodes"
+msgstr "Activer les codes courts"
+
+#: classes/WP_Piwik/Admin/Settings.php:161
+msgid "Enable shortcodes in post or page content."
+msgstr "Active les codes courts dans le contenu des articles ou des pages"
+
+#: classes/WP_Piwik/Admin/Settings.php:172
+msgid "You can choose between four tracking code modes:"
+msgstr "Vous pouvez choisir entre quatre modes de code de suivi :"
+
+#: classes/WP_Piwik/Admin/Settings.php:172
+msgid ""
+"WP-Piwik will not add the tracking code. Use this, if you want to add the "
+"tracking code to your template files or you use another plugin to add the "
+"tracking code."
+msgstr "WP-Piwik n'ajoutera pas le code de suivi. Utilisez cela si vous souhaitez ajouter le code de suivi dans les fichiers de votre thème, ou que vous utilisez une autre extension pour ajouter le code de suivi."
+
+#: classes/WP_Piwik/Admin/Settings.php:172
+#: classes/WP_Piwik/Admin/Settings.php:175
+msgid "Default tracking"
+msgstr "Suivi par défaut"
+
+#: classes/WP_Piwik/Admin/Settings.php:172
+msgid "WP-Piwik will use Piwik's standard tracking code."
+msgstr "WP-Piwik utilisera le code de suivi standard de Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:172
+#: classes/WP_Piwik/Admin/Settings.php:176
+msgid "Use js/index.php"
+msgstr "Utiliser js/index.php"
+
+#: classes/WP_Piwik/Admin/Settings.php:172
+msgid ""
+"You can choose this tracking code, to deliver a minified proxy code and to "
+"avoid using the files called piwik.js or piwik.php."
+msgstr "Vous pouvez choisir ce code de suivi, pour délivrer un code proxy minifié et d'éviter d'utiliser les fichiers appelés piwik.js ou piwik.php."
+
+#: classes/WP_Piwik/Admin/Settings.php:172
+#, php-format
+msgid "See %sreadme file%s."
+msgstr "Voir le %sfichier lisez-moi%s"
+
+#: classes/WP_Piwik/Admin/Settings.php:172
+#: classes/WP_Piwik/Admin/Settings.php:177
+msgid "Use proxy script"
+msgstr "Utiliser une code proxy"
+
+#: classes/WP_Piwik/Admin/Settings.php:172
+msgid "Use this tracking code to not reveal the Piwik server URL."
+msgstr "Utilisez ce code de suivi pour ne pas révéler l'URL du serveur Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:172
+#: classes/WP_Piwik/Admin/Settings.php:192
+#: classes/WP_Piwik/Admin/Settings.php:202
+#, php-format
+msgid "See %sPiwik FAQ%s."
+msgstr "Voir la %sFAQ Piwik%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:172
+#: classes/WP_Piwik/Admin/Settings.php:178
+msgid "Enter manually"
+msgstr "Entrer manuellement"
+
+#: classes/WP_Piwik/Admin/Settings.php:172
+msgid ""
+"Enter your own tracking code manually. You can choose one of the prior "
+"options, pre-configure your tracking code and switch to manually editing at "
+"last."
+msgstr "Entrer manuellement votre propre code de suivi. Vous pouvez choisir l'une des options préalables, pré-configurer votre code de suivi et le modifier manuellement à la fin."
+
+#: classes/WP_Piwik/Admin/Settings.php:172
+msgid "Use the placeholder {ID} to add the Piwik site ID."
+msgstr "Utilisez l'espace réservé {ID} pour ajouter l'identifiant de site Piwik."
+
+#: classes/WP_Piwik/Admin/Settings.php:173
+msgid "Add tracking code"
+msgstr "Ajouter le code de suivi"
+
+#: classes/WP_Piwik/Admin/Settings.php:181
+msgid "Tracking code"
+msgstr "Code de suivi"
+
+#: classes/WP_Piwik/Admin/Settings.php:183
+msgid "JavaScript code position"
+msgstr "Emplacement du code JavaScript"
+
+#: classes/WP_Piwik/Admin/Settings.php:184
+msgid "Footer"
+msgstr "Pied de page"
+
+#: classes/WP_Piwik/Admin/Settings.php:185
+msgid "Header"
+msgstr "En-tête"
+
+#: classes/WP_Piwik/Admin/Settings.php:186
+msgid ""
+"Choose whether the JavaScript code is added to the footer or the header."
+msgstr "Choisissez si le code JavaScript est ajouté dans le pied de page ou l'en-tête."
+
+#: classes/WP_Piwik/Admin/Settings.php:188
+msgid "Noscript code"
+msgstr "Code noscript"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Add <noscript>"
+msgstr "Ajouter <noscript>"
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+msgid "Adds the <noscript> code to your footer."
+msgstr "Ajoute le code <noscript> à votre pied de page."
+
+#: classes/WP_Piwik/Admin/Settings.php:190
+#: classes/WP_Piwik/Admin/Settings.php:192
+msgid "Disabled in proxy mode."
+msgstr "Désactivé en mode proxy."
+
+#: classes/WP_Piwik/Admin/Settings.php:192
+msgid "Add rec parameter to noscript code"
+msgstr "Ajouter le paramètre rec au code noscript"
+
+#: classes/WP_Piwik/Admin/Settings.php:192
+msgid "Enable tracking for visitors without JavaScript (not recommended)."
+msgstr "Activer le suivi des visiteurs sans JavaScript (non recommandé)."
+
+#: classes/WP_Piwik/Admin/Settings.php:194
+msgid "Enable content tracking"
+msgstr "Activer le suivi de contenu"
-#: wp-piwik.php:205
-msgid "Please check URL and auth token. You need at least view access to one site."
-msgstr "Vérifiez l'URL et Auth Token. Vous devez posséder les droits d'accès sur au moins un site."
+#: classes/WP_Piwik/Admin/Settings.php:196
+msgid "Track all content blocks"
+msgstr "Suivre tous les blocs de contenu"
-#: wp-piwik:php:215
-msgid "Choose site"
-msgstr "Choisissez un site"
+#: classes/WP_Piwik/Admin/Settings.php:197
+msgid "Track only visible content blocks"
+msgstr "Suivre uniquement les blocs de contenu visibles"
-#: wp-piwik.php:221
-msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
-msgstr "Si votre thème utilise wp_footer(), WP-Piwik peut ajouter automatiquement le code javascript Piwik à votre blog."
+#: classes/WP_Piwik/Admin/Settings.php:198
+msgid ""
+"Content tracking allows you to track interaction with the content of a web "
+"page or application."
+msgstr "Le suivi de contenu vous autorise à suivre l'interaction avec le contenu d'une page web ou d'une application."
+
+#: classes/WP_Piwik/Admin/Settings.php:198
+#: classes/WP_Piwik/Admin/Settings.php:200
+#: classes/WP_Piwik/Admin/Settings.php:204
+#: classes/WP_Piwik/Admin/Settings.php:206
+#: classes/WP_Piwik/Admin/Settings.php:208
+#: classes/WP_Piwik/Admin/Settings.php:229
+#: classes/WP_Piwik/Admin/Settings.php:231
+#: classes/WP_Piwik/Admin/Settings.php:235
+#, php-format
+msgid "See %sPiwik documentation%s."
+msgstr "Voir la %sdocumentation Piwik%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:200
+msgid "Track search"
+msgstr "Suivre la recherche"
+
+#: classes/WP_Piwik/Admin/Settings.php:200
+msgid "Use Piwik's advanced Site Search Analytics feature."
+msgstr "Utiliser la fonctionnalité avancée Piwik d'analyse de recherche du site"
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid "Track 404"
+msgstr "Suivre les 404"
+
+#: classes/WP_Piwik/Admin/Settings.php:202
+msgid ""
+"WP-Piwik can automatically add a 404-category to track 404-page-visits."
+msgstr "WP-Piwik peut ajouter automatiquement une catégorie 404 pour suivre les visites de page 404."
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid "Add annotation on new post"
+msgstr "Ajouter une annotation sur un nouvel article"
+
+#: classes/WP_Piwik/Admin/Settings.php:204
+msgid "Add a Piwik annotation on each new post."
+msgstr "Ajoute une annotation Piwik sur chaque nouvel article."
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid "Show custom variables box"
+msgstr "Afficher la boîte de variables personnalisées"
+
+#: classes/WP_Piwik/Admin/Settings.php:206
+msgid " Show a "custom variables" edit box on post edit page."
+msgstr "Afficher une boîte de modification des "variables personnalisées" sur la page de modification des articles;"
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid "Add new file types for download tracking"
+msgstr "Ajouter de nouveaux types de fichier pour le suivi de téléchargement"
+
+#: classes/WP_Piwik/Admin/Settings.php:208
+msgid ""
+"Add file extensions for download tracking, divided by a vertical bar "
+"(|)."
+msgstr "Ajouter des extensions de fichier pour le suivi de téléchargement, séparées par une barre verticale (|)."
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disable cookies"
+msgstr "Désactiver les cookies"
+
+#: classes/WP_Piwik/Admin/Settings.php:210
+msgid "Disable all tracking cookies for a visitor."
+msgstr "Désactiver tous les cookies de suivi pour un visiteur"
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid "Limit cookie lifetime"
+msgstr "Limiter la durée de vie des cookies"
+
+#: classes/WP_Piwik/Admin/Settings.php:212
+msgid ""
+"You can limit the cookie lifetime to avoid tracking your users over a longer"
+" period as necessary."
+msgstr "Vous pouvez limiter la durée de vie des cookies pour éviter le suivi de vos utilisateurs sur une période plus longue que nécessaire."
+
+#: classes/WP_Piwik/Admin/Settings.php:214
+msgid "Visitor timeout (seconds)"
+msgstr "Expiration du délai d'attente visiteur (en secondes)"
-#: wp-piwik.php:226
-msgid "Add script to wp_footer()"
-msgstr "Ajouter le script à wp_footer()"
+#: classes/WP_Piwik/Admin/Settings.php:216
+msgid "Session timeout (seconds)"
+msgstr "Expiration du délai d'attente session (en secondes)"
+#: classes/WP_Piwik/Admin/Settings.php:218
+msgid "Referral timeout (seconds)"
+msgstr "Expiration du délai d'attente référant"
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid "Track admin pages"
+msgstr "Suivre les pages d'admin"
+
+#: classes/WP_Piwik/Admin/Settings.php:220
+msgid ""
+"Enable to track users on admin pages (remember to configure the tracking "
+"filter appropriately)."
+msgstr "Activer le suivi des utilisateurs sur les pages d'admin (n'oubliez pas de configurer le filtre de suivi adéquat)"
+
+#: classes/WP_Piwik/Admin/Settings.php:223
msgid "Tracking filter"
msgstr "Filtre de suivi"
-msgid "Choose users by user role you do not want to track. Requires enabled "Add script to wp_footer()"-functionality."
-msgstr "Choisissez, pour chaque rôle, ceux que vous ne souhaitez pas inclure dans le suivi. Requiert l'activation de la fonction "Ajouter le script à wp_footer()""
-
+#: classes/WP_Piwik/Admin/Settings.php:227
msgid "Choose users by user role you do not want to track."
msgstr "Choisissez, pour chaque rôle, ceux que vous ne souhaitez pas inclure dans le suivi."
-msgid "Display statistics to"
-msgstr "Affichez les statistiques aux"
+#: classes/WP_Piwik/Admin/Settings.php:229
+msgid "Track subdomains in the same website"
+msgstr "Suivre les sous-domaines dans le même site web"
+
+#: classes/WP_Piwik/Admin/Settings.php:229
+msgid "Adds *.-prefix to cookie domain."
+msgstr "Ajoute *.-préfixe au cookie de domaine."
+
+#: classes/WP_Piwik/Admin/Settings.php:231
+msgid "Do not count subdomains as outlink"
+msgstr ""
+
+#: classes/WP_Piwik/Admin/Settings.php:231
+msgid "Adds *.-prefix to tracked domain."
+msgstr "Ajoute *.-préfixe au domaine suivi."
+
+#: classes/WP_Piwik/Admin/Settings.php:233
+msgid "Track RSS feeds"
+msgstr "Suivre les flux RSS"
+
+#: classes/WP_Piwik/Admin/Settings.php:233
+msgid "Enable to track posts in feeds via tracking pixel."
+msgstr "Activer le suivi des articles dans les flux via un pixel de suivi."
+
+#: classes/WP_Piwik/Admin/Settings.php:235
+msgid "Track RSS feed links as campaign"
+msgstr "Suivre les liens du flux RSS comme une campagne"
+
+#: classes/WP_Piwik/Admin/Settings.php:235
+msgid "This will add Piwik campaign parameters to the RSS feed links. "
+msgstr "Ceci ajoutera des paramètres de campagne Piwik aux liens du flux RSS."
+
+#: classes/WP_Piwik/Admin/Settings.php:237
+msgid "RSS feed campaign"
+msgstr "Campagne flux RSS"
+
+#: classes/WP_Piwik/Admin/Settings.php:237
+msgid "Keyword: post name."
+msgstr "Mot-clef : nom d'article."
-msgid "or above"
-msgstr "ou rôle supérieur"
+#: classes/WP_Piwik/Admin/Settings.php:242
+msgid ""
+"Usually, you do not need to change these settings. If you want to do so, you"
+" should know what you do or you got an expert's advice."
+msgstr "Habituellement, vous n'avez pas besoin de pas modifier ces réglages. Si vous voulez faire, vous devez savoir ce que vous faites ou avoir obtenu le conseil d'un expert."
+
+#: classes/WP_Piwik/Admin/Settings.php:244
+msgid "Enable cache"
+msgstr "Activer le cache"
+
+#: classes/WP_Piwik/Admin/Settings.php:244
+msgid "Cache API calls, which not contain today's values, for a week."
+msgstr "Appels API de cache, qui ne contiennent pas les valeurs d'aujourd'hui, pour une semaine."
+
+#: classes/WP_Piwik/Admin/Settings.php:246
+msgid "Disable time limit"
+msgstr "Désactiver la limite de temps"
+
+#: classes/WP_Piwik/Admin/Settings.php:246
+msgid "Use set_time_limit(0) if stats page causes a time out."
+msgstr "Utilisez set_time_limit(0) si la pages de statistiques provoque une expiration du délai d'attente."
+
+#: classes/WP_Piwik/Admin/Settings.php:248
+msgid "Connection timeout"
+msgstr "Expiration du délai d'attente de la connexion"
+
+#: classes/WP_Piwik/Admin/Settings.php:250
+msgid "Disable SSL peer verification"
+msgstr "Désactiver la vérification par les pairs SSL"
+
+#: classes/WP_Piwik/Admin/Settings.php:250
+msgid "not recommended"
+msgstr "non recommandé"
-msgid "Minimum user level required to display statistics page."
-msgstr "Niveau de rôle minimum requis pour afficher les statistiques."
+#: classes/WP_Piwik/Admin/Settings.php:252
+msgid "User agent"
+msgstr "Agent utilisateur (User agent)"
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "Use the PHP default user agent"
+msgstr "Utiliser l'agent utilisateur (user-agent) par défaut de PHP"
+
+#: classes/WP_Piwik/Admin/Settings.php:253
+msgid "empty"
+msgstr "vide"
+
+#: classes/WP_Piwik/Admin/Settings.php:254
+msgid "Define a specific user agent"
+msgstr "Définir un agent utilisateur (user-agent) spécifique"
+
+#: classes/WP_Piwik/Admin/Settings.php:256
+msgid "Specific user agent"
+msgstr "Agent utilisateur (user-agent) spécifique"
+
+#: classes/WP_Piwik/Admin/Settings.php:258
+msgid "Add data-cfasync=false"
+msgstr "Ajouter data-cfasync=false"
+
+#: classes/WP_Piwik/Admin/Settings.php:258
+#, php-format
+msgid "See %sCloudFlare Knowledge Base%s."
+msgstr "Voir la %sBase de connaissances CloudFlare%s."
+
+#: classes/WP_Piwik/Admin/Settings.php:258
+msgid ""
+"Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
+"ignore the script. "
+msgstr "Ajoute data-cfasync=false à la balise du script, pour demander par exemple, au chargeur Rocket d'ignorer le script. "
-#: wp-piwik.php:229
-msgid "Save settings"
-msgstr "Sauvegarder les changements"
+#: classes/WP_Piwik/Admin/Settings.php:260
+msgid "CDN URL"
+msgstr "URL CDN"
+#: classes/WP_Piwik/Admin/Settings.php:262
+msgid "CDN URL (SSL)"
+msgstr "URL CDN (SSL)"
+
+#: classes/WP_Piwik/Admin/Settings.php:264
+msgid "Force Piwik to use a specific protocol"
+msgstr "Forcer Piwik à utiliser un protocole spécifique"
+
+#: classes/WP_Piwik/Admin/Settings.php:265
+msgid "Disabled (default)"
+msgstr "Désactivé (par défaut)"
+
+#: classes/WP_Piwik/Admin/Settings.php:266
+msgid "http"
+msgstr "http"
+
+#: classes/WP_Piwik/Admin/Settings.php:267
+msgid "https (SSL)"
+msgstr "https (SSL)"
+
+#: classes/WP_Piwik/Admin/Settings.php:268
+msgid ""
+"Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
+"work with a CDN URL."
+msgstr "Choisissez si vous voulez forcer explicitement Piwik à utiliser le protocole HTTP ou HTTPS. Ne fonctionne pas avec une URL CDN."
+
+#: classes/WP_Piwik/Admin/Settings.php:427
+msgid "Donate"
+msgstr "Faire un don"
+
+#: classes/WP_Piwik/Admin/Settings.php:429
+msgid "If you like WP-Piwik, you can support its development by a donation:"
+msgstr "Si vous aimez WP-Piwik, vous pouvez soutenir son développement par un don :"
+
+#: classes/WP_Piwik/Admin/Settings.php:467
+msgid "My Amazon.de wishlist"
+msgstr "Ma liste de souhaits Amazon.de"
+
+#: classes/WP_Piwik/Admin/Settings.php:470
+#: classes/WP_Piwik/Admin/Settings.php:517
+msgid "Please don't forget to vote the compatibility at the"
+msgstr "Merci de ne pas oublier de voter la compatibilité avec"
+
+#: classes/WP_Piwik/Admin/Settings.php:501
+msgid "Thank you very much for your donation"
+msgstr "Merci beaucoup pour votre don"
+
+#: classes/WP_Piwik/Admin/Settings.php:501
+msgid "the Piwik team itself"
+msgstr "l'équipe Piwik elle-même"
+
+#: classes/WP_Piwik/Admin/Settings.php:501
+msgid ", and all people flattering this"
+msgstr ", et toutes les personnes flatteuses à ce sujet."
+
+#: classes/WP_Piwik/Admin/Settings.php:502
+msgid ""
+"Graphs powered by jqPlot (License: "
+"GPL 2.0 and MIT) and jQuery Sparklines "
+"(License: New BSD License)."
+msgstr "Graphiques générés par jqPlot (Licence : GPL 2.0 et MIT) et jQuery Sparklines (Licence : Nouvelle licence BSD)."
+
+#: classes/WP_Piwik/Admin/Settings.php:503
+msgid "Metabox support inspired by"
+msgstr "Prise en charge Metabox inspirée par"
+
+#: classes/WP_Piwik/Admin/Settings.php:504
+msgid "Tabbed settings page suggested by the"
+msgstr "Page des réglages en onglets suggérée par le"
+
+#: classes/WP_Piwik/Admin/Settings.php:505
+msgid "Thank you very much"
+msgstr "Merci beaucoup"
+
+#: classes/WP_Piwik/Admin/Settings.php:505
+msgid "for your translation work"
+msgstr "pour votre travail de traduction"
+
+#: classes/WP_Piwik/Admin/Settings.php:506
+msgid ""
+"Thank you very much, all users who send me mails containing criticism, "
+"commendation, feature requests and bug reports! You help me to make WP-Piwik"
+" much better."
+msgstr "Merci beaucoup, à tous les utilisateurs qui envoient des mails contenant critique, éloge, demandes de fonctionnalités et rapports de bogues ! Vous m'avez aidé a rendre WP-Piwik encore meilleur."
+
+#: classes/WP_Piwik/Admin/Settings.php:507
+msgid ""
+"Thank you for using my plugin. It is the best commendation "
+"if my piece of code is really used!"
+msgstr "Je vous remercie d'utiliser mon extension. C'est la meilleur éloge si mon morceau de code est vraiment utilisé !"
+
+#: classes/WP_Piwik/Admin/Settings.php:516
+msgid "The best place to get help:"
+msgstr "Le meilleur endroit pour obtenir de l'aide :"
+
+#: classes/WP_Piwik/Admin/Settings.php:516
+msgid "WP-Piwik support forum"
+msgstr "Forum de support WP-Piwik"
+
+#: classes/WP_Piwik/Admin/Settings.php:519
+msgid "Debugging"
+msgstr "Débogage"
+
+#: classes/WP_Piwik/Admin/Settings.php:520
+msgid ""
+"Either allow_url_fopen has to be enabled or cURL has to be "
+"available:"
+msgstr "allow_url_fopen doit être activé ou cURL doit être disponible :"
+
+#: classes/WP_Piwik/Admin/Settings.php:523
+msgid "cURL is"
+msgstr "cURL est"
+
+#: classes/WP_Piwik/Admin/Settings.php:524
+#: classes/WP_Piwik/Admin/Settings.php:529
+msgid "not"
+msgstr "non"
+
+#: classes/WP_Piwik/Admin/Settings.php:525
+msgid "available"
+msgstr "disponible"
+
+#: classes/WP_Piwik/Admin/Settings.php:528
+msgid "allow_url_fopen is"
+msgstr "allow_url_fopen est"
+
+#: classes/WP_Piwik/Admin/Settings.php:530
+msgid "enabled"
+msgstr "activé"
+
+#: classes/WP_Piwik/Admin/Settings.php:533
+msgid "Latest support threads on WordPress.org"
+msgstr "Les derniers messages de support sur WordPress.org"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:17
+msgid "site"
+msgstr "site"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:18
+msgid "sites"
+msgstr "sites"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:22
+msgid "No site configured yet."
+msgstr "Pas de site configuré actuellement."
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:27
+msgid "ID"
+msgstr "Identifiant"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:28
+msgid "Title"
+msgstr "Titre"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:29
+msgid "URL"
+msgstr "URL"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:30
+msgid "Site ID (Piwik)"
+msgstr "Identifiant du site (Piwik)"
+
+#: classes/WP_Piwik/Admin/Sitebrowser.php:73
+msgid "Site not created yet."
+msgstr "Le site n'a pas encore été créé."
+
+#: classes/WP_Piwik/Admin/Statistics.php:12
+msgid "Statistics"
+msgstr "Statistiques"
+
+#: classes/WP_Piwik/Admin/Statistics.php:20
msgid "Currently shown stats:"
msgstr "Stats affichées actuellement : "
-msgid "Change"
-msgstr "Changer"
+#: classes/WP_Piwik/Request/Php.php:25
+msgid "Could not resolve"
+msgstr "Impossible de résoudre"
+
+#: classes/WP_Piwik/Request/Php.php:25
+msgid "realpath() returns false"
+msgstr "realpath() retourne faux (false)"
+
+#: classes/WP_Piwik/Request/Php.php:32
+msgid "Class Piwik\\FrontController does not exists."
+msgstr "La classe Piwik\\FrontController n'existe pas."
+
+#: classes/WP_Piwik/Request/Php.php:35
+msgid "Class Piwik\\API\\Request does not exists."
+msgstr "La class Piwik\\API\\Request n'existe pas."
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
+msgid "Piwik Custom Variables"
+msgstr "Variables personnalisées Piwik"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Name"
+msgstr "Nom"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
+msgid "Value"
+msgstr "Valeur"
+
+#: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
+msgid "Set custom variables for a page view"
+msgstr "Définir des variables personnalisées pour une page vue"
+
+#: classes/WP_Piwik/Widget.php:91
+#: classes/WP_Piwik/Widget/BrowserDetails.php:35
+#: classes/WP_Piwik/Widget/Browsers.php:35
+#: classes/WP_Piwik/Widget/Chart.php:41
+#: classes/WP_Piwik/Widget/Noresult.php:23
+#: classes/WP_Piwik/Widget/Overview.php:24
+#: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
+#: classes/WP_Piwik/Widget/Screens.php:35
+#: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
+#: classes/WP_Piwik/Widget/Systems.php:33
+#: classes/WP_Piwik/Widget/Visitors.php:35
+msgid "Piwik error"
+msgstr "Erreur Piwik"
+
+#: classes/WP_Piwik/Widget.php:100
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/Systems.php:35
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Unique"
+msgstr "Unique"
+
+#: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Visits"
+msgstr "Visites"
+
+#: classes/WP_Piwik/Widget.php:104
+msgid "Hits"
+msgstr "Entrées"
+
+#: classes/WP_Piwik/Widget.php:106
+msgid "Actions"
+msgstr "Actions"
+
+#: classes/WP_Piwik/Widget.php:144
+msgid "No data available."
+msgstr "Pas de données disponibles"
+
+#: classes/WP_Piwik/Widget.php:275
+msgid "week"
+msgstr "semaine"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:16
+msgid "Browser Details"
+msgstr "Détails navigateur"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+msgid "Browser"
+msgstr "Navigateur"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:37
+#: classes/WP_Piwik/Widget/Browsers.php:37
+#: classes/WP_Piwik/Widget/Plugins.php:25
+#: classes/WP_Piwik/Widget/Screens.php:37
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Percent"
+msgstr "Pourcentage"
+
+#: classes/WP_Piwik/Widget/BrowserDetails.php:53
+#: classes/WP_Piwik/Widget/Browsers.php:53
+#: classes/WP_Piwik/Widget/Screens.php:53
+#: classes/WP_Piwik/Widget/Systems.php:51
+msgid "Others"
+msgstr "Autres"
+
+#: classes/WP_Piwik/Widget/Browsers.php:16
+msgid "Browsers"
+msgstr "Navigateurs"
+
+#: classes/WP_Piwik/Widget/Chart.php:17
+#: classes/WP_Piwik/Widget/Overview.php:40 classes/WP_Piwik/Widget/Post.php:37
+#: classes/WP_Piwik/Widget/Visitors.php:17
+msgid "Visitors"
+msgstr "Visiteurs"
+
+#: classes/WP_Piwik/Widget/Chart.php:69
+msgid ""
+"The graph contains the values shown in the table below (visitors / unique / "
+"bounces). The red line show a linear trendline (unique)."
+msgstr "Le graphique contient les valeurs indiquées dans le tableau ci-dessous (visiteurs / unique / rebonds). La ligne rouge montre une courbe de tendance linéaire (unique)."
+
+#: classes/WP_Piwik/Widget/Keywords.php:16
+msgid "Keywords"
+msgstr "Mots Clés"
+
+#: classes/WP_Piwik/Widget/Noresult.php:16
+#: classes/WP_Piwik/Widget/Search.php:16
+msgid "Site Search"
+msgstr "Recherche du site"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Keyword"
+msgstr "Mots clés"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+msgid "Requests"
+msgstr "Requêtes"
+
+#: classes/WP_Piwik/Widget/Noresult.php:25
+#: classes/WP_Piwik/Widget/Search.php:25
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Bounced"
+msgstr "Rebonds"
+
+#: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
+msgid "Overview"
+msgstr "Vue d'ensemble"
+
+#: classes/WP_Piwik/Widget/Overview.php:17
+msgid "dashboard"
+msgstr "Tableau de bord"
+
+#: classes/WP_Piwik/Widget/Overview.php:41 classes/WP_Piwik/Widget/Post.php:38
+msgid "Unique visitors"
+msgstr "Visiteurs uniques"
+
+#: classes/WP_Piwik/Widget/Overview.php:42 classes/WP_Piwik/Widget/Post.php:39
+msgid "Page views"
+msgstr "Pages vues"
-msgid "WPMU-Piwik Settings"
-msgstr "Paramètres WPMU-Piwik"
+#: classes/WP_Piwik/Widget/Overview.php:43 classes/WP_Piwik/Widget/Post.php:40
+msgid "Total time spent"
+msgstr "Temps passé total"
-msgid "Important note: You have to choose a token which provides administration access. WPMU-Piwik will create new Piwik sites for each blog if it is shown the first time and it is not added yet. All users can access their own statistics only, while site admins can access all statistics. To avoid conflicts, you should use a clean Piwik installation without other sites added. The provided themes should use wp_footer, because it adds the Piwik javascript code to each page."
-msgstr "Note importante : Vous devez choisir un Auth Token avec droits d'accès à l'administration. WPMU-Piwik créera un nouveau Piwik Site pour chaque blog qui n'a pas encore été ajouté lors du 1er affichage. Chaque utilisateur ne peut accéder qu'à ses propres stats tandis qu'un administrateur peut accéder à toutes les stats. Pour éviter tout conflit, il est recommandé d'utiliser une installation propre de Piwik sans aucun autre site ajouté. Les thèmes utilisés doivent utiliser le wp_footer afin de permettre l'inclusion du code javascript Piwik sur chaque page."
+#: classes/WP_Piwik/Widget/Overview.php:44 classes/WP_Piwik/Widget/Post.php:42
+msgid "Bounce count"
+msgstr "Nombre de sauts"
-msgid "Important note: If you do not host this blog on your own, your site admin is able to get your auth token from the database. So he is able to access your statistics. You should never use an auth token with more than simple view access!"
-msgstr "Note importante : Si vous n'hébergez pas vous même ce blog, l'administrateur de votre site peut obtenir votre Auth Token depuis la base de données. Il est donc en mesure de consulter vos statistiques. Il est recommandé d'utiliser un Auth Token ne permettant qu'un visionnage simple."
+#: classes/WP_Piwik/Widget/Overview.php:47 classes/WP_Piwik/Widget/Post.php:41
+msgid "Time/visit"
+msgstr "Temps / visite"
-msgid "WP-Piwik uses the Google Chart API to create graphs. To avoid this, just check this box."
-msgstr "WP-Piwik utilise la Google Chart API pour générer les graphiques. Si vous ne le souhaitez pas, cochez cette case."
+#: classes/WP_Piwik/Widget/Overview.php:47
+msgid "Max. page views in one visit"
+msgstr "Pages vues max.par visite"
-msgid "Disable Google Chart API"
-msgstr "Désactiver Google Chart API"
+#: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:46
+msgid "Shortcut"
+msgstr "Raccourci"
-#. Plugin URI of an extension
-msgid "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
-msgstr "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
+#: classes/WP_Piwik/Widget/Pages.php:16
+msgid "Pages"
+msgstr "Pages"
-#. Description of an extension
-msgid "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress footer."
-msgstr "Ajoute des statistiques Piwik au menu de votre Tableau de bord et le code Piwik au footer de votre wordpress."
+#: classes/WP_Piwik/Widget/Plugins.php:16
+msgid "Plugins"
+msgstr "Extensions"
-#. Author of an extension
-msgid "André Bräkling"
-msgstr "André Bräkling"
+#: classes/WP_Piwik/Widget/Plugins.php:25
+msgid "Plugin"
+msgstr "Extension"
-#. Author URI of an extension
-msgid "http://www.braekling.de"
-msgstr "http://www.braekling.de"
+#: classes/WP_Piwik/Widget/Post.php:43
+msgid "Min. generation time"
+msgstr "Temps min. de génération"
-msgid "last 30 days"
-msgstr "derniers 30 jours"
+#: classes/WP_Piwik/Widget/Post.php:44
+msgid "Max. generation time"
+msgstr "Temps max. de génération"
-msgid "today"
-msgstr "aujourd'hui"
+#: classes/WP_Piwik/Widget/Referrers.php:16
+msgid "Referrers"
+msgstr "Référants"
-msgid "yesterday"
-msgstr "hier"
+#: classes/WP_Piwik/Widget/Screens.php:16
+msgid "Resolutions"
+msgstr "Résolutions"
-msgid "No"
-msgstr "Non"
+#: classes/WP_Piwik/Widget/Screens.php:37
+msgid "Resolution"
+msgstr "Résolution"
-msgid "Yes"
-msgstr "Oui"
+#: classes/WP_Piwik/Widget/Seo.php:13
+msgid "SEO"
+msgstr "SEO"
-msgid "Show overview on WordPress dashboard"
-msgstr "Montrer une vue d'ensemble sur le Tableau de bord de wordpress"
+#: classes/WP_Piwik/Widget/Systems.php:14
+msgid "Operation Systems"
+msgstr "Systèmes d'exploitation"
-msgid "Show Piwik link in overview"
-msgstr "Afficher un lien vers Piwik dans la vue d'ensemble"
+#: classes/WP_Piwik/Widget/Systems.php:35
+msgid "Operation System"
+msgstr "Système d'exploitation"
+
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Date"
+msgstr "Date"
+#: classes/WP_Piwik/Widget/Visitors.php:57
+msgid "Page Views"
+msgstr "Pages vues"
+
+#: wp-piwik.php:60
+#, php-format
+msgid ""
+"WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
+" Please update PHP to use WP-Piwik."
+msgstr "WP-Piwik requiert au moins PHP 5.3. Vous utilisez la version obsolète %s. Merci de mettre à jour PHP pour utiliser WP-Piwik."
diff --git a/readme.txt b/readme.txt
index 0d0ef7f..0f06d8e 100644
--- a/readme.txt
+++ b/readme.txt
@@ -129,11 +129,12 @@ This is a full refactored version of WP-Piwik. Please check your settings after
= 0.10.0.7 =
* Bugfix: Opt-out shortcode output fix
+* Bugfix: Opt-out shortcode will also work in "pro" and "php" mode
* Bugfix: Sitebrowser link (settings page, support) fixed
* Bugfix: Removed test script errors and notices
* Bugfix: Keep sure the revion ID is stored and avoid re-installing the plugin again and again
-* Typos fixes
-
+* Bugfix: http/pro - after configuration the settings page had to be reloaded once to start working
+* Typo fixes
= 0.10.0.6 =
* Bugfix: Option storage bug if WP-Piwik is used as single site plugin on blog networks