// Fix update english key of translations in all files

This commit is contained in:
lLefevre
2012-03-14 12:25:51 +00:00
parent d93eff8834
commit c21bef2acf
553 changed files with 17474 additions and 20745 deletions
+14 -14
View File
@@ -65,16 +65,16 @@ class AdminSearchConfControllerCore extends AdminController
'title' => $this->l('Indexation'),
'icon' => 'search',
'info' =>
$this->l('The "indexed" products have been analysed by PrestaShop and will appear in the results of the front office search.').'<br />
$this->l('The \\"indexed\\" products have been analyzed by PrestaShop and will appear in the results of the Front Office search.').'<br />
'.$this->l('Indexed products:').' <b>'.(int)$indexed.' / '.(int)$total.'</b>.
</p>
<p>'.$this->l('Building the product index can take a few minutes or more.')
.$this->l('If your server stop the process before it ends, you can resume the indexation by clicking "Add missing products".').'</p>
.$this->l('If your server stops the process before it ends, you can resume the indexation by clicking \\"Add missing products.\\"').'</p>
-&gt; <a href="searchcron.php?token='.substr(_COOKIE_KEY_, 34, 8).'&redirect=1" class="bold">'.
$this->l('Add missing products to index.').'</a><br />
-&gt; <a href="searchcron.php?full=1&token='.substr(_COOKIE_KEY_, 34, 8).'&redirect=1" class="bold">'.
$this->l('Re-build entire index.').'</a><br /><br />
'.$this->l('You can set a cron job that will re-build your index using the following URL:').' <a href="'.$cron_url.'">'.$cron_url.'</a>'
'.$this->l('You can set a cron job that will rebuild your index using the following URL:').' <a href="'.$cron_url.'">'.$cron_url.'</a>'
),
'search' => array(
'title' => $this->l('Search'),
@@ -85,18 +85,18 @@ class AdminSearchConfControllerCore extends AdminController
'validation' => 'isBool',
'type' => 'bool',
'cast' => 'intval',
'desc' => $this->l('Enable the ajax search for your visitors.').'<br />'.
$this->l('With the ajax search, the first 10 products matching the user query will appear in real time below the input field.')),
'desc' => $this->l('Enable ajax search for your visitors.').'<br />'.
$this->l('With ajax search, the first 10 products matching the user query will appear in real time below the input field.')),
'PS_INSTANT_SEARCH' => array(
'title' => $this->l('Instant search:'),
'validation' => 'isBool',
'cast' => 'intval',
'type' => 'bool',
'desc' => $this->l('Enable the instant search for your visitors.').'<br />'.
$this->l('With the instant search, the results will appear immediatly while the user write his query.')),
'desc' => $this->l('Enable instant search for your visitors.').'<br />'.
$this->l('With instant search, the results will appear immediately as the user writes a query.')),
'PS_SEARCH_MINWORDLEN' => array(
'title' => $this->l('Minimum word length'),
'desc' => $this->l('Only words from this size will be indexed.'),
'title' => $this->l('Minimum word length (in characters)'),
'desc' => $this->l('Only words this size or larger will be indexed.'),
'size' => 4,
'validation' => 'isUnsignedInt',
'type' => 'text',
@@ -116,9 +116,9 @@ class AdminSearchConfControllerCore extends AdminController
'title' => $this->l('Weight'),
'icon' => 'weight',
'info' =>
$this->l('The "weight" represents its importance and relevance for the ranking of the products when try a new search.').'<br />
$this->l('The \\"weight\\" represents its importance and relevance for the ranking of the products when try a new search.').'<br />
'.$this->l('A word with a weight of 8 will have 4 times more value than a word with a weight of 2.').'<br /><br />
'.$this->l('That\'s why we advise to set a greater weight for words which appear in the name or reference of a products than the ones of the description. Thus, the search results will be as precised and releant as possible.'),
'.$this->l('That\'s why we advise to set a greater weight for words which appear in the name or reference of a product than the ones in the description. Thus, the search results will be as precise and relevant as possible.'),
'fields' => array(
'PS_SEARCH_WEIGHT_PNAME' => array(
'title' => $this->l('Product name weight'),
@@ -233,7 +233,7 @@ class AdminSearchConfControllerCore extends AdminController
'size' => 40,
'required' => true,
'desc' => array(
$this->l('Enter each alias separated by a comma (\',\') (e.g., \'prestshop,preztashop,prestasohp\')'),
$this->l('Enter each alias separated by a comma (\',\') (e.g. \'prestshop,preztashop,prestasohp\')'),
$this->l('Forbidden characters: <>;=#{}')
)
),
@@ -247,7 +247,7 @@ class AdminSearchConfControllerCore extends AdminController
)
),
'submit' => array(
'title' => $this->l(' Save '),
'title' => $this->l('Save'),
'class' => 'button'
)
);
@@ -280,6 +280,6 @@ class AdminSearchConfControllerCore extends AdminController
}
if (empty($this->errors))
$this->confirmations[] = $this->l('Creation successfull');
$this->confirmations[] = $this->l('Creation successful');
}
}