Qt: Update German translation and register widget help (based on the new UI) (#1544)

* Update duckstation-qt_de.ts

* Update biossettingswidget.cpp

* Update emulationsettingswidget.cpp

* Update advancedsettingswidget.cpp

* Update displaysettingswidget.cpp
This commit is contained in:
Max833
2021-01-31 16:11:49 +01:00
committed by GitHub
parent 260e39a516
commit bd43241f3e
5 changed files with 411 additions and 367 deletions

View File

@ -68,6 +68,14 @@ EmulationSettingsWidget::EmulationSettingsWidget(QtHostInterface* host_interface
"potentially increasing the emulation speed by less than 1%. Sync To Host Refresh Rate will not take effect if "
"the console's refresh rate is too far from the host's refresh rate. Users with variable refresh rate displays "
"should disable this option."));
dialog->registerWidgetHelp(
m_ui.rewindEnable, tr("Rewinding"), tr("Unchecked"),
tr("<b>Enable Rewinding:</b> Saves state periodically so you can rewind any mistakes while playing.<br> "
"<b>Rewind Save Frequency:</b> How often a rewind state will be created. Higher frequencies have greater system requirements.<br> "
"<b>Rewind Buffer Size:</b> How many saves will be kept for rewinding. Higher values have greater memory requirements."));
dialog->registerWidgetHelp(
m_ui.runaheadFrames, tr("Runahead"), tr("Disabled"),
tr("Simulates the system ahead of time and rolls back/replays to reduce input lag. Very high system requirements."));
updateRewind();
}