From 6449e3ee5c46fe66d28b58d07494b0bbd0998b30 Mon Sep 17 00:00:00 2001 From: Michael Pfeiffer Date: Sun, 7 Mar 2010 12:46:03 +0000 Subject: [PATCH] Corrected copy&paster error. The "Uninstall" option contained the same text as the "Install" option. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35773 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/bootman/EntryPage.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/apps/bootman/EntryPage.cpp b/src/apps/bootman/EntryPage.cpp index da56100f33..3df3be5bc9 100644 --- a/src/apps/bootman/EntryPage.cpp +++ b/src/apps/bootman/EntryPage.cpp @@ -82,11 +82,9 @@ EntryPage::_BuildUI() text.Truncate(0); text << - TR("Install boot menu") << "\n\n" << - TR("Choose this option to install a boot menu, " - "allowing you to select which operating " - "system to boot when you turn on your " - "computer.") << "\n"; + TR("Uninstall boot menu") << "\n\n" << + TR("Choose this option to remove the boot menu " + "previously installed by this program.\n"); fUninstallText = CreateDescription(textRect, "uninstallText", text); MakeHeading(fUninstallText); AddChild(fUninstallText);