Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix Issue 0000605: Not linked elements failure with no virtual catego…
…ries galleries

Add missing translations


git-svn-id: http://piwigo.org/svn/trunk@1831 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
rub committed Feb 16, 2007
1 parent 92192fd commit 856f707
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 7 deletions.
19 changes: 13 additions & 6 deletions admin/element_set.php
Expand Up @@ -147,20 +147,27 @@
;';
$virtual_categories = array_from_query($query, 'id');

$query = '
if (!empty($virtual_categories))
{
$query = '
SELECT DISTINCT(image_id)
FROM '.IMAGE_CATEGORY_TABLE.'
;';
$all_elements = array_from_query($query, 'image_id');
$query = '
$all_elements = array_from_query($query, 'image_id');

$query = '
SELECT DISTINCT(image_id)
FROM '.IMAGE_CATEGORY_TABLE.'
WHERE category_id IN ('.implode(',', $virtual_categories).')
;';
$linked_to_virtual = array_from_query($query, 'image_id');
$linked_to_virtual = array_from_query($query, 'image_id');

$page['cat_elements_id'] = array_diff($all_elements, $linked_to_virtual);
$page['cat_elements_id'] = array_diff($all_elements, $linked_to_virtual);
}
else
{
$page['cat_elements_id'] = array();
}
}
else if ('duplicates' == $_GET['cat'])
{
Expand Down
16 changes: 16 additions & 0 deletions language/en_UK.iso-8859-1/admin.lang.php
Expand Up @@ -550,5 +550,21 @@
$lang['BUGS'] = 'BUGS';
$lang['EXTENSIONS'] = 'EXTENSIONS';
$lang['WIKI / DOC'] = 'WIKI / DOC';
$lang['Export data'] = 'Export data';
$lang['Overall'] = 'Overall';
$lang['Year'] = 'Year';
$lang['Month'] = 'Month';
$lang['Day'] = 'Day';
$lang['Pages seen'] = 'Pages seen';
//$lang['only'] = 'only';
$lang['Pictures'] = 'Pictures';
$lang['High quality'] = 'High quality';
$lang['time'] = 'time';
$lang['user'] = 'user';
$lang['IP'] = 'IP';
$lang['image'] = '';
$lang['high quality'] = 'high quality';
$lang['section'] = 'section';
$lang['tags'] = 'tags';

?>
17 changes: 16 additions & 1 deletion language/fr_FR.iso-8859-1/admin.lang.php
Expand Up @@ -549,5 +549,20 @@
$lang['BUGS'] = 'BOGUES';
$lang['EXTENSIONS'] = 'EXTENSIONS';
$lang['WIKI / DOC'] = 'WIKI / DOC';

$lang['Export data'] = 'Exporter les données';
$lang['Overall'] = 'Vue globale';
$lang['Year'] = 'Année';
$lang['Month'] = 'Mois';
$lang['Day'] = 'Jour';
$lang['Pages seen'] = 'Pages vues';
//$lang['only'] = 'uniquement';
$lang['Pictures'] = 'Images';
$lang['High quality'] = 'Haute résolution';
$lang['time'] = 'heure';
$lang['user'] = 'utilisateur';
$lang['IP'] = 'IP';
$lang['image'] = 'images';
$lang['high quality'] = 'haute résolution';
$lang['section'] = 'section';
$lang['tags'] = 'tags';
?>

0 comments on commit 856f707

Please sign in to comment.