diff options
author | Milan Crha <mcrha@redhat.com> | 2010-04-02 03:40:19 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-04-02 03:40:19 +0800 |
commit | b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6 (patch) | |
tree | c931eb292f3610cb9c5687260d56b660db176d47 /widgets/misc/e-paned.c | |
parent | 125573b8fd62f4d0d38907c95c70168ca984d3c4 (diff) | |
download | gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.tar.gz gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.tar.zst gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.zip |
Bug #325121 - Do not translate developer strings in g_param_spec_*
Diffstat (limited to 'widgets/misc/e-paned.c')
-rw-r--r-- | widgets/misc/e-paned.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/widgets/misc/e-paned.c b/widgets/misc/e-paned.c index 2b4701b9ff..3f8b57011a 100644 --- a/widgets/misc/e-paned.c +++ b/widgets/misc/e-paned.c @@ -303,8 +303,8 @@ paned_class_init (EPanedClass *class) PROP_HPOSITION, g_param_spec_int ( "hposition", - _("Horizontal Position"), - _("Pane position when oriented horizontally"), + "Horizontal Position", + "Pane position when oriented horizontally", G_MININT, G_MAXINT, 0, @@ -315,8 +315,8 @@ paned_class_init (EPanedClass *class) PROP_VPOSITION, g_param_spec_int ( "vposition", - _("Vertical Position"), - _("Pane position when oriented vertically"), + "Vertical Position", + "Pane position when oriented vertically", G_MININT, G_MAXINT, 0, @@ -327,8 +327,8 @@ paned_class_init (EPanedClass *class) PROP_PROPORTION, g_param_spec_double ( "proportion", - _("Proportion"), - _("Proportion of the 2nd pane size"), + "Proportion", + "Proportion of the 2nd pane size", 0.0, 1.0, 0.0, @@ -339,8 +339,8 @@ paned_class_init (EPanedClass *class) PROP_FIXED_RESIZE, g_param_spec_boolean ( "fixed-resize", - _("Fixed Resize"), - _("Keep the 2nd pane fixed during resize"), + "Fixed Resize", + "Keep the 2nd pane fixed during resize", TRUE, G_PARAM_READWRITE)); } |