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".
This commit is contained in:
Humdinger
2012-12-12 18:50:13 +01:00
parent f7c33e7ff9
commit 748378c826
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -75,8 +75,8 @@ AppearancePrefView::AppearancePrefView(const char* name,
const char* kColorTable[] = { const char* kColorTable[] = {
B_TRANSLATE("Text"), B_TRANSLATE("Text"),
B_TRANSLATE("Background"), B_TRANSLATE("Background"),
B_TRANSLATE("Cursor text"), B_TRANSLATE("Cursor"),
B_TRANSLATE("Cursor background"), B_TRANSLATE("Text under cursor"),
B_TRANSLATE("Selected text"), B_TRANSLATE("Selected text"),
B_TRANSLATE("Selected background"), B_TRANSLATE("Selected background"),
NULL NULL
+2 -2
View File
@@ -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_FORE_COLOR = "Text";
static const char* const PREF_TEXT_BACK_COLOR = "Background"; 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_FORE_COLOR = "Text under cursor";
static const char* const PREF_CURSOR_BACK_COLOR = "Cursor background"; 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_FORE_COLOR = "Selected text";
static const char* const PREF_SELECT_BACK_COLOR = "Selected background"; static const char* const PREF_SELECT_BACK_COLOR = "Selected background";