summaryrefslogtreecommitdiff
path: root/muse2/muse/midiseq.cpp
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2012-05-28 14:15:52 +0000
committerFlorian Jung <flo@windfisch.org>2012-05-28 14:15:52 +0000
commitd2a88cfaad5ac385fc3c6212c09ad7fbc38e9454 (patch)
tree387da0b38255003e1a971629ea0de32273ac3d3c /muse2/muse/midiseq.cpp
parent716f5a5b56a3b7ff59004ef0a1af5f98cb2a691c (diff)
merged with release_2_0
Diffstat (limited to 'muse2/muse/midiseq.cpp')
-rw-r--r--muse2/muse/midiseq.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/muse2/muse/midiseq.cpp b/muse2/muse/midiseq.cpp
index 1000cc46..300382e9 100644
--- a/muse2/muse/midiseq.cpp
+++ b/muse2/muse/midiseq.cpp
@@ -24,6 +24,7 @@
//=========================================================
#include <QMessageBox>
+#include <QApplication>
#include <stdio.h>
#include <fcntl.h>
@@ -498,10 +499,13 @@ void MidiSeq::checkAndReportTimingResolution()
{
int freq = timer->getTimerFreq();
if (freq < 500) {
- QMessageBox::warning( MusEGlobal::muse, QString("Bad timing"), QString("Timing source frequency is %1hz, which is below the recommended minimum: 500hz!\n" \
- "This could lead to audible timing problems for MIDI.\n" \
- "Please see the FAQ on http://muse-sequencer.org for remedies.\n" \
- "Also please check console output for any further error messages\n ").arg(freq));
+ QMessageBox::warning( MusEGlobal::muse,
+ qApp->translate("@default", QT_TRANSLATE_NOOP("@default", "Bad timing")),
+ qApp->translate("@default", QT_TRANSLATE_NOOP("@default",
+ "Timing source frequency is %1hz, which is below the recommended minimum: 500hz!\n" \
+ "This could lead to audible timing problems for MIDI.\n" \
+ "Please see the FAQ on http://muse-sequencer.org for remedies.\n" \
+ "Also please check console output for any further error messages\n ")).arg(freq) );
}
}