Changeset 8665 for trunk/include


Ignore:
Timestamp:
Jan 14, 2011, 10:19:15 PM (13 years ago)
Author:
rvelices
Message:

feature 2102 : rename item/image/picture to photo

Location:
trunk/include
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/functions.inc.php

    r8263 r8665  
    14351435  {
    14361436    $cache['get_icon']['title'] = sprintf(
    1437       l10n('images posted during the last %d days'),
     1437      l10n('photos posted during the last %d days'),
    14381438      $user['recent_period']
    14391439      );
  • trunk/include/functions_category.inc.php

    r8652 r8665  
    477477
    478478    //at least one image direct or indirect
    479     $display_text.= l10n_dec('%d image', '%d images', $cat_count_images);
     479    $display_text.= l10n_dec('%d photo', '%d photos', $cat_count_images);
    480480
    481481    if ($cat_count_categories == 0 or $cat_nb_images == $cat_count_images)
  • trunk/include/functions_html.inc.php

    r8247 r8665  
    422422        )
    423423      .'" title="'
    424       .l10n('See images linked to this tag only')
     424      .l10n('display photos linked to this tag')
    425425      .'">'
    426426      .$page['tags'][$i]['name']
  • trunk/include/functions_notification.inc.php

    r8664 r8665  
    396396  {
    397397    add_news_line( $news,
    398       nb_new_elements($start, $end), '%d new image', '%d new images',
     398      nb_new_elements($start, $end), '%d new photo', '%d new photos',
    399399      make_index_url(array('section'=>'recent_pics')), $add_url );
    400400  }
     
    527527  $description .=
    528528        '<li>'
    529         .l10n_dec('%d new image', '%d new images', $date_detail['nb_elements'])
     529        .l10n_dec('%d new photo', '%d new photos', $date_detail['nb_elements'])
    530530        .' ('
    531531        .'<a href="'.make_index_url(array('section'=>'recent_pics')).'">'
     
    559559          .get_cat_display_name_cache($cat['uppercats'])
    560560          .' ('.
    561           l10n_dec('%d new image',
    562                    '%d new images', $cat['img_count']).')'
     561          l10n_dec('%d new photo',
     562                   '%d new photos', $cat['img_count']).')'
    563563          .'</li>';
    564564  }
     
    581581  $exploded_date = strptime($date, '%Y-%m-%d %H:%M:%S');
    582582
    583   $title = l10n_dec('%d new image', '%d new images', $date_detail['nb_elements']);
     583  $title = l10n_dec('%d new photo', '%d new photos', $date_detail['nb_elements']);
    584584  $title .= ' ('.$lang['month'][1+$exploded_date['tm_mon']].' '.$exploded_date['tm_mday'].')';
    585585
  • trunk/include/menubar.inc.php

    r8652 r8665  
    170170        array(
    171171          'URL' => make_index_url(array('section' => 'favorites')),
    172           'TITLE' => l10n('display my favorites pictures'),
    173           'NAME' => l10n('My favorites')
     172          'TITLE' => l10n('display your favorites photos'),
     173          'NAME' => l10n('Your favorites')
    174174          );
    175175    }
     
    178178      array(
    179179        'URL' => make_index_url(array('section' => 'most_visited')),
    180         'TITLE' => l10n('display most visited pictures'),
     180        'TITLE' => l10n('display most visited photos'),
    181181        'NAME' => l10n('Most visited')
    182182      );
     
    187187        array(
    188188          'URL' => make_index_url(array('section' => 'best_rated')),
    189           'TITLE' => l10n('display best rated items'),
     189          'TITLE' => l10n('display best rated photos'),
    190190          'NAME' => l10n('Best rated')
    191191        );
     
    195195      array(
    196196        'URL' => get_root_url().'random.php',
    197         'TITLE' => l10n('display a set of random pictures'),
    198         'NAME' => l10n('Random pictures'),
     197        'TITLE' => l10n('display a set of random photos'),
     198        'NAME' => l10n('Random photos'),
    199199        'REL'=> 'rel="nofollow"'
    200200      );
     
    203203      array(
    204204        'URL' => make_index_url(array('section' => 'recent_pics')),
    205         'TITLE' => l10n('display most recent pictures'),
    206         'NAME' => l10n('Recent pictures'),
     205        'TITLE' => l10n('display most recent photos'),
     206        'NAME' => l10n('Recent photos'),
    207207      );
    208208
     
    226226            )
    227227          ),
    228         'TITLE' => l10n('display each day with pictures, month per month'),
     228        'TITLE' => l10n('display each day with photos, month per month'),
    229229        'NAME' => l10n('Calendar'),
    230230        'REL'=> 'rel="nofollow"'
     
    244244    $block->data['tags'] =
    245245      array(
    246         'TITLE' => l10n('See available tags'),
     246        'TITLE' => l10n('display available tags'),
    247247        'NAME' => l10n('Tags'),
    248248        'URL'=> get_root_url().'tags.php',
     
    261261    $block->data['comments'] =
    262262      array(
    263         'TITLE'=>l10n('See last users comments'),
     263        'TITLE'=>l10n('display last user comments'),
    264264        'NAME'=>l10n('Comments'),
    265265        'URL'=> get_root_url().'comments.php',
  • trunk/include/section_init.inc.php

    r6951 r8665  
    456456      array(
    457457        'title' => '<a href="'.duplicate_index_url(array('start'=>0)).'">'
    458                   .l10n('Recent pictures').'</a>',
     458                  .l10n('Recent photos').'</a>',
    459459        'items' => array_from_query($query, 'id'),
    460460        )
     
    543543      array(
    544544        'title' => '<a href="'.duplicate_index_url(array('start'=>0)).'">'
    545                     .l10n('Random pictures').'</a>',
     545                    .l10n('Random photos').'</a>',
    546546        'items' => array_from_query($query, 'id'),
    547547        )
Note: See TracChangeset for help on using the changeset viewer.