Improved strings.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35225 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2010-01-21 15:26:55 +00:00
parent b14896ee8d
commit 14c09c6029
1 changed files with 10 additions and 9 deletions

View File

@ -214,22 +214,23 @@ BootPromptWindow::_InitCatalog(bool saveSettings)
void
BootPromptWindow::_UpdateStrings()
{
SetTitle(TR("Welcome to Haiku"));
SetTitle(TR("Welcome to Haiku!"));
const char* infoText = TR(
"Welcome to Haiku!\n\n"
"Do you wish to run the Installer or continue booting to the "
"Desktop? You can also select your preferred language and keyboard "
"layout from the list below.\n\n"
"Do you wish to want to run the Installer or continue booting "
"to the Desktop?\n\n"
"Please select your preferred language and keyboard layout from "
"the list below."
"Note: Localization of Haiku applications and other components is "
"an on-going effort. You will frequently encounter untranslated "
"strings, but if you like, you can join in the work at "
"<www.haiku-os.org>."
);
fInfoTextView->SetText(infoText);
fDesktopButton->SetLabel(TR("Desktop"));
fInstallerButton->SetLabel(TR("Installer"));
fDesktopButton->SetLabel(TR("Desktop (Live-CD)"));
fInstallerButton->SetLabel(TR("Run Installer"));
fLanguagesLabelView->SetText(TR("Language"));
fKeymapsLabelView->SetText(TR("Keymap"));