diff options
author | Eike Ziller <[email protected]> | 2024-12-13 11:14:28 +0100 |
---|---|---|
committer | Eike Ziller <[email protected]> | 2025-01-06 13:53:53 +0000 |
commit | 705dcb17b8adad1b6fd78a02ccb1d0b1d0ca3ddd (patch) | |
tree | ad709bb875cbb7d4a710c5a136c991e818b9fd4c /src/plugins/nim | |
parent | b626da4e2c13f698e9930471edaa75a1cb5dbc48 (diff) |
Disambiguate translations for "None"
Translations can be different depending on context.
Give each usage a disambiguation text.
Task-number: QTCREATORBUG-31978
Change-Id: I44ac524d7448787360e825fad1d430ded3f07659
Reviewed-by: Christian Stenger <[email protected]>
Diffstat (limited to 'src/plugins/nim')
-rw-r--r-- | src/plugins/nim/project/nimcompilerbuildstep.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/nim/project/nimcompilerbuildstep.cpp b/src/plugins/nim/project/nimcompilerbuildstep.cpp index 8c2dfa67c40..ce820926bed 100644 --- a/src/plugins/nim/project/nimcompilerbuildstep.cpp +++ b/src/plugins/nim/project/nimcompilerbuildstep.cpp @@ -64,7 +64,7 @@ QWidget *NimCompilerBuildStep::createConfigWidget() commandTextEdit->setMinimumSize(QSize(0, 0)); auto defaultArgumentsComboBox = new QComboBox(widget); - defaultArgumentsComboBox->addItem(Tr::tr("None")); + defaultArgumentsComboBox->addItem(Tr::tr("None", "No default arguments")); defaultArgumentsComboBox->addItem(Tr::tr("Debug")); defaultArgumentsComboBox->addItem(Tr::tr("Release")); |