Minor change for i18n
This commit is contained in:
@@ -957,8 +957,8 @@ void DataFile::loadData( const QByteArray & _data, const QString & _sourceFile )
|
||||
"LMMS version %2, but version %3 "
|
||||
"is installed")
|
||||
.arg( _sourceFile.endsWith( ".mpt" ) ?
|
||||
"template" :
|
||||
"project" )
|
||||
SongEditor::tr("template") :
|
||||
SongEditor::tr("project") )
|
||||
.arg( root.attribute( "creatorversion" ) )
|
||||
.arg( LMMS_VERSION ) );
|
||||
}
|
||||
|
||||
@@ -76,15 +76,15 @@ void TimeDisplayWidget::setDisplayMode( DisplayMode displayMode )
|
||||
switch( m_displayMode )
|
||||
{
|
||||
case MinutesSeconds:
|
||||
m_majorLCD.setLabel( "MIN" );
|
||||
m_minorLCD.setLabel( "SEC" );
|
||||
m_milliSecondsLCD.setLabel( "MSEC" );
|
||||
m_majorLCD.setLabel( tr( "MIN" ) );
|
||||
m_minorLCD.setLabel( tr( "SEC" ) );
|
||||
m_milliSecondsLCD.setLabel( tr( "MSEC" ) );
|
||||
break;
|
||||
|
||||
case BarsTicks:
|
||||
m_majorLCD.setLabel( "BAR" );
|
||||
m_minorLCD.setLabel( "BEAT" );
|
||||
m_milliSecondsLCD.setLabel( "TICK" );
|
||||
m_majorLCD.setLabel( tr( "BAR" ) );
|
||||
m_minorLCD.setLabel( tr( "BEAT" ) );
|
||||
m_milliSecondsLCD.setLabel( tr( "TICK" ) );
|
||||
break;
|
||||
|
||||
default: break;
|
||||
|
||||
Reference in New Issue
Block a user