Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/eggfindbar.c
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2009-11-09 09:10:47 (GMT)
committer Carlos Garcia Campos <carlosgc@gnome.org>2009-11-09 09:12:10 (GMT)
commit9e1a81fd3638f5a7642a71b78a0403b33501dff2 (patch)
tree290c68401a70107cffafb99e4b31f59ea9a0faaf /shell/eggfindbar.c
parent628e5ea8adbefdaf0dacf9a94c8396372341535f (diff)
Do not mark properties name and desc as translatable.
See bgo#509824
Diffstat (limited to 'shell/eggfindbar.c')
-rw-r--r--shell/eggfindbar.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/shell/eggfindbar.c b/shell/eggfindbar.c
index eabee11..5b196ec 100644
--- a/shell/eggfindbar.c
+++ b/shell/eggfindbar.c
@@ -143,8 +143,8 @@ egg_find_bar_class_init (EggFindBarClass *klass)
g_object_class_install_property (object_class,
PROP_SEARCH_STRING,
g_param_spec_string ("search_string",
- _("Search string"),
- _("The name of the string to be found"),
+ "Search string",
+ "The name of the string to be found",
NULL,
G_PARAM_READWRITE));
@@ -157,23 +157,23 @@ egg_find_bar_class_init (EggFindBarClass *klass)
g_object_class_install_property (object_class,
PROP_CASE_SENSITIVE,
g_param_spec_boolean ("case_sensitive",
- _("Case sensitive"),
- _("TRUE for a case sensitive search"),
+ "Case sensitive",
+ "TRUE for a case sensitive search",
FALSE,
G_PARAM_READWRITE));
/* Style properties */
gtk_widget_class_install_style_property (widget_class,
g_param_spec_boxed ("all_matches_color",
- _("Highlight color"),
- _("Color of highlight for all matches"),
+ "Highlight color",
+ "Color of highlight for all matches",
GDK_TYPE_COLOR,
G_PARAM_READABLE));
gtk_widget_class_install_style_property (widget_class,
g_param_spec_boxed ("current_match_color",
- _("Current color"),
- _("Color of highlight for the current match"),
+ "Current color",
+ "Color of highlight for the current match",
GDK_TYPE_COLOR,
G_PARAM_READABLE));