Renamed "Click to activate" to "Click to focus and raise". Jugding by #6421 and

the related ML thread, there seems to be more consensus with that wording.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39421 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matt Madia
2010-11-14 00:10:21 +00:00
parent 67fb47c908
commit fc07b8e222
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -155,7 +155,7 @@ MouseSettings::Dump()
char *mode = "unknown";
switch (fMode) {
case B_NORMAL_MOUSE:
mode = "click to activate";
mode = "click to focus and raise";
break;
case B_CLICK_TO_FOCUS_MOUSE:
mode = "click to focus";
+2 -2
View File
@@ -119,9 +119,9 @@ SettingsView::SettingsView(MouseSettings &settings)
fDoubleClick->SetAlignment(B_ALIGN_LEFT, B_ALIGN_CENTER);
// Add the "Mouse focus mode" pop up menu
fFocusMenu = new BPopUpMenu(B_TRANSLATE("Click to activate"));
fFocusMenu = new BPopUpMenu(B_TRANSLATE("Click to focus and raise"));
const char *focusLabels[] = {B_TRANSLATE_MARK("Click to activate"),
const char *focusLabels[] = {B_TRANSLATE_MARK("Click to focus and raise"),
B_TRANSLATE_MARK("Click to focus"),
B_TRANSLATE_MARK("Focus follows mouse")};
const mode_mouse focusModes[] = {B_NORMAL_MOUSE, B_CLICK_TO_FOCUS_MOUSE,