// changed English strings, especially focusing on colons harmonization
This commit is contained in:
@@ -40,7 +40,7 @@ class StatsData extends Module
|
||||
parent::__construct();
|
||||
|
||||
$this->displayName = $this->l('Data mining for statistics');
|
||||
$this->description = $this->l('This module must be enabled if you want to use Statistics.');
|
||||
$this->description = $this->l('This module must be enabled if you want to use statistics.');
|
||||
}
|
||||
|
||||
public function install()
|
||||
@@ -67,25 +67,25 @@ class StatsData extends Module
|
||||
<label class="t" for="PS_STATSDATA_CUSTOMER_PAGESVIEWS_on"> <img src="../img/admin/enabled.gif" alt="'.$this->l('Yes').'" title="'.$this->l('Yes').'" /></label>
|
||||
<input type="radio" name="PS_STATSDATA_CUSTOMER_PAGESVIEWS" id="PS_STATSDATA_CUSTOMER_PAGESVIEWS_off" value="0" '.(Tools::getValue('PS_STATSDATA_CUSTOMER_PAGESVIEWS', Configuration::get('PS_STATSDATA_CUSTOMER_PAGESVIEWS')) ? '' : 'checked="checked"').' />
|
||||
<label class="t" for="PS_STATSDATA_CUSTOMER_PAGESVIEWS_off"> <img src="../img/admin/disabled.gif" alt="'.$this->l('No').'" title="'.$this->l('No').'" /></label>
|
||||
<p>'.$this->l('Customer page views uses a lot of CPU resources and database space.').'</p>
|
||||
<p>'.$this->l('Stored customer page views uses a lot of CPU resources and database space.').'</p>
|
||||
</div>
|
||||
<div class="clear"> </div>
|
||||
<label>'.$this->l('Save global page views').'</label>
|
||||
<label>'.$this->l('Save global page views.').'</label>
|
||||
<div class="margin-form">
|
||||
<input type="radio" name="PS_STATSDATA_PAGESVIEWS" id="PS_STATSDATA_PAGESVIEWS_on" value="1" '.(Tools::getValue('PS_STATSDATA_PAGESVIEWS', Configuration::get('PS_STATSDATA_PAGESVIEWS')) ? 'checked="checked"' : '').' />
|
||||
<label class="t" for="PS_STATSDATA_PAGESVIEWS_on"> <img src="../img/admin/enabled.gif" alt="'.$this->l('Yes').'" title="'.$this->l('Yes').'" /></label>
|
||||
<input type="radio" name="PS_STATSDATA_PAGESVIEWS" id="PS_STATSDATA_PAGESVIEWS_off" value="0" '.(Tools::getValue('PS_STATSDATA_PAGESVIEWS', Configuration::get('PS_STATSDATA_PAGESVIEWS')) ? '' : 'checked="checked"').' />
|
||||
<label class="t" for="PS_STATSDATA_PAGESVIEWS_off"> <img src="../img/admin/disabled.gif" alt="'.$this->l('No').'" title="'.$this->l('No').'" /></label>
|
||||
<p>'.$this->l('Global page views uses less resources than customer\'s, but uses resources nonetheless.').'</p>
|
||||
<p>'.$this->l('Global page views uses fewer resources than customer\'s, but it uses resources nonetheless.').'</p>
|
||||
</div>
|
||||
<div class="clear"> </div>
|
||||
<label>'.$this->l('Plug-ins detection').'</label>
|
||||
<label>'.$this->l('Plugins detection').'</label>
|
||||
<div class="margin-form">
|
||||
<input type="radio" name="PS_STATSDATA_PLUGINS" id="PS_STATSDATA_PLUGINS_on" value="1" '.(Tools::getValue('PS_STATSDATA_PLUGINS', Configuration::get('PS_STATSDATA_PLUGINS')) ? 'checked="checked"' : '').' />
|
||||
<label class="t" for="PS_STATSDATA_PLUGINS_on"> <img src="../img/admin/enabled.gif" alt="'.$this->l('Yes').'" title="'.$this->l('Yes').'" /></label>
|
||||
<input type="radio" name="PS_STATSDATA_PLUGINS" id="PS_STATSDATA_PLUGINS_off" value="0" '.(Tools::getValue('PS_STATSDATA_PLUGINS', Configuration::get('PS_STATSDATA_PLUGINS')) ? '' : 'checked="checked"').' />
|
||||
<label class="t" for="PS_STATSDATA_PLUGINS_off"> <img src="../img/admin/disabled.gif" alt="'.$this->l('No').'" title="'.$this->l('No').'" /></label>
|
||||
<p>'.$this->l('Plug-ins detection loads an extra 20kb javascript file for new visitors.').'</p>
|
||||
<p>'.$this->l('Plugins detection loads an extra 20kb javascript file for new visitors.').'</p>
|
||||
</div>
|
||||
<div class="clear"> </div>
|
||||
<input type="submit" class="button" name="submitStatsData" value="'.$this->l('Update').'" />
|
||||
|
||||
Reference in New Issue
Block a user