From bf26258690af9e23318fe8829a5d18c1f670e009 Mon Sep 17 00:00:00 2001 From: Orcan Ogetbil Date: Wed, 22 Dec 2010 08:15:59 +0000 Subject: Capitalizations in the menus (patch from Geoff King) and some minor cosmetics. --- muse2/ChangeLog | 4 ++++ muse2/muse/app.cpp | 27 ++++++++++++++++++--------- muse2/share/CMakeLists.txt | 3 +++ muse2/share/locale/muse_de.ts | 14 +++++++------- muse2/share/locale/muse_es.ts | 14 +++++++------- muse2/share/locale/muse_fr.ts | 14 +++++++------- muse2/share/locale/muse_pl.ts | 14 +++++++------- muse2/share/locale/muse_ru.ts | 14 +++++++------- muse2/share/locale/muse_sv_SE.ts | 14 +++++++------- 9 files changed, 67 insertions(+), 51 deletions(-) (limited to 'muse2') diff --git a/muse2/ChangeLog b/muse2/ChangeLog index 03076767..b4deb554 100644 --- a/muse2/ChangeLog +++ b/muse2/ChangeLog @@ -1,3 +1,7 @@ +22.12.2010: + - Capitalizations in the menus thanks to Geoff King (gsking1->gmail. com) + - Added some comments in app.cpp that I've been willing to include for a while. (Orcan) + - Added a line to CMakeLists to install the splash image. Commented out for now. (Orcan) 21.12.2010: - Moved all the config files "~/.musePrj, ~/.MusE, ~/.deicsonze.dco" into ~/.config/MusE/ and renamed them as "projects, MusE.cfg, deicsonze.dco", respectively. (Orcan) diff --git a/muse2/muse/app.cpp b/muse2/muse/app.cpp index d53ed033..6e356a18 100644 --- a/muse2/muse/app.cpp +++ b/muse2/muse/app.cpp @@ -1038,20 +1038,20 @@ MusE::MusE(int argc, char** argv) : QMainWindow() //-------- Settings Actions settingsGlobalAction = new QAction(QIcon(*settings_globalsettingsIcon), tr("Global Settings"), this); - settingsShortcutsAction = new QAction(QIcon(*settings_configureshortcutsIcon), tr("Configure shortcuts"), this); - follow = new QMenu(tr("follow song"), this); - dontFollowAction = new QAction(tr("dont follow Song"), this); + settingsShortcutsAction = new QAction(QIcon(*settings_configureshortcutsIcon), tr("Configure Shortcuts"), this); + follow = new QMenu(tr("Follow Song"), this); + dontFollowAction = new QAction(tr("Don't Follow Song"), this); dontFollowAction->setCheckable(true); - followPageAction = new QAction(tr("follow page"), this); + followPageAction = new QAction(tr("Follow Page"), this); followPageAction->setCheckable(true); followPageAction->setChecked(true); - followCtsAction = new QAction(tr("follow continuous"), this); + followCtsAction = new QAction(tr("Follow Continuous"), this); followCtsAction->setCheckable(true); settingsMetronomeAction = new QAction(QIcon(*settings_metronomeIcon), tr("Metronome"), this); settingsMidiSyncAction = new QAction(QIcon(*settings_midisyncIcon), tr("Midi Sync"), this); settingsMidiIOAction = new QAction(QIcon(*settings_midifileexportIcon), tr("Midi File Import/Export"), this); - settingsAppearanceAction = new QAction(QIcon(*settings_appearance_settingsIcon), tr("Appearance settings"), this); + settingsAppearanceAction = new QAction(QIcon(*settings_appearance_settingsIcon), tr("Appearance Settings"), this); settingsMidiPortAction = new QAction(QIcon(*settings_midiport_softsynthsIcon), tr("Midi Ports / Soft Synth"), this); //-------- Help Actions @@ -1061,7 +1061,8 @@ MusE::MusE(int argc, char** argv) : QMainWindow() helpAboutAction = new QAction(tr("&About MusE"), this); - // Connections + //---- Connections + //-------- File connections connect(fileNewAction, SIGNAL(activated()), SLOT(loadTemplate())); connect(fileOpenAction, SIGNAL(activated()), SLOT(loadProject())); @@ -1077,7 +1078,8 @@ MusE::MusE(int argc, char** argv) : QMainWindow() connect(fileImportWaveAction, SIGNAL(activated()), SLOT(importWave())); connect(quitAction, SIGNAL(activated()), SLOT(quitDoc())); - + + //-------- Edit connections connect(editCutAction, SIGNAL(triggered()), editSignalMapper, SLOT(map())); connect(editCopyAction, SIGNAL(triggered()), editSignalMapper, SLOT(map())); connect(editPasteAction, SIGNAL(triggered()), editSignalMapper, SLOT(map())); @@ -1087,7 +1089,7 @@ MusE::MusE(int argc, char** argv) : QMainWindow() connect(editPasteC2TAction, SIGNAL(triggered()), editSignalMapper, SLOT(map())); connect(editInsertEMAction, SIGNAL(triggered()), editSignalMapper, SLOT(map())); connect(editDeleteSelectedAction, SIGNAL(triggered()), editSignalMapper, SLOT(map())); - + connect(editSelectAllAction, SIGNAL(triggered()), editSignalMapper, SLOT(map())); connect(editDeselectAllAction, SIGNAL(triggered()), editSignalMapper, SLOT(map())); connect(editInvertSelectionAction, SIGNAL(triggered()), editSignalMapper, SLOT(map())); @@ -1126,6 +1128,7 @@ MusE::MusE(int argc, char** argv) : QMainWindow() connect(editSongInfoAction, SIGNAL(activated()), SLOT(startSongInfo())); + //-------- View connections connect(viewTransportAction, SIGNAL(toggled(bool)), SLOT(toggleTransport(bool))); connect(viewBigtimeAction, SIGNAL(toggled(bool)), SLOT(toggleBigTime(bool))); connect(viewMixerAAction, SIGNAL(toggled(bool)),SLOT(toggleMixer1(bool))); @@ -1133,12 +1136,14 @@ MusE::MusE(int argc, char** argv) : QMainWindow() connect(viewCliplistAction, SIGNAL(toggled(bool)), SLOT(startClipList(bool))); connect(viewMarkerAction, SIGNAL(toggled(bool)), SLOT(toggleMarker(bool))); + //-------- Structure connections connect(strGlobalCutAction, SIGNAL(activated()), SLOT(globalCut())); connect(strGlobalInsertAction, SIGNAL(activated()), SLOT(globalInsert())); connect(strGlobalSplitAction, SIGNAL(activated()), SLOT(globalSplit())); connect(strCopyRangeAction, SIGNAL(activated()), SLOT(copyRange())); connect(strCutEventsAction, SIGNAL(activated()), SLOT(cutEvents())); + //-------- Midi connections connect(midiEditInstAction, SIGNAL(activated()), SLOT(startEditInstrument())); connect(midiResetInstAction, SIGNAL(activated()), SLOT(resetMidiDevices())); connect(midiInitInstActions, SIGNAL(activated()), SLOT(initMidiDevices())); @@ -1161,14 +1166,17 @@ MusE::MusE(int argc, char** argv) : QMainWindow() connect(midiPluginSignalMapper, SIGNAL(mapped(int)), this, SLOT(startMidiInputPlugin(int))); + //-------- Audio connections connect(audioBounce2TrackAction, SIGNAL(activated()), SLOT(bounceToTrack())); connect(audioBounce2FileAction, SIGNAL(activated()), SLOT(bounceToFile())); connect(audioRestartAction, SIGNAL(activated()), SLOT(seqRestart())); + //-------- Automation connections connect(autoMixerAction, SIGNAL(activated()), SLOT(switchMixerAutomation())); connect(autoSnapshotAction, SIGNAL(activated()), SLOT(takeAutomationSnapshot())); connect(autoClearAction, SIGNAL(activated()), SLOT(clearAutomation())); + //-------- Settings connections connect(settingsGlobalAction, SIGNAL(activated()), SLOT(configGlobalSettings())); connect(settingsShortcutsAction, SIGNAL(activated()), SLOT(configShortCuts())); connect(settingsMetronomeAction, SIGNAL(activated()), SLOT(configMetronome())); @@ -1187,6 +1195,7 @@ MusE::MusE(int argc, char** argv) : QMainWindow() connect(followSignalMapper, SIGNAL(mapped(int)), this, SLOT(cmd(int))); + //-------- Help connections connect(helpManualAction, SIGNAL(activated()), SLOT(startHelpBrowser())); connect(helpHomepageAction, SIGNAL(activated()), SLOT(startHomepageBrowser())); connect(helpReportAction, SIGNAL(activated()), SLOT(startBugBrowser())); diff --git a/muse2/share/CMakeLists.txt b/muse2/share/CMakeLists.txt index c8d89cf9..aeb7e4a1 100644 --- a/muse2/share/CMakeLists.txt +++ b/muse2/share/CMakeLists.txt @@ -32,3 +32,6 @@ subdirs( locale ) +# We don't have a splash image for MusE2 yet. When we do, the +# following line can be uncommented: +#install (FILES splash.png DESTINATION ${MusE_SHARE_DIR} ) diff --git a/muse2/share/locale/muse_de.ts b/muse2/share/locale/muse_de.ts index 81567349..4e547b20 100644 --- a/muse2/share/locale/muse_de.ts +++ b/muse2/share/locale/muse_de.ts @@ -425,7 +425,7 @@ Word-breaking but only with spaces. AppearanceDialogBase - MusE: Appearance settings + MusE: Appearance Settings MusE: Erscheinungsbild einstellen @@ -6951,15 +6951,15 @@ Zur Aufnahme können mehrere Kanäle gewählt werden: Zeitanzeige groß - dont follow Song + Don't Follow Song Fenster folgt nicht dem Lied - follow page + Follow Page Fenster folgt dem Lied seitenweise - follow continuous + Follow Continuous Fenster folgt dem Lied ständig @@ -6967,7 +6967,7 @@ Zur Aufnahme können mehrere Kanäle gewählt werden: Globale Einstellungen - follow song + Follow Song Folge dem Lied @@ -6979,7 +6979,7 @@ Zur Aufnahme können mehrere Kanäle gewählt werden: Midi Sync - Appearance settings + Appearance Settings Erscheinungsbild einstellen @@ -7331,7 +7331,7 @@ Wave Spur als Zielspur auswählen Einstellungen - Configure shortcuts + Configure Shortcuts Tastenkürzel einstellen diff --git a/muse2/share/locale/muse_es.ts b/muse2/share/locale/muse_es.ts index 3addbc56..350e2595 100644 --- a/muse2/share/locale/muse_es.ts +++ b/muse2/share/locale/muse_es.ts @@ -446,7 +446,7 @@ Word-breaking but only with spaces. AppearanceDialogBase - MusE: Appearance settings + MusE: Appearance Settings MusE: Configuraci� de apariencia @@ -7386,15 +7386,15 @@ Puedes especificar m� de un canal para grabar: ventana BigTime - dont follow Song + Don't Follow Song no sigas la canci� - follow page + Follow Page sigue la p�ina - follow continuous + Follow Continuous sigue cont�uamente @@ -7406,7 +7406,7 @@ Puedes especificar m� de un canal para grabar: Selecciones Globales - follow song + Follow Song seguir canci� @@ -7422,7 +7422,7 @@ Puedes especificar m� de un canal para grabar: Configuraci� de archivos MIDI - Appearance settings + Appearance Settings Selecciones de apariencia @@ -7850,7 +7850,7 @@ selecciona una pista de audio como destino - Configure shortcuts + Configure Shortcuts diff --git a/muse2/share/locale/muse_fr.ts b/muse2/share/locale/muse_fr.ts index af64bc63..ac6e993c 100644 --- a/muse2/share/locale/muse_fr.ts +++ b/muse2/share/locale/muse_fr.ts @@ -474,7 +474,7 @@ Word-breaking but only with spaces. AppearanceDialogBase - MusE: Appearance settings + MusE: Appearance Settings MusE: réglages de l'apparence @@ -7237,15 +7237,15 @@ pour l'enregistrement: Fenêtre GrandeHorloge - dont follow Song + Don't Follow Song Ne pas suivre la chanson - follow page + Follow Page Défilement par page - follow continuous + Follow Continuous Défilement fin @@ -7257,7 +7257,7 @@ pour l'enregistrement: Paramètres Généraux - follow song + Follow Song suivre la chanson @@ -7273,7 +7273,7 @@ pour l'enregistrement: Paramètres du fichier MIDI - Appearance settings + Appearance Settings Apparence @@ -7755,7 +7755,7 @@ destination - Configure shortcuts + Configure Shortcuts diff --git a/muse2/share/locale/muse_pl.ts b/muse2/share/locale/muse_pl.ts index 47038827..1cf5d7e2 100644 --- a/muse2/share/locale/muse_pl.ts +++ b/muse2/share/locale/muse_pl.ts @@ -439,7 +439,7 @@ Word-breaking but only with spaces. AppearanceDialogBase - MusE: Appearance settings + MusE: Appearance Settings MuzA: Wygląd aplikacji. @@ -6959,15 +6959,15 @@ Możesz określić więcej niż jeden ślad do nagrywania: Duży Zegar - dont follow Song + Don't Follow Song nie podążaj za utworem - follow page + Follow Page kursor się przesuwa - follow continuous + Follow Continuous takty się przesuwają (kursor stoi) @@ -6975,7 +6975,7 @@ Możesz określić więcej niż jeden ślad do nagrywania: Globalne Ustawienia - follow song + Follow Song podążanie kursora za utworem @@ -6987,7 +6987,7 @@ Możesz określić więcej niż jeden ślad do nagrywania: Synchronizacja Midi - Appearance settings + Appearance Settings Ustawienia wyglądu @@ -7340,7 +7340,7 @@ zaznacz ślad audio jako docelowy &Ustawienia - Configure shortcuts + Configure Shortcuts Konfiguracja skrótów diff --git a/muse2/share/locale/muse_ru.ts b/muse2/share/locale/muse_ru.ts index 9264bb8e..a579fd65 100644 --- a/muse2/share/locale/muse_ru.ts +++ b/muse2/share/locale/muse_ru.ts @@ -449,7 +449,7 @@ Word-breaking but only with spaces. AppearanceDialogBase - MusE: Appearance settings + MusE: Appearance Settings MusE: Настройки вида @@ -7351,15 +7351,15 @@ recording: Окно хронометра - dont follow Song + Don't Follow Song не следовать за проектом - follow page + Follow Page следовать постранично - follow continuous + Follow Continuous следовать плавно @@ -7367,7 +7367,7 @@ recording: Общие настройки - follow song + Follow Song следовать за проектом @@ -7379,7 +7379,7 @@ recording: MIDI-синхр - Appearance settings + Appearance Settings Настройки вида @@ -7574,7 +7574,7 @@ Save Current Project? Настройки - Configure shortcuts + Configure Shortcuts Настроить горячие клавиши diff --git a/muse2/share/locale/muse_sv_SE.ts b/muse2/share/locale/muse_sv_SE.ts index 4ae7dfc0..29eab8e5 100644 --- a/muse2/share/locale/muse_sv_SE.ts +++ b/muse2/share/locale/muse_sv_SE.ts @@ -464,7 +464,7 @@ Word-breaking but only with spaces. AppearanceDialogBase - MusE: Appearance settings + MusE: Appearance Settings MusE: Utseendeinställningar @@ -7373,15 +7373,15 @@ inspelning: Bigtime fönster - dont follow Song + Don't Follow Song följ inte Sång - follow page + Follow Page följ sida - follow continuous + Follow Continuous följ kontinuerligt @@ -7393,7 +7393,7 @@ inspelning: Globala Inställningar - follow song + Follow Song följ sång @@ -7409,7 +7409,7 @@ inspelning: Midi Filkonfigurering - Appearance settings + Appearance Settings Utseendeinställningar @@ -7651,7 +7651,7 @@ Spara nuvarande Projekt? Inställningar - Configure shortcuts + Configure Shortcuts Konfigurera kortkommandon -- cgit v1.2.3