diff options
author | onestone <onestone@d7aaf104-2d23-0410-ae22-9d23157bf5a3> | 2007-01-31 20:38:14 +0000 |
---|---|---|
committer | onestone <onestone@d7aaf104-2d23-0410-ae22-9d23157bf5a3> | 2007-01-31 20:38:14 +0000 |
commit | 90420756939dfb2303486f066819e14f3ee6ec6d (patch) | |
tree | c49de26e09b587276f72605e9d51bbf1cc3dea22 /beryl-plugins/src/move.c | |
parent | 6810d94177021583d5fd07cfe445e60b049b1295 (diff) | |
download | marex-dev-90420756939dfb2303486f066819e14f3ee6ec6d.tar.gz marex-dev-90420756939dfb2303486f066819e14f3ee6ec6d.tar.bz2 |
beryl-plugins(-extra): applied #1074 and #1077
git-svn-id: file:///beryl/trunk@3500 d7aaf104-2d23-0410-ae22-9d23157bf5a3
Diffstat (limited to 'beryl-plugins/src/move.c')
-rw-r--r-- | beryl-plugins/src/move.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/beryl-plugins/src/move.c b/beryl-plugins/src/move.c index 64c8879..398bd2c 100644 --- a/beryl-plugins/src/move.c +++ b/beryl-plugins/src/move.c @@ -698,7 +698,7 @@ static void moveDisplayInitOptions(MoveDisplay * md) o->subGroup = N_("Move window"); o->displayHints = ""; o->shortDesc = N_("Initiate Window Move"); - o->longDesc = N_("Start moving window"); + o->longDesc = N_("Start moving Window."); o->type = CompOptionTypeAction; o->value.action.initiate = moveInitiate; o->value.action.terminate = moveTerminate; @@ -719,10 +719,10 @@ static void moveDisplayInitOptions(MoveDisplay * md) o->group = N_("Appearance"); o->subGroup = N_("Opacity"); o->displayHints = ""; - o->shortDesc = N_("Minimum opacity for opacify"); + o->shortDesc = N_("Minimum Opacity for Opacify"); o->longDesc = N_ - ("Opacify only windows whose opacity is higher than this value"); + ("Opacify only windows whose Opacity is higher than this value."); o->type = CompOptionTypeInt; o->value.i = MOVE_OPACIFY_MIN_OPACITY_DEFAULT; o->rest.i.min = MOVE_OPACIFY_MIN_OPACITY_MIN; @@ -735,7 +735,7 @@ static void moveDisplayInitOptions(MoveDisplay * md) o->subGroup = N_("Opacity"); o->displayHints = ""; o->shortDesc = N_("Opacity"); - o->longDesc = N_("Opacity level of moving windows"); + o->longDesc = N_("Opacity level of Moving windows."); o->type = CompOptionTypeInt; o->value.i = MOVE_OPACITY_DEFAULT; o->rest.i.min = MOVE_OPACITY_MIN; @@ -747,9 +747,9 @@ static void moveDisplayInitOptions(MoveDisplay * md) o->group = N_("Misc. options"); o->subGroup = N_("Movement constraints"); o->displayHints = ""; - o->shortDesc = N_("Constrain Y to top of screen"); + o->shortDesc = N_("Constrain Y to Top of Screen"); o->longDesc = - N_("Prevent windows from moving over the top of the screen"); + N_("Prevent windows from Moving over the Top of the Screen."); o->type = CompOptionTypeBool; o->value.b = MOVE_CONSTRAIN_Y_TOP_DEFAULT; @@ -759,9 +759,9 @@ static void moveDisplayInitOptions(MoveDisplay * md) o->group = N_("Misc. options"); o->subGroup = N_("Movement constraints"); o->displayHints = ""; - o->shortDesc = N_("Constrain Y to bottom"); + o->shortDesc = N_("Constrain Y to Bottom of Screen"); o->longDesc = - N_("Prevent windows from moving past the bottom of the screen"); + N_("Prevent windows from Moving past the Bottom of the Screen."); o->type = CompOptionTypeBool; o->value.b = MOVE_CONSTRAIN_Y_BOTTOM_DEFAULT; @@ -772,9 +772,9 @@ static void moveDisplayInitOptions(MoveDisplay * md) o->group = N_("Misc. options"); o->subGroup = N_("Snapoff/snapback"); o->displayHints = ""; - o->shortDesc = N_("Snapoff maximized windows"); - o->longDesc = N_("Snap off and unmaximize maximized windows " - "when dragging"); + o->shortDesc = N_("Snapoff Maximized Windows"); + o->longDesc = N_("Snap off and unMaximize Maximized Windows " + "when dragging."); o->type = CompOptionTypeBool; o->value.b = MOVE_SNAPOFF_MAXIMIZED_DEFAULT; @@ -784,9 +784,9 @@ static void moveDisplayInitOptions(MoveDisplay * md) o->group = N_("Misc. options"); o->subGroup = N_("Snapoff/snapback"); o->displayHints = ""; - o->shortDesc = N_("Snapoff distance"); + o->shortDesc = N_("Snapoff Distance"); o->longDesc = - N_("Pointer movement distance after which window is snapped off"); + N_("Pointer movement Distance after which window is Snapped off."); o->type = CompOptionTypeInt; o->value.i = MOVE_SNAPOFF_DISTANCE_DEFAULT; o->rest.i.min = MOVE_SNAPOFF_DISTANCE_MIN; @@ -798,8 +798,8 @@ static void moveDisplayInitOptions(MoveDisplay * md) o->group = N_("Misc. options"); o->subGroup = N_("Snapoff/snapback"); o->displayHints = ""; - o->shortDesc = N_("Snapback distance"); - o->longDesc = N_("Pointer movement distance to snap window back"); + o->shortDesc = N_("Snapback Distance"); + o->longDesc = N_("Pointer movement Distance to Snap window back."); o->type = CompOptionTypeInt; o->value.i = MOVE_SNAPBACK_DISTANCE_DEFAULT; o->rest.i.min = MOVE_SNAPBACK_DISTANCE_MIN; |