mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 21:30:19 -06:00
i18n: Add comments
This commit is contained in:
@ -272,6 +272,7 @@ void BreakpointWidget::Update()
|
|||||||
|
|
||||||
m_table->clear();
|
m_table->clear();
|
||||||
m_table->setHorizontalHeaderLabels({tr("Active"), tr("Type"), tr("Function"), tr("Address"),
|
m_table->setHorizontalHeaderLabels({tr("Active"), tr("Type"), tr("Function"), tr("Address"),
|
||||||
|
// i18n: The address where a breakpoint ends
|
||||||
tr("End Addr"), tr("Break"), tr("Log"), tr("Read"),
|
tr("End Addr"), tr("Break"), tr("Log"), tr("Read"),
|
||||||
tr("Write"), tr("Condition")});
|
tr("Write"), tr("Condition")});
|
||||||
m_table->horizontalHeader()->setStretchLastSection(true);
|
m_table->horizontalHeader()->setStretchLastSection(true);
|
||||||
|
@ -37,8 +37,13 @@ void EditSymbolDialog::CreateWidgets()
|
|||||||
m_name_edit->setPlaceholderText(tr("%1 name").arg(m_type));
|
m_name_edit->setPlaceholderText(tr("%1 name").arg(m_type));
|
||||||
|
|
||||||
auto* size_layout = new QHBoxLayout;
|
auto* size_layout = new QHBoxLayout;
|
||||||
|
// i18n: The address where a symbol ends
|
||||||
QLabel* address_end_label = new QLabel(tr("End Address"));
|
QLabel* address_end_label = new QLabel(tr("End Address"));
|
||||||
|
// i18n: The number of lines of code
|
||||||
QLabel* size_lines_label = new QLabel(tr("Lines"));
|
QLabel* size_lines_label = new QLabel(tr("Lines"));
|
||||||
|
// i18n: There's a text field immediately to the right of this label where 8 hexadecimal digits
|
||||||
|
// can be entered. The "0x" in this string acts as a prefix to the digits to indicate that they
|
||||||
|
// are hexadecimal.
|
||||||
QLabel* size_hex_label = new QLabel(tr("Size: 0x"));
|
QLabel* size_hex_label = new QLabel(tr("Size: 0x"));
|
||||||
m_address_end_edit = new QLineEdit();
|
m_address_end_edit = new QLineEdit();
|
||||||
m_size_lines_spin = new QSpinBox();
|
m_size_lines_spin = new QSpinBox();
|
||||||
|
Reference in New Issue
Block a user