diff options
author | reggaemanu <reggaemanu@d7aaf104-2d23-0410-ae22-9d23157bf5a3> | 2006-11-05 18:13:44 +0000 |
---|---|---|
committer | reggaemanu <reggaemanu@d7aaf104-2d23-0410-ae22-9d23157bf5a3> | 2006-11-05 18:13:44 +0000 |
commit | 58badd1ead9ebc48a33735b1bdb35b502b2537ee (patch) | |
tree | 89a568295d7273e836ed9d1aef9454afa8b281af /beryl-plugins/src/rotate.c | |
parent | 6e1b12dc273c8600402e1b928a245b1f5c923835 (diff) | |
download | marex-dev-58badd1ead9ebc48a33735b1bdb35b502b2537ee.tar.gz marex-dev-58badd1ead9ebc48a33735b1bdb35b502b2537ee.tar.bz2 |
beryl-plugins: make all non-translatable strings translatable
git-svn-id: file:///beryl/trunk@1027 d7aaf104-2d23-0410-ae22-9d23157bf5a3
Diffstat (limited to 'beryl-plugins/src/rotate.c')
-rw-r--r-- | beryl-plugins/src/rotate.c | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/beryl-plugins/src/rotate.c b/beryl-plugins/src/rotate.c index 7604a8a..b6deda2 100644 --- a/beryl-plugins/src/rotate.c +++ b/beryl-plugins/src/rotate.c @@ -437,8 +437,8 @@ rotateScreenInitOptions (RotateScreen * rs) o = &rs->opt[ROTATE_SCREEN_OPTION_SNAP_BOTTOM]; o->name = "snap_bottom"; - o->shortDesc = "Snap To Bottom Face"; - o->longDesc = "Snap Cube Rotation to Bottom Face"; + o->shortDesc = N_("Snap To Bottom Face"); + o->longDesc = N_("Snap Cube Rotation to Bottom Face"); o->type = CompOptionTypeBool; o->value.b = ROTATE_SNAP_BOTTOM_DEFAULT; @@ -474,8 +474,8 @@ rotateScreenInitOptions (RotateScreen * rs) o = &rs->opt[ROTATE_SCREEN_OPTION_ZOOM]; o->name = "zoom"; - o->shortDesc = "Zoom"; - o->longDesc = "Distance desktop should be zoomed out while " "rotating"; + o->shortDesc = N_("Zoom"); + o->longDesc = N_("Distance desktop should be zoomed out while " "rotating"); o->type = CompOptionTypeFloat; o->value.f = ROTATE_ZOOM_DEFAULT; o->rest.f.min = ROTATE_ZOOM_MIN; @@ -484,22 +484,22 @@ rotateScreenInitOptions (RotateScreen * rs) o = &rs->opt[ROTATE_SCREEN_OPTION_ZOOM_BEFORE_ROTATE]; o->name = "zoom_before_rotate"; - o->shortDesc = "Zoom before rotate"; - o->longDesc = "Zoom out before doing rotation"; + o->shortDesc = N_("Zoom before rotate"); + o->longDesc = N_("Zoom out before doing rotation"); o->type = CompOptionTypeBool; o->value.b = ROTATE_ZOOM_BEFORE_ROTATE_DEFAULT; o = &rs->opt[ROTATE_SCREEN_OPTION_ZOOM_ONLY_ON_INITIATE]; o->name = "zoom_initiate_only"; - o->shortDesc = "Zoom only on initiate."; - o->longDesc = "Zoom out only when the 'Initiate' key/mouse combo is pressed."; + o->shortDesc = N_("Zoom only on initiate."); + o->longDesc = N_("Zoom out only when the 'Initiate' key/mouse combo is pressed."); o->type = CompOptionTypeBool; o->value.b = FALSE; o = &rs->opt[ROTATE_SCREEN_OPTION_WHEEL_ON_EDGES]; o->name = "wheel_on_edges"; - o->shortDesc = "Rotate with wheel near edges"; - o->longDesc = "Enable rotate through mouse wheel near screen edges"; + o->shortDesc = N_("Rotate with wheel near edges"); + o->longDesc = N_("Enable rotate through mouse wheel near screen edges"); o->type = CompOptionTypeBool; o->value.b = ROTATE_WHEEL_ON_EDGES_DEFAULT; @@ -2400,8 +2400,8 @@ rotateDisplayInitOptions (RotateDisplay * rd) o = &rd->opt[ROTATE_DISPLAY_OPTION_WHEELINGS]; o->name = "rotate_wheelings"; - o->shortDesc = "Mouse Wheel Scrolls for Rotation"; - o->longDesc = "Number of mouse wheel scrolls required for rotation"; + o->shortDesc = N_("Mouse Wheel Scrolls for Rotation"); + o->longDesc = N_("Number of mouse wheel scrolls required for rotation"); o->type = CompOptionTypeInt; o->value.i = ROTATE_WHEELINGS_DEFAULT; o->rest.i.min = ROTATE_WHEELINGS_MIN; @@ -2409,8 +2409,8 @@ rotateDisplayInitOptions (RotateDisplay * rd) o = &rd->opt[ROTATE_DISPLAY_OPTION_LEFT_WHEEL]; o->name = "rotate_left_wheel"; - o->shortDesc = "Rotate Left with Mouse Wheel"; - o->longDesc = "Rotate left with mouse wheel"; + o->shortDesc = N_("Rotate Left with Mouse Wheel"); + o->longDesc = N_("Rotate left with mouse wheel"); o->type = CompOptionTypeAction; o->value.action.initiate = rotateLeftWheel; o->value.action.terminate = 0; @@ -2423,8 +2423,8 @@ rotateDisplayInitOptions (RotateDisplay * rd) o = &rd->opt[ROTATE_DISPLAY_OPTION_RIGHT_WHEEL]; o->name = "rotate_right_wheel"; - o->shortDesc = "Rotate Right with Mouse Wheel"; - o->longDesc = "Rotate right with mouse wheel"; + o->shortDesc = N_("Rotate Right with Mouse Wheel"); + o->longDesc = N_("Rotate right with mouse wheel"); o->type = CompOptionTypeAction; o->value.action.initiate = rotateRightWheel; o->value.action.terminate = 0; @@ -2473,8 +2473,8 @@ rotateDisplayInitOptions (RotateDisplay * rd) o = &rd->opt[ROTATE_DISPLAY_OPTION_UP]; o->name = "rotate_up"; - o->shortDesc = "Rotate Up"; - o->longDesc = "Rotate up"; + o->shortDesc = N_("Rotate Up"); + o->longDesc = N_("Rotate up"); o->type = CompOptionTypeAction; o->value.action.initiate = rotateTop; o->value.action.terminate = 0; @@ -2491,8 +2491,8 @@ rotateDisplayInitOptions (RotateDisplay * rd) o = &rd->opt[ROTATE_DISPLAY_OPTION_DOWN]; o->name = "rotate_down"; - o->shortDesc = "Rotate Down"; - o->longDesc = "Rotate down"; + o->shortDesc = N_("Rotate Down"); + o->longDesc = N_("Rotate down"); o->type = CompOptionTypeAction; o->value.action.initiate = rotateDown; o->value.action.terminate = 0; |