diff --git a/lang/en.php b/lang/en.php index ac81b6cf59497bb7f18e78c8bd35e33a7a924eff..52e545f58854b2bc20f4ca797c0f53da251ec3ba 100644 --- a/lang/en.php +++ b/lang/en.php @@ -499,6 +499,7 @@ $translations = array( 'PrivacyManager_GetPurgeEstimate' => 'Get purge estimate', 'PrivacyManager_CannotLockSoDeleteLogActions' => 'The log_action table will not be purged: please grant the LOCK TABLES privilege to the \'%s\' MYSQL user.', 'PrivacyManager_DBPurged' => 'DB purged.', + 'PrivacyManager_GeolocationAnonymizeIpNote' => 'Note: Geolocation will have approximately the same results with 1 byte anonymized. With 2 bytes or more, Geolocation will be inacurrate.', 'CoreHome_PluginDescription' => 'Web Analytics Reports Structure.', 'CoreHome_WebAnalyticsReports' => 'Web Analytics Reports', 'CoreHome_NoPrivilegesAskPiwikAdmin' => 'You are logged in as \'%s\' but it seems you don\'t have any permission set in Piwik. %s Ask your Piwik administrator (click to email)%s to give you \'view\' access to a website.', diff --git a/plugins/PrivacyManager/templates/privacySettings.tpl b/plugins/PrivacyManager/templates/privacySettings.tpl index 9dfec9660225a0922eff90d51ccd066444bb421d..f9630c587dac9870944dbf5ca1e44ae7245a4533 100644 --- a/plugins/PrivacyManager/templates/privacySettings.tpl +++ b/plugins/PrivacyManager/templates/privacySettings.tpl @@ -33,10 +33,10 @@ See also our official guide <b><a href='http://piwik.org/privacy/' target='_blan </table> </div> <div id="anonymizeIPenabled"> - <table class="adminTable"> + <table class="adminTable" style='width:800px;'> <tr> <td width="250">{'PrivacyManager_AnonymizeIpMaskLengtDescription'|translate}</td> - <td> + <td width="500"> <label><input type="radio" name="maskLength" value="1" {if $anonymizeIP.maskLength eq '1'} checked {/if}/> {'PrivacyManager_AnonymizeIpMaskLength'|translate:"1":"192.168.100.xxx"} </label><br/> @@ -45,6 +45,9 @@ See also our official guide <b><a href='http://piwik.org/privacy/' target='_blan <label><input type="radio" name="maskLength" value="3" {if $anonymizeIP.maskLength eq '3'} checked {/if}/> {'PrivacyManager_AnonymizeIpMaskLength'|translate:"3":"192.xxx.xxx.xxx"}</label> </td> + <td width="200"> + {'PrivacyManager_GeolocationAnonymizeIpNote'|translate|inlineHelp} + </td> </tr> </table> </div>