[nautilus-actions] Added src/nact/nact-match-list.c



commit 72d9ed5ab209ff3c2f67ece8c53d1f4a6ca9b752
Author: Pierre Wieser <pwieser trychlos org>
Date:   Fri Jun 4 13:23:25 2010 +0200

    Added src/nact/nact-match-list.c

 src/nact/nact-match-list.c |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/src/nact/nact-match-list.c b/src/nact/nact-match-list.c
index 9e6e5fe..b2072be 100644
--- a/src/nact/nact-match-list.c
+++ b/src/nact/nact-match-list.c
@@ -142,7 +142,9 @@ nact_match_list_create_model( BaseWindow *window,
 	radio_cell = gtk_cell_renderer_toggle_new();
 	gtk_cell_renderer_toggle_set_radio( GTK_CELL_RENDERER_TOGGLE( radio_cell ), TRUE );
 	column = gtk_tree_view_column_new_with_attributes(
-			_( "Must match one" ),
+			/* i18n: label of the header of a column which let the user select a positive filter
+			 */
+			_( "Must match one of" ),
 			radio_cell,
 			"active", MUST_MATCH_COLUMN,
 			NULL );
@@ -151,7 +153,9 @@ nact_match_list_create_model( BaseWindow *window,
 	radio_cell = gtk_cell_renderer_toggle_new();
 	gtk_cell_renderer_toggle_set_radio( GTK_CELL_RENDERER_TOGGLE( radio_cell ), TRUE );
 	column = gtk_tree_view_column_new_with_attributes(
-			_( "Must not match any" ),
+			/* i18n: label of the header of a column which let the user select a negative filter
+			 */
+			_( "Must not match any of" ),
 			radio_cell,
 			"active", MUST_NOT_MATCH_COLUMN,
 			NULL );



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]