mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Merge pull request #6159 from JosJuice/consistent-gui-strings
Make GUI strings more consistent
This commit is contained in:
@ -402,9 +402,9 @@ void MenuBar::AddMovieMenu()
|
||||
{
|
||||
auto* movie_menu = addMenu(tr("&Movie"));
|
||||
m_recording_start =
|
||||
AddAction(movie_menu, tr("Start Recording Input"), this, [this] { emit StartRecording(); });
|
||||
AddAction(movie_menu, tr("Start Re&cording Input"), this, [this] { emit StartRecording(); });
|
||||
m_recording_play =
|
||||
AddAction(movie_menu, tr("Play Input Recording..."), this, [this] { emit PlayRecording(); });
|
||||
AddAction(movie_menu, tr("P&lay Input Recording..."), this, [this] { emit PlayRecording(); });
|
||||
m_recording_stop = AddAction(movie_menu, tr("Stop Playing/Recording Input"), this,
|
||||
[this] { emit StopRecording(); });
|
||||
m_recording_export =
|
||||
@ -415,7 +415,7 @@ void MenuBar::AddMovieMenu()
|
||||
m_recording_stop->setEnabled(false);
|
||||
m_recording_export->setEnabled(false);
|
||||
|
||||
m_recording_read_only = movie_menu->addAction(tr("Read-Only Mode"));
|
||||
m_recording_read_only = movie_menu->addAction(tr("&Read-Only Mode"));
|
||||
m_recording_read_only->setCheckable(true);
|
||||
m_recording_read_only->setChecked(Movie::IsReadOnly());
|
||||
connect(m_recording_read_only, &QAction::toggled, [](bool value) { Movie::SetReadOnly(value); });
|
||||
|
Reference in New Issue
Block a user