diff options
Diffstat (limited to 'scripts/kconfig/qconf.cc')
-rw-r--r-- | scripts/kconfig/qconf.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index a04e4517ead1..06dd2e33581d 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc | |||
@@ -1274,8 +1274,8 @@ ConfigMainWindow::ConfigMainWindow(void) | |||
1274 | char title[256]; | 1274 | char title[256]; |
1275 | 1275 | ||
1276 | QDesktopWidget *d = configApp->desktop(); | 1276 | QDesktopWidget *d = configApp->desktop(); |
1277 | snprintf(title, sizeof(title), _("Linux Kernel v%s Configuration%s"), | 1277 | snprintf(title, sizeof(title), "%s%s", |
1278 | getenv("KERNELVERSION"), | 1278 | rootmenu.prompt->text, |
1279 | #if QT_VERSION < 0x040000 | 1279 | #if QT_VERSION < 0x040000 |
1280 | " (Qt3)" | 1280 | " (Qt3)" |
1281 | #else | 1281 | #else |
@@ -1655,7 +1655,7 @@ void ConfigMainWindow::closeEvent(QCloseEvent* e) | |||
1655 | 1655 | ||
1656 | void ConfigMainWindow::showIntro(void) | 1656 | void ConfigMainWindow::showIntro(void) |
1657 | { | 1657 | { |
1658 | static const QString str = _("Welcome to the qconf graphical kernel configuration tool for Linux.\n\n" | 1658 | static const QString str = _("Welcome to the qconf graphical configuration tool.\n\n" |
1659 | "For each option, a blank box indicates the feature is disabled, a check\n" | 1659 | "For each option, a blank box indicates the feature is disabled, a check\n" |
1660 | "indicates it is enabled, and a dot indicates that it is to be compiled\n" | 1660 | "indicates it is enabled, and a dot indicates that it is to be compiled\n" |
1661 | "as a module. Clicking on the box will cycle through the three states.\n\n" | 1661 | "as a module. Clicking on the box will cycle through the three states.\n\n" |