Display the 'muted' attribute as "mute" to match the wording of "solo"

This commit is contained in:
Colin Wallace
2015-04-21 19:09:56 +00:00
parent 35b357f3ce
commit 85b6a92460
18 changed files with 19 additions and 19 deletions

View File

@@ -103,7 +103,7 @@ TrackContentObject::TrackContentObject( Track * track ) :
m_name( QString::null ),
m_startPosition(),
m_length(),
m_mutedModel( false, this, tr( "Muted" ) ),
m_mutedModel( false, this, tr( "Mute" ) ),
m_selectViewOnCreate( false )
{
if( getTrack() )
@@ -1810,7 +1810,7 @@ Track::Track( TrackTypes type, TrackContainer * tc ) :
m_trackContainer( tc ), /*!< The track container object */
m_type( type ), /*!< The track type */
m_name(), /*!< The track's name */
m_mutedModel( false, this, tr( "Muted" ) ),
m_mutedModel( false, this, tr( "Mute" ) ),
/*!< For controlling track muting */
m_soloModel( false, this, tr( "Solo" ) ),
/*!< For controlling track soloing */