Skip to content

Commit 5b5f6a7

Browse files
committed
Translate enterprise channel explanation string.
Signed-off-by: Camila Ayres <[email protected]>
1 parent d77f71c commit 5b5f6a7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/gui/generalsettings.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -388,15 +388,16 @@ void GeneralSettings::slotUpdateChannelChanged()
388388
return;
389389
}
390390

391-
const auto enterprise = configFile.validUpdateChannels().contains("enterprise") ? "- enterprise: contains stable versions for customers.\n"
391+
const auto enterprise = configFile.validUpdateChannels().contains("enterprise") ? tr("- enterprise: contains stable versions for customers.\n",
392+
"description of enterprise update channel for enterprise customers")
392393
: "";
393394
auto msgBox = new QMessageBox(
394395
QMessageBox::Warning,
395396
tr("Changing update channel?"),
396397
tr("The channel determines which upgrades will be offered to install:\n"
397398
"- stable: contains tested versions considered reliable\n"
398399
"- beta: contains versions with new features that may not be tested thoroughly\n"
399-
"- daily: contains versions created daily only for testing and development\n\n"
400+
"- daily: contains versions created daily only for testing and development\n"
400401
"%1\n"
401402
"Downgrading versions is not possible immediately: changing from beta to stable means waiting for the new stable version.").arg(enterprise),
402403
QMessageBox::NoButton,

0 commit comments

Comments
 (0)