[haiku-commits] haiku: hrev45001 - in src: apps/terminal preferences/sounds

  • From: humdingerb@xxxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Wed, 12 Dec 2012 19:01:10 +0100 (CET)

hrev45001 adds 2 changesets to branch 'master'
old head: a51eefdd081b909876a0f196d6af1d4819daee44
new head: 748378c82683178e55f06b4c2d711d4aea7a1b06
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=748378c+%5Ea51eefd

----------------------------------------------------------------------------

f7c33e7: Fixes case style of a label, "Sound file:"

748378c: Renamed cusor colour settings.
  
  "Cursor text" and "Cursor background" in the Color popup menu are
  a bit unintuitive. Changed to "Text under cursor" and "Cursor".

                                        [ Humdinger <humdingerb@xxxxxxxxx> ]

----------------------------------------------------------------------------

3 files changed, 6 insertions(+), 6 deletions(-)
src/apps/terminal/AppearPrefView.cpp | 4 ++--
src/apps/terminal/TermConst.h        | 4 ++--
src/preferences/sounds/HWindow.cpp   | 4 ++--

############################################################################

Commit:      f7c33e7ff9af71bdeefe9506bfbff7431e1df1ee
URL:         http://cgit.haiku-os.org/haiku/commit/?id=f7c33e7
Author:      Humdinger <humdingerb@xxxxxxxxx>
Date:        Wed Dec 12 17:33:05 2012 UTC

Fixes case style of a label, "Sound file:"

----------------------------------------------------------------------------

diff --git a/src/preferences/sounds/HWindow.cpp 
b/src/preferences/sounds/HWindow.cpp
index 13b8503..cf08aa0 100644
--- a/src/preferences/sounds/HWindow.cpp
+++ b/src/preferences/sounds/HWindow.cpp
@@ -110,8 +110,8 @@ HWindow::InitGUI()
        menu->AddItem(new BMenuItem(B_TRANSLATE("Other" B_UTF8_ELLIPSIS),
                new BMessage(M_OTHER_MESSAGE)));
        BMenuField* menuField = new BMenuField("filemenu",
-               B_TRANSLATE("Sound File:"), menu);
-       menuField->SetDivider(menuField->StringWidth(B_TRANSLATE("Sound File:"))
+               B_TRANSLATE("Sound file:"), menu);
+       menuField->SetDivider(menuField->StringWidth(B_TRANSLATE("Sound file:"))
                + 10);
 
        BButton* stopbutton = new BButton("stop", B_TRANSLATE("Stop"),

############################################################################

Revision:    hrev45001
Commit:      748378c82683178e55f06b4c2d711d4aea7a1b06
URL:         http://cgit.haiku-os.org/haiku/commit/?id=748378c
Author:      Humdinger <humdingerb@xxxxxxxxx>
Date:        Wed Dec 12 17:50:13 2012 UTC

Renamed cusor colour settings.

"Cursor text" and "Cursor background" in the Color popup menu are
a bit unintuitive. Changed to "Text under cursor" and "Cursor".

----------------------------------------------------------------------------

diff --git a/src/apps/terminal/AppearPrefView.cpp 
b/src/apps/terminal/AppearPrefView.cpp
index 78b0cfc..3c3d23b 100644
--- a/src/apps/terminal/AppearPrefView.cpp
+++ b/src/apps/terminal/AppearPrefView.cpp
@@ -75,8 +75,8 @@ AppearancePrefView::AppearancePrefView(const char* name,
        const char* kColorTable[] = {
                B_TRANSLATE("Text"),
                B_TRANSLATE("Background"),
-               B_TRANSLATE("Cursor text"),
-               B_TRANSLATE("Cursor background"),
+               B_TRANSLATE("Cursor"),
+               B_TRANSLATE("Text under cursor"),
                B_TRANSLATE("Selected text"),
                B_TRANSLATE("Selected background"),
                NULL
diff --git a/src/apps/terminal/TermConst.h b/src/apps/terminal/TermConst.h
index 05174b1..c40872d 100644
--- a/src/apps/terminal/TermConst.h
+++ b/src/apps/terminal/TermConst.h
@@ -103,8 +103,8 @@ static const char* const PREF_HALF_FONT_SIZE = "Half Font 
Size";
 
 static const char* const PREF_TEXT_FORE_COLOR = "Text";
 static const char* const PREF_TEXT_BACK_COLOR = "Background";
-static const char* const PREF_CURSOR_FORE_COLOR = "Cursor text";
-static const char* const PREF_CURSOR_BACK_COLOR = "Cursor background";
+static const char* const PREF_CURSOR_FORE_COLOR = "Text under cursor";
+static const char* const PREF_CURSOR_BACK_COLOR = "Cursor";
 static const char* const PREF_SELECT_FORE_COLOR = "Selected text";
 static const char* const PREF_SELECT_BACK_COLOR = "Selected background";
 


Other related posts: