Add language strings for the toolbar
This commit is contained in:
@@ -152,6 +152,10 @@ return array (
|
|||||||
'Select Country' => 'Select Country',
|
'Select Country' => 'Select Country',
|
||||||
'Create' => 'Create',
|
'Create' => 'Create',
|
||||||
'Related' => 'Related',
|
'Related' => 'Related',
|
||||||
|
'Grid' => 'Grid',
|
||||||
|
'List' => 'List',
|
||||||
|
'Next' => 'Next',
|
||||||
|
'Previous' => 'Previous',
|
||||||
/*
|
/*
|
||||||
'The page cannot be found' => 'The page cannot be found',
|
'The page cannot be found' => 'The page cannot be found',
|
||||||
'What\'s your name?' => 'What\'s your name?',
|
'What\'s your name?' => 'What\'s your name?',
|
||||||
|
|||||||
@@ -152,6 +152,10 @@ return array (
|
|||||||
'Select Country' => '',
|
'Select Country' => '',
|
||||||
'Create' => '',
|
'Create' => '',
|
||||||
'Related' => '',
|
'Related' => '',
|
||||||
|
'Grid' => '',
|
||||||
|
'List' => '',
|
||||||
|
'Next' => '',
|
||||||
|
'Previous' => '',
|
||||||
/*
|
/*
|
||||||
'The page cannot be found' => '',
|
'The page cannot be found' => '',
|
||||||
'What\'s your name?' => '',
|
'What\'s your name?' => '',
|
||||||
|
|||||||
@@ -152,6 +152,11 @@ return array (
|
|||||||
'Select Country' => 'Choisissez un pays',
|
'Select Country' => 'Choisissez un pays',
|
||||||
'Create' => 'Créer',
|
'Create' => 'Créer',
|
||||||
'Related' => 'Liés', // voir le contexte pour l'accord
|
'Related' => 'Liés', // voir le contexte pour l'accord
|
||||||
|
'Grid' => 'Grille',
|
||||||
|
'List' => 'Liste',
|
||||||
|
'Next' => 'Suivant',
|
||||||
|
'Previous' => 'Précédent',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
'The page cannot be found' => '',
|
'The page cannot be found' => '',
|
||||||
'What\'s your name?' => '',
|
'What\'s your name?' => '',
|
||||||
|
|||||||
@@ -152,6 +152,10 @@ return array (
|
|||||||
'Select Country' => '',
|
'Select Country' => '',
|
||||||
'Create' => '',
|
'Create' => '',
|
||||||
'Related' => '',
|
'Related' => '',
|
||||||
|
'Grid' => '',
|
||||||
|
'List' => '',
|
||||||
|
'Next' => '',
|
||||||
|
'Previous' => '',
|
||||||
/*
|
/*
|
||||||
'The page cannot be found' => '',
|
'The page cannot be found' => '',
|
||||||
'What\'s your name?' => '',
|
'What\'s your name?' => '',
|
||||||
|
|||||||
@@ -30,8 +30,8 @@
|
|||||||
<span class="view-mode">
|
<span class="view-mode">
|
||||||
<span class="view-mode-label">{intl l="View as"}:</span>
|
<span class="view-mode-label">{intl l="View as"}:</span>
|
||||||
<span class="view-mode-btn">
|
<span class="view-mode-btn">
|
||||||
<a href="{url path="{navigate to="current"}" mode='grid'}" data-toggle="view" role="button" class="btn btn-grid"><i class="icon-grid"></i></a>
|
<a href="{url path="{navigate to="current"}" mode="grid"}" data-toggle="view" role="button" title="{intl l="Grid"}" rel="nofollow" class="btn btn-grid"><i class="icon-grid"></i></a>
|
||||||
<a href="{url path="{navigate to="current"}" mode="list"}" data-toggle="view" role="button" class="btn btn-list "><i class="icon-list"></i></a>
|
<a href="{url path="{navigate to="current"}" mode="list"}" data-toggle="view" role="button" title="{intl l="List"}" rel="nofollow" class="btn btn-list"><i class="icon-list"></i></a>
|
||||||
</span>
|
</span>
|
||||||
</span><!-- /.view-mode -->
|
</span><!-- /.view-mode -->
|
||||||
|
|
||||||
@@ -42,9 +42,9 @@
|
|||||||
<ul class="pagination">
|
<ul class="pagination">
|
||||||
|
|
||||||
{if $product_page > 1}
|
{if $product_page > 1}
|
||||||
<li><a href="{url path={navigate to="current"} page={$product_page-1} }" class="prev"><i class="icon-prev"></i></a></li>
|
<li><a href="{url path={navigate to="current"} page={$product_page-1} }" title="{intl l="Previous"}" class="prev"><i class="icon-prev"></i></a></li>
|
||||||
{else}
|
{else}
|
||||||
<li><a href="#" class="prev"><i class="icon-prev"></i></a></li>
|
<li><a href="#" title="{intl l="Previous"}" class="prev"><i class="icon-prev"></i></a></li>
|
||||||
{/if}
|
{/if}
|
||||||
{pageloop rel="product_list"}
|
{pageloop rel="product_list"}
|
||||||
{if $PAGE != $CURRENT}
|
{if $PAGE != $CURRENT}
|
||||||
@@ -54,9 +54,9 @@
|
|||||||
{/if}
|
{/if}
|
||||||
{if $PAGE == $LAST}
|
{if $PAGE == $LAST}
|
||||||
{if $CURRENT < $LAST}
|
{if $CURRENT < $LAST}
|
||||||
<li><a href="{url path={navigate to="current"} page={$CURRENT+1} }" class="next"><i class="icon-next"></i></a></li>
|
<li><a href="{url path={navigate to="current"} page={$CURRENT+1} }" title="{intl l="Next"}" class="next"><i class="icon-next"></i></a></li>
|
||||||
{else}
|
{else}
|
||||||
<li><a href="#" class="next"><i class="icon-next"></i></a></li>
|
<li><a href="#" title="{intl l="Next"}" class="next"><i class="icon-next"></i></a></li>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{/if}
|
{/if}
|
||||||
|
|||||||
Reference in New Issue
Block a user