diff --git a/qtgui/mainwindow.py b/qtgui/mainwindow.py index cfebae8..1a2451f 100644 --- a/qtgui/mainwindow.py +++ b/qtgui/mainwindow.py @@ -60,8 +60,20 @@ class MainWindow(TemplateMainWindow): #Make the first three words matter! #Do not start them all with "You can..." or "...that you can", in response to the Did you know? title. #We use injection into the class and not a parameter because this dialog gets shown by creating an object. We can't give the parameters when this is shown via the mainWindow menu. - About.didYouKnow = [ - QtCore.QCoreApplication.translate("About", "This is an example application. Extend it to your liking. Start by editing config.py") + About.didYouKnow = [ + QtCore.QCoreApplication.translate("About", "

Most commands work in the appending position (last position in a track) and apply to the item before it.

Use it to apply dots, sharps and flats on the item you just inserted without moving the cursor back and forth.

"), + QtCore.QCoreApplication.translate("About", "

Learn the keyboard shortcuts! Laborejo is designed to work with the keyboard alone and with midi instruments for full speed.

Everytime you grab your mouse you loose concentration, precision and time."), + QtCore.QCoreApplication.translate("About", "

Spread/shrink the space between notes with Ctrl+Mousewheel or Ctrl with Plus and Minus.

Full zoom by additionaly holding the Shift key.

"), + QtCore.QCoreApplication.translate("About", "

Click with the left mouse button to set the cursor to that position. Hold Shift to create a selection.

"), + QtCore.QCoreApplication.translate("About", "

Most commands can be applied to single notes and selections equally.

Use Shift + movement-keys to create selections.

"), + QtCore.QCoreApplication.translate("About", "

Blocks and Tracks can be moved in Block-View Mode [F6]. Use Shift+Middle Mouse Button to move blocks and Alt+Middle to reorder tracks.

"), + QtCore.QCoreApplication.translate("About", "

There are no empty measures/bars.

Use Multi Measure Rests[R] instead. You need to have a metrical instruction for that [M].

"), + QtCore.QCoreApplication.translate("About", "

Many Music Items like clefs can only be inserted, not edited. They are however such simplistic that delete-and-reinsert is equally time-efficient.

"), + QtCore.QCoreApplication.translate("About", "

All notes should be considered non-transposing. Treat everything as 'in C'.

That said, there is a semitone transposition in the Track Properties [Ctrl+T].

"), + QtCore.QCoreApplication.translate("About", "

Upbeats/anacrusis can be set per-track in the Track Properties [Ctrl+T].

"), + QtCore.QCoreApplication.translate("About", "

There is no key-rebinding except numpad-shortcuts.

"), + QtCore.QCoreApplication.translate("About", "

Hidden tracks still output sound.

"), + QtCore.QCoreApplication.translate("About", "

Non-audible tracks still output instrument changes and CCs so that they can be switched on again in the middle of playback.

"), ] + About.didYouKnow super().__init__()