mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
Minor fixes to translatable strings
The usual deduplication between DolphinWX and DolphinQt2, plus the removal of a now unused ubershader string and a fix for the Euphoria i18n comment.
This commit is contained in:
@ -73,7 +73,7 @@ void EnhancementsWidget::CreateWidgets()
|
||||
m_widescreen_hack = new GraphicsBool(tr("Widescreen Hack"), Config::GFX_WIDESCREEN_HACK);
|
||||
m_disable_fog = new GraphicsBool(tr("Disable Fog"), Config::GFX_DISABLE_FOG);
|
||||
m_force_24bit_color =
|
||||
new GraphicsBool(tr("Force 24-bit Color"), Config::GFX_ENHANCE_FORCE_TRUE_COLOR);
|
||||
new GraphicsBool(tr("Force 24-Bit Color"), Config::GFX_ENHANCE_FORCE_TRUE_COLOR);
|
||||
|
||||
enhancements_layout->addWidget(new QLabel(tr("Internal Resolution:")), 0, 0);
|
||||
enhancements_layout->addWidget(m_ir_combo, 0, 1, 1, -1);
|
||||
|
@ -126,8 +126,17 @@ void MemoryWidget::CreateWidgets()
|
||||
auto* bp_layout = new QVBoxLayout;
|
||||
bp_group->setLayout(bp_layout);
|
||||
|
||||
m_bp_read_write = new QRadioButton(tr("Read and Write"));
|
||||
// i18n: This string is used for a radio button that represents the type of
|
||||
// memory breakpoint that gets triggered when a read operation or write operation occurs.
|
||||
// The string is not a command to read and write something or to allow reading and writing.
|
||||
m_bp_read_write = new QRadioButton(tr("Read and write"));
|
||||
// i18n: This string is used for a radio button that represents the type of
|
||||
// memory breakpoint that gets triggered when a read operation occurs.
|
||||
// The string does not mean "read-only" in the sense that something cannot be written to.
|
||||
m_bp_read_only = new QRadioButton(tr("Read only"));
|
||||
// i18n: This string is used for a radio button that represents the type of
|
||||
// memory breakpoint that gets triggered when a write operation occurs.
|
||||
// The string does not mean "write-only" in the sense that something cannot be read from.
|
||||
m_bp_write_only = new QRadioButton(tr("Write only"));
|
||||
m_bp_log_check = new QCheckBox(tr("Log"));
|
||||
|
||||
@ -536,7 +545,7 @@ void MemoryWidget::FindValue(bool next)
|
||||
|
||||
if (addr >= ram_size - search_for.size())
|
||||
{
|
||||
m_result_label->setText(tr("Address Out Of Range"));
|
||||
m_result_label->setText(tr("Address Out of Range"));
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -130,7 +130,7 @@ void MenuBar::OnDebugModeToggled(bool enabled)
|
||||
|
||||
void MenuBar::AddDVDBackupMenu(QMenu* file_menu)
|
||||
{
|
||||
m_backup_menu = file_menu->addMenu(tr("Boot from DVD Backup"));
|
||||
m_backup_menu = file_menu->addMenu(tr("&Boot from DVD Backup"));
|
||||
|
||||
const std::vector<std::string> drives = cdio_get_devices();
|
||||
// Windows Limitation of 24 character drives
|
||||
|
Reference in New Issue
Block a user