changeset 27978:088a828fe2e2

Clarify the preference strings for the Join/Part hiding plugin. These are pretty ugly, but I think clearer than the originals. Feel free to change/improve.
author Paul Aurich <paul@darkrain42.org>
date Sat, 01 Aug 2009 23:35:40 +0000
parents b6a1ade72555
children 04f46e8750d4
files libpurple/plugins/joinpart.c
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/plugins/joinpart.c	Sat Aug 01 21:36:16 2009 +0000
+++ b/libpurple/plugins/joinpart.c	Sat Aug 01 23:35:40 2009 +0000
@@ -229,16 +229,17 @@
 
 	frame = purple_plugin_pref_frame_new();
 
-	ppref = purple_plugin_pref_new_with_label(_("Join/Part Hiding Configuration"));
+	ppref = purple_plugin_pref_new_with_label(_("Hide Joins/Parts:"));
 	purple_plugin_pref_frame_add(frame, ppref);
 
 	ppref = purple_plugin_pref_new_with_name_and_label(THRESHOLD_PREF,
-	                                                 _("Minimum Room Size"));
+	                                                 /* Translators: Followed by an input request a number of people */
+	                                                 _("For rooms with more than this many people"));
 	purple_plugin_pref_set_bounds(ppref, 0, 1000);
 	purple_plugin_pref_frame_add(frame, ppref);
 
 	ppref = purple_plugin_pref_new_with_name_and_label(DELAY_PREF,
-	                                                 _("User Inactivity Timeout (in minutes)"));
+	                                                 _("If user has not spoken in this many minutes"));
 	purple_plugin_pref_set_bounds(ppref, 0, 8 * 60); /* 8 Hours */
 	purple_plugin_pref_frame_add(frame, ppref);