diff options
author | mistic100 <mistic@piwigo.org> | 2013-10-19 11:04:11 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2013-10-19 11:04:11 +0000 |
commit | 2f08283864615990a47ef8b3995ab88402eda478 (patch) | |
tree | 6720eff124c37c877910cc25296958ebc1015cb9 /admin/themes/default/template/configuration.tpl | |
parent | 139ffe3712b8c9a9ea4cd731d3fdb509463867dc (diff) |
feature 2978: remove useless sprintf in the core
git-svn-id: http://piwigo.org/svn/trunk@25005 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes/default/template/configuration.tpl')
-rw-r--r-- | admin/themes/default/template/configuration.tpl | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/admin/themes/default/template/configuration.tpl b/admin/themes/default/template/configuration.tpl index ba1835d23..aab3afd00 100644 --- a/admin/themes/default/template/configuration.tpl +++ b/admin/themes/default/template/configuration.tpl @@ -610,7 +610,7 @@ jQuery(document).ready(function() { <li> <label> <input type="checkbox" name="menubar_filter_icon" {if ($display.menubar_filter_icon)}checked="checked"{/if}> - {'Activate icon "%s"'|@translate|@sprintf:('display only recently posted photos'|@translate|@ucfirst)} + {'Activate icon "%s"'|@translate:('display only recently posted photos'|@translate|@ucfirst)} </label> </li> @@ -624,35 +624,35 @@ jQuery(document).ready(function() { <li> <label> <input type="checkbox" name="index_sort_order_input" {if ($display.index_sort_order_input)}checked="checked"{/if}> - {'Activate icon "%s"'|@translate|@sprintf:('Sort order'|@translate)} + {'Activate icon "%s"'|@translate:('Sort order'|@translate)} </label> </li> <li> <label> <input type="checkbox" name="index_flat_icon" {if ($display.index_flat_icon)}checked="checked"{/if}> - {'Activate icon "%s"'|@translate|@sprintf:('display all photos in all sub-albums'|@translate|@ucfirst)} + {'Activate icon "%s"'|@translate:('display all photos in all sub-albums'|@translate|@ucfirst)} </label> </li> <li> <label> <input type="checkbox" name="index_posted_date_icon" {if ($display.index_posted_date_icon)}checked="checked"{/if}> - {'Activate icon "%s"'|@translate|@sprintf:('display a calendar by posted date'|@translate|@ucfirst)} + {'Activate icon "%s"'|@translate:('display a calendar by posted date'|@translate|@ucfirst)} </label> </li> <li> <label> <input type="checkbox" name="index_created_date_icon" {if ($display.index_created_date_icon)}checked="checked"{/if}> - {'Activate icon "%s"'|@translate|@sprintf:('display a calendar by creation date'|@translate|@ucfirst)} + {'Activate icon "%s"'|@translate:('display a calendar by creation date'|@translate|@ucfirst)} </label> </li> <li> <label> <input type="checkbox" name="index_slideshow_icon" {if ($display.index_slideshow_icon)}checked="checked"{/if}> - {'Activate icon "%s"'|@translate|@sprintf:('slideshow'|@translate|@ucfirst)} + {'Activate icon "%s"'|@translate:('slideshow'|@translate|@ucfirst)} </label> </li> @@ -671,28 +671,28 @@ jQuery(document).ready(function() { <li> <label> <input type="checkbox" name="picture_slideshow_icon" {if ($display.picture_slideshow_icon)}checked="checked"{/if}> - {'Activate icon "%s"'|@translate|@sprintf:('slideshow'|@translate|@ucfirst)} + {'Activate icon "%s"'|@translate:('slideshow'|@translate|@ucfirst)} </label> </li> <li> <label> <input type="checkbox" name="picture_metadata_icon" {if ($display.picture_metadata_icon)}checked="checked"{/if}> - {'Activate icon "%s"'|@translate|@sprintf:('Show file metadata'|@translate)} + {'Activate icon "%s"'|@translate:('Show file metadata'|@translate)} </label> </li> <li> <label> <input type="checkbox" name="picture_download_icon" {if ($display.picture_download_icon)}checked="checked"{/if}> - {'Activate icon "%s"'|@translate|@sprintf:('Download this file'|@translate|@ucfirst)} + {'Activate icon "%s"'|@translate:('Download this file'|@translate|@ucfirst)} </label> </li> <li> <label> <input type="checkbox" name="picture_favorite_icon" {if ($display.picture_favorite_icon)}checked="checked"{/if}> - {'Activate icon "%s"'|@translate|@sprintf:('add this photo to your favorites'|@translate|@ucfirst)} + {'Activate icon "%s"'|@translate:('add this photo to your favorites'|@translate|@ucfirst)} </label> </li> |