forked from qt-creator/qt-creator
German translation: Debugger
Change-Id: Ib650492a2a1c5cc1e8e1dcf5fd87e0b638239a9d Reviewed-by: Robert Löhning <robert.loehning@qt.io> Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
@@ -77,10 +77,15 @@ DebuggerRunConfigurationAspect::DebuggerRunConfigurationAspect(Target *target)
|
||||
|
||||
const auto setSummaryText = [this, details] {
|
||||
const auto describe = [](const TriStateAspect &aspect, const QString &name) {
|
||||
if (aspect() == TriState::Enabled)
|
||||
if (aspect() == TriState::Enabled) {
|
||||
//: %1 is C++, QML, or Python
|
||||
return Tr::tr("Enable %1 debugger.").arg(name);
|
||||
if (aspect() == TriState::Disabled)
|
||||
}
|
||||
if (aspect() == TriState::Disabled) {
|
||||
//: %1 is C++, QML, or Python
|
||||
return Tr::tr("Disable %1 debugger.").arg(name);
|
||||
}
|
||||
//: %1 is C++, QML, or Python
|
||||
return Tr::tr("Try to determine need for %1 debugger.").arg(name);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user