diff options
| author | JosJuice <josjuice@gmail.com> | 2025-06-22 11:51:57 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2025-06-28 21:41:44 +0200 |
| commit | bc1d8ffcbbefe61a4527dbb797418b8792304d13 (patch) | |
| tree | 0c750c428a0abd9efa4015f536818e220420b993 | |
| parent | c2aaca2b16d722686070840f0766398005e7a7f4 (diff) | |
i18n: Add comments
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp | 1 | ||||
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/EditSymbolDialog.cpp | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp index 3aeda0efe7..09b045688c 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp @@ -272,6 +272,7 @@ void BreakpointWidget::Update() m_table->clear(); 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("Write"), tr("Condition")}); m_table->horizontalHeader()->setStretchLastSection(true); diff --git a/Source/Core/DolphinQt/Debugger/EditSymbolDialog.cpp b/Source/Core/DolphinQt/Debugger/EditSymbolDialog.cpp index b0ecb32797..1a143b7a4e 100644 --- a/Source/Core/DolphinQt/Debugger/EditSymbolDialog.cpp +++ b/Source/Core/DolphinQt/Debugger/EditSymbolDialog.cpp @@ -37,8 +37,13 @@ void EditSymbolDialog::CreateWidgets() m_name_edit->setPlaceholderText(tr("%1 name").arg(m_type)); auto* size_layout = new QHBoxLayout; + // i18n: The address where a symbol ends QLabel* address_end_label = new QLabel(tr("End Address")); + // i18n: The number of lines of code 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")); m_address_end_edit = new QLineEdit(); m_size_lines_spin = new QSpinBox(); |
