Changeset 83fb33511475ce86a30d565e8f925830784d54b3

Show
Ignore:
Timestamp:
05/12/08 13:29:42 (2 months ago)
Author:
Ilkka Ollakka <ileoo@videolan.org>
git-committer:
Ilkka Ollakka <ileoo@videolan.org> 1210591782 +0300
git-parent:

[3431b0a84f27a5653429de3b1b74c2fd44716bfe]

git-author:
Ilkka Ollakka <ileoo@videolan.org> 1210591782 +0300
Message:

Show utf-8 as utf-8, eg translations in playlistpanel.
also add _("ID") instead of empty label on first label (seems that it's id)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/qt4/components/playlist/playlist_item.cpp

    r7bc28ee r83fb335  
    117117    { 
    118118        if( i_showflags & i_index ) 
    119             item_col_strings.append( psz_column_title( i_index ) ); 
     119            item_col_strings.append( qfu( psz_column_title( i_index ) ) ); 
    120120    } 
    121121} 
     
    188188        { 
    189189            char *psz = psz_column_meta( p_item->p_input, i_index ); 
    190             item_col_strings.append( psz ); 
     190            item_col_strings.append( qfu( psz ) ); 
    191191            free( psz ); 
    192192        } 
  • modules/gui/qt4/components/playlist/sorting.h

    ra82a9bc r83fb335  
    4444    switch( i_column ) 
    4545    { 
    46     case COLUMN_NUMBER:          return ""
     46    case COLUMN_NUMBER:          return _("ID")
    4747    case COLUMN_TITLE:           return VLC_META_TITLE; 
    4848    case COLUMN_DURATION:        return _("Duration"); 
  • modules/gui/qt4/components/playlist/standardpanel.cpp

    r7bc28ee r83fb335  
    268268    QMenu selectColMenu; 
    269269 
    270     char *psz_title; 
    271270#define ADD_META_ACTION( meta ) {                                              \ 
    272     QAction* option = selectColMenu.addAction( psz_column_title( meta ) );     \ 
     271    QAction* option = selectColMenu.addAction( qfu( psz_column_title( meta ) ) );     \ 
    273272    option->setCheckable( true );                                              \ 
    274273    option->setChecked( model->shownFlags() & meta );                          \