Ignore:
Timestamp:
Aug 1, 2012, 6:59:06 PM (12 years ago)
Author:
rvelices
Message:

batch manager improvements/fixes:

  • when refreshing photo set, start is set to 0 (otherwise if the new set is smaller that start, it looks like it is empty)
  • correct positioning of thumbnails (width/height) is done in template instead of javascript (immediate instead on ready + no reflows)
  • less space lost on batch manager page
  • fix wrong page title in batch manager because of global variable $title overriden
  • fix language keys in element_set_ranks (capital/lowercase issue)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/element_set_ranks.php

    r16529 r17289  
    238238$sort_fields = array(
    239239  ''                    => '',
    240   'file'                => l10n('file name, A → Z'),
    241   'file DESC'           => l10n('file name, Z → A'),
    242   'name'                => l10n('photo title, A → Z'),
    243   'name DESC'           => l10n('photo title, Z → A'),
    244   'date_creation DESC'  => l10n('date created, new → old'),
    245   'date_creation'       => l10n('date created, old → new'),
    246   'date_available DESC' => l10n('date posted, new → old'),
    247   'date_available'      => l10n('date posted, old → new'),
    248   'rating_score DESC'   => l10n('rating score, high → low'),
    249   'rating_score'        => l10n('rating score, low → high'),
    250   'hit DESC'            => l10n('visits, high → low'),
    251   'hit'                 => l10n('visits, low → high'),
    252   'id'                  => l10n('numeric identifier, 1 → 9'),
    253   'id DESC'             => l10n('numeric identifier, 9 → 1'),
    254   'rank'                => l10n('manual sort order'),
     240  'file'                => l10n('File name, A → Z'),
     241  'file DESC'           => l10n('File name, Z → A'),
     242  'name'                => l10n('Photo title, A → Z'),
     243  'name DESC'           => l10n('Photo title, Z → A'),
     244  'date_creation DESC'  => l10n('Date created, new → old'),
     245  'date_creation'       => l10n('Date created, old → new'),
     246  'date_available DESC' => l10n('Date posted, new → old'),
     247  'date_available'      => l10n('Date posted, old → new'),
     248  'rating_score DESC'   => l10n('Rating score, high → low'),
     249  'rating_score'        => l10n('Rating score, low → high'),
     250  'hit DESC'            => l10n('Visits, high → low'),
     251  'hit'                 => l10n('Visits, low → high'),
     252  'id'                  => l10n('Numeric identifier, 1 → 9'),
     253  'id DESC'             => l10n('Numeric identifier, 9 → 1'),
     254  'rank'                => l10n('Manual sort order'),
    255255  );
    256256
Note: See TracChangeset for help on using the changeset viewer.