diff options
author | ddtddt <ddtddt@piwigo.org> | 2011-10-16 07:26:03 +0000 |
---|---|---|
committer | ddtddt <ddtddt@piwigo.org> | 2011-10-16 07:26:03 +0000 |
commit | b19a47a20e664bd550112481f44812b611ff3db2 (patch) | |
tree | c6ac04cbd4dd2ef3b178fded2115aa592d780f34 /admin | |
parent | 88f48a00334f113d4f501a115b00a26aacc9f3a5 (diff) |
[trunk] - language - bug:2474
git-svn-id: http://piwigo.org/svn/trunk@12456 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/batch_manager_global.php | 12 | ||||
-rw-r--r-- | admin/themes/default/template/batch_manager_global.tpl | 10 |
2 files changed, 11 insertions, 11 deletions
diff --git a/admin/batch_manager_global.php b/admin/batch_manager_global.php index 8b42165f7..fe050a8ee 100644 --- a/admin/batch_manager_global.php +++ b/admin/batch_manager_global.php @@ -457,18 +457,18 @@ $base_url = get_root_url().'admin.php'; $prefilters = array(); array_push($prefilters, - array('ID' => 'caddie', 'NAME' => l10n('caddie')), - array('ID' => 'last import', 'NAME' => l10n('last import')), - array('ID' => 'with no album', 'NAME' => l10n('with no album')), - array('ID' => 'with no tag', 'NAME' => l10n('with no tag')), - array('ID' => 'duplicates', 'NAME' => l10n('duplicates')), + array('ID' => 'caddie', 'NAME' => l10n('Caddie')), + array('ID' => 'last import', 'NAME' => l10n('Last import')), + array('ID' => 'with no album', 'NAME' => l10n('With no album')), + array('ID' => 'with no tag', 'NAME' => l10n('With no tag')), + array('ID' => 'duplicates', 'NAME' => l10n('Duplicates')), array('ID' => 'all photos', 'NAME' => l10n('All')) ); if ($conf['enable_synchronization']) { array_push($prefilters, - array('ID' => 'with no virtual album', 'NAME' => l10n('with no virtual album')) + array('ID' => 'with no virtual album', 'NAME' => l10n('With no virtual album')) ); } diff --git a/admin/themes/default/template/batch_manager_global.tpl b/admin/themes/default/template/batch_manager_global.tpl index 41173eddc..137958e6a 100644 --- a/admin/themes/default/template/batch_manager_global.tpl +++ b/admin/themes/default/template/batch_manager_global.tpl @@ -464,7 +464,7 @@ jQuery(window).load(function() { <li id="filter_prefilter" {if !isset($filter.prefilter)}style="display:none"{/if}> <a href="#" class="removeFilter" title="{'remove this filter'|@translate}"><span>[x]</span></a> <input type="checkbox" name="filter_prefilter_use" class="useFilterCheckbox" {if isset($filter.prefilter)}checked="checked"{/if}> - {'predefined filter'|@translate} + {'Predefined filter'|@translate} <select name="filter_prefilter"> {foreach from=$prefilters item=prefilter} <option value="{$prefilter.ID}" {if $filter.prefilter eq $prefilter.ID}selected="selected"{/if}>{$prefilter.NAME}</option> @@ -504,7 +504,7 @@ jQuery(window).load(function() { <select id="addFilter"> <option value="-1">{'Add a filter'|@translate}</option> <option disabled="disabled">------------------</option> - <option value="filter_prefilter">{'predefined filter'|@translate}</option> + <option value="filter_prefilter">{'Predefined filter'|@translate}</option> <option value="filter_category">{'Album'|@translate}</option> <option value="filter_tags">{'Tags'|@translate}</option> <option value="filter_level">{'Who can see these photos?'|@translate}</option> @@ -606,7 +606,7 @@ jQuery(window).load(function() { {if !empty($dissociate_options)} <option value="dissociate">{'Dissociate from album'|@translate}</option> {/if} - <option value="add_tags">{'add tags'|@translate}</option> + <option value="add_tags">{'Add tags'|@translate}</option> {if !empty($DEL_TAG_SELECTION)} <option value="del_tags">{'remove tags'|@translate}</option> {/if} @@ -614,11 +614,11 @@ jQuery(window).load(function() { <option value="title">{'Set title'|@translate}</option> <option value="date_creation">{'Set creation date'|@translate}</option> <option value="level">{'Who can see these photos?'|@translate}</option> - <option value="metadata">{'synchronize metadata'|@translate}</option> + <option value="metadata">{'Synchronize metadata'|@translate}</option> {if ($IN_CADDIE)} <option value="remove_from_caddie">{'Remove from caddie'|@translate}</option> {else} - <option value="add_to_caddie">{'add to caddie'|@translate}</option> + <option value="add_to_caddie">{'Add to caddie'|@translate}</option> {/if} <option value="regenerateThumbnails">{'Regenerate Thumbnails'|@translate}</option> <option value="regenerateWebsize">{'Regenerate Websize Photos'|@translate}</option> |