[nautilus-actions] NAIContext: fix string list regression



commit 2f2f2e99acf49bb1b763b3c313ec9ebbd2aa503c
Author: Pierre Wieser <pwieser trychlos org>
Date:   Wed Feb 16 20:35:25 2011 +0100

    NAIContext: fix string list regression

 ChangeLog                      |    2 ++
 src/core/na-icontext-factory.c |   12 ++++++------
 2 files changed, 8 insertions(+), 6 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index de8fcc3..5cd2065 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2011-02-16 Pierre Wieser <pwieser trychlos org>
 
+	* src/core/na-icontext-factory.c: Fix string list regression
+
 	* src/core/na-boxed.c: Fix regression when setting values.
 
 	* src/core/na-selected-info.c (query_file_attributes):
diff --git a/src/core/na-icontext-factory.c b/src/core/na-icontext-factory.c
index b4a51e2..9f6ae38 100644
--- a/src/core/na-icontext-factory.c
+++ b/src/core/na-icontext-factory.c
@@ -45,7 +45,7 @@ NADataDef data_def_conditions [] = {
 				TRUE,
 				TRUE,
 				N_( "List of patterns to be matched against the selected file(s)/folder(s)" ),
-				/* i18n: wildcard characters '*' and '?' should be considered as literalls,
+				/* i18n: wildcard characters '*' and '?' should be considered as literals,
 				 *  and not be translated */
 				N_( "A list of strings with joker '*' or '?' to be matched against the name(s) " \
 					"of the selected file(s)/folder(s). Each selected item must match at least " \
@@ -54,7 +54,7 @@ NADataDef data_def_conditions [] = {
 					"This obviously only applies when there is a selection.\n" \
 					"Defaults to '*'." ),
 				NA_DATA_TYPE_STRING_LIST,
-				"[*]",
+				"*",
 				FALSE,
 				TRUE,
 				TRUE,
@@ -115,7 +115,7 @@ NADataDef data_def_conditions [] = {
 					"This obviously only applies when there is a selection.\n" \
 					"Defaults to '*/*'." ),
 				NA_DATA_TYPE_STRING_LIST,
-				"[*/*]",
+				"*/*",
 				FALSE,
 				TRUE,
 				TRUE,
@@ -279,7 +279,7 @@ NADataDef data_def_conditions [] = {
 					"or when targeting the special 'x-nautilus-desktop' scheme.\n" \
 					"Defaults to 'file'." ),
 				NA_DATA_TYPE_STRING_LIST,
-				"[*]",
+				"*",
 				FALSE,
 				TRUE,
 				TRUE,
@@ -305,7 +305,7 @@ NADataDef data_def_conditions [] = {
 					"All folders 'under' the specified path are considered valid.\n" \
 					"Defaults to '/'." ),
 				NA_DATA_TYPE_STRING_LIST,
-				"[/]",
+				"/",
 				FALSE,
 				TRUE,
 				TRUE,
@@ -501,7 +501,7 @@ NADataDef data_def_conditions [] = {
 				TRUE,
 				N_( "Capabilities" ),
 				/* i18n: 'Owner', 'Readable', 'Writable', 'Executable' and 'Local' are all keywords
-				 *  of the specification, they are not translatable */
+				 *  of the specification; they are not translatable */
 				N_( "A list of capabilities each item of the selection must satisfy in order for the item to be candidate.\n" \
 					"Capabilities may be negated.\n" \
 					"Capabilities have to be chosen between following predefined ones:\n" \



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