aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/text/e-reflow.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2010-04-02 03:40:19 +0800
committerMilan Crha <mcrha@redhat.com>2010-04-02 03:40:19 +0800
commitb2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6 (patch)
treec931eb292f3610cb9c5687260d56b660db176d47 /widgets/text/e-reflow.c
parent125573b8fd62f4d0d38907c95c70168ca984d3c4 (diff)
downloadgsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.tar
gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.tar.gz
gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.tar.bz2
gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.tar.lz
gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.tar.xz
gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.tar.zst
gsoc2013-evolution-b2e7e4fedd23cf8ecff28b43e77d0d1c8ff398d6.zip
Bug #325121 - Do not translate developer strings in g_param_spec_*
Diffstat (limited to 'widgets/text/e-reflow.c')
-rw-r--r--widgets/text/e-reflow.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/widgets/text/e-reflow.c b/widgets/text/e-reflow.c
index 0ce3302da1..0e11047408 100644
--- a/widgets/text/e-reflow.c
+++ b/widgets/text/e-reflow.c
@@ -1409,43 +1409,43 @@ e_reflow_class_init (EReflowClass *klass)
g_object_class_install_property (object_class, PROP_MINIMUM_WIDTH,
g_param_spec_double ("minimum_width",
- _( "Minimum width" ),
- _( "Minimum Width" ),
+ "Minimum width",
+ "Minimum Width",
0.0, G_MAXDOUBLE, 0.0,
G_PARAM_READWRITE));
g_object_class_install_property (object_class, PROP_WIDTH,
g_param_spec_double ("width",
- _( "Width" ),
- _( "Width" ),
+ "Width",
+ "Width",
0.0, G_MAXDOUBLE, 0.0,
G_PARAM_READABLE));
g_object_class_install_property (object_class, PROP_HEIGHT,
g_param_spec_double ("height",
- _( "Height" ),
- _( "Height" ),
+ "Height",
+ "Height",
0.0, G_MAXDOUBLE, 0.0,
G_PARAM_READWRITE));
g_object_class_install_property (object_class, PROP_EMPTY_MESSAGE,
g_param_spec_string ("empty_message",
- _( "Empty message" ),
- _( "Empty message" ),
+ "Empty message",
+ "Empty message",
NULL,
G_PARAM_READWRITE));
g_object_class_install_property (object_class, PROP_MODEL,
g_param_spec_object ("model",
- _( "Reflow model" ),
- _( "Reflow model" ),
+ "Reflow model",
+ "Reflow model",
E_REFLOW_MODEL_TYPE,
G_PARAM_READWRITE));
g_object_class_install_property (object_class, PROP_COLUMN_WIDTH,
g_param_spec_double ("column_width",
- _( "Column width" ),
- _( "Column width" ),
+ "Column width",
+ "Column width",
0.0, G_MAXDOUBLE, 150.0,
G_PARAM_READWRITE));