summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2021-10-03 19:00:07 +0200
committerGitHub <noreply@github.com>2021-10-03 19:00:07 +0200
commit9dc6229705ac034166228708caaadd635ded2ae9 (patch)
tree10afd2df8adf212ac201620728140d82b9de740a
parent890a5ed99ad4130d68b3e7228c3398445c33cdc4 (diff)
parent8f9086f28a2bde55b0fd33154c072046d2a361b5 (diff)
Merge pull request #10148 from JosJuice/i18n-keep-addresses
DolphinQt: Add i18n comment for "Keep addresses where value in memory"
-rw-r--r--Source/Core/DolphinQt/CheatSearchWidget.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt/CheatSearchWidget.cpp b/Source/Core/DolphinQt/CheatSearchWidget.cpp
index 54bb058ce5..eed1c2a058 100644
--- a/Source/Core/DolphinQt/CheatSearchWidget.cpp
+++ b/Source/Core/DolphinQt/CheatSearchWidget.cpp
@@ -159,6 +159,11 @@ void CheatSearchWidget::CreateWidgets()
auto* value_layout = new QHBoxLayout();
+ // i18n: This label is followed by a dropdown where the user can select things like "is equal to"
+ // or "is less than or equal to", followed by another dropdown where the user can select "any
+ // value", "last value", or "this value:". These three UI elements are intended to form a sentence
+ // together. Because the UI elements can't be reordered by a translation, you may have to give
+ // up on the idea of having them form a sentence depending on the grammar of your target language.
auto* instructions_label = new QLabel(tr("Keep addresses where value in memory"));
value_layout->addWidget(instructions_label);