diff --git a/data/locale/en.ts b/data/locale/en.ts index 260bae8cb..736733bc0 100644 --- a/data/locale/en.ts +++ b/data/locale/en.ts @@ -6326,6 +6326,14 @@ Remember to also save your project manually. This %1 was created with LMMS version %2, but version %3 is installed + + template + + + + project + + SongEditorWindow @@ -8334,10 +8342,6 @@ Double clicking any of the plugins will bring up information on the ports.ADSR: - - Bowed - - Pressure @@ -8346,14 +8350,6 @@ Double clicking any of the plugins will bring up information on the ports.Pressure: - - Motion - - - - Motion: - - Speed @@ -8362,14 +8358,6 @@ Double clicking any of the plugins will bring up information on the ports.Speed: - - Vibrato - - - - Vibrato: - - Missing files diff --git a/src/core/DataFile.cpp b/src/core/DataFile.cpp index 2d6ff8219..5f0ca4429 100644 --- a/src/core/DataFile.cpp +++ b/src/core/DataFile.cpp @@ -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 ) ); } diff --git a/src/gui/widgets/TimeDisplayWidget.cpp b/src/gui/widgets/TimeDisplayWidget.cpp index 0d31a30f4..6271065a3 100644 --- a/src/gui/widgets/TimeDisplayWidget.cpp +++ b/src/gui/widgets/TimeDisplayWidget.cpp @@ -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;