Mercurial > hg > sonic-visualiser
comparison main/MainWindow.cpp @ 1790:07bd0eaa8114
Note to translators not to translate "Space"
author | Chris Cannam |
---|---|
date | Tue, 24 Apr 2018 15:03:45 +0100 |
parents | 95248f6b9b1d |
children | 2f828631c9be |
comparison
equal
deleted
inserted
replaced
1789:9db7ad441ea6 | 1790:07bd0eaa8114 |
---|---|
2061 connect(this, SIGNAL(canRewind(bool)), m_rwdSimilarAction, SLOT(setEnabled(bool))); | 2061 connect(this, SIGNAL(canRewind(bool)), m_rwdSimilarAction, SLOT(setEnabled(bool))); |
2062 | 2062 |
2063 m_playAction = toolbar->addAction(il.load("playpause"), | 2063 m_playAction = toolbar->addAction(il.load("playpause"), |
2064 tr("Play / Pause")); | 2064 tr("Play / Pause")); |
2065 m_playAction->setCheckable(true); | 2065 m_playAction->setCheckable(true); |
2066 | |
2067 /*: This text is a shortcut label referring to the space-bar on | |
2068 the keyboard. It probably should not be translated, and | |
2069 certainly should not be translated as if referring to an empty | |
2070 void or to the extra-terrestrial universe. | |
2071 */ | |
2066 m_playAction->setShortcut(tr("Space")); | 2072 m_playAction->setShortcut(tr("Space")); |
2073 | |
2067 m_playAction->setStatusTip(tr("Start or stop playback from the current position")); | 2074 m_playAction->setStatusTip(tr("Start or stop playback from the current position")); |
2068 connect(m_playAction, SIGNAL(triggered()), this, SLOT(play())); | 2075 connect(m_playAction, SIGNAL(triggered()), this, SLOT(play())); |
2069 connect(m_playSource, SIGNAL(playStatusChanged(bool)), | 2076 connect(m_playSource, SIGNAL(playStatusChanged(bool)), |
2070 m_playAction, SLOT(setChecked(bool))); | 2077 m_playAction, SLOT(setChecked(bool))); |
2071 connect(m_playSource, SIGNAL(playStatusChanged(bool)), | 2078 connect(m_playSource, SIGNAL(playStatusChanged(bool)), |