[evolution/wip/gsettings] Drop the duplicated 'Format' from filetype descriptionsto also sync strings with the ones used in sh



commit 33dcc39356e53c42cfd6304ce0fbeda217e72d42
Author: Andre Klapper <a9016009 gmx de>
Date:   Wed Jul 27 14:50:20 2011 +0200

    Drop the duplicated 'Format' from filetype descriptionsto also sync strings with the ones used in shell/e-shell-utils.c

 plugins/save-calendar/csv-format.c  |    2 +-
 plugins/save-calendar/ical-format.c |    2 +-
 plugins/save-calendar/rdf-format.c  |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/plugins/save-calendar/csv-format.c b/plugins/save-calendar/csv-format.c
index da21588..cbbfa66 100644
--- a/plugins/save-calendar/csv-format.c
+++ b/plugins/save-calendar/csv-format.c
@@ -622,7 +622,7 @@ FormatHandler *csv_format_handler_new (void)
 	FormatHandler *handler = g_new (FormatHandler, 1);
 
 	handler->isdefault = FALSE;
-	handler->combo_label = _("Comma separated value format (.csv)");
+	handler->combo_label = _("Comma separated values (.csv)");
 	handler->filename_ext = ".csv";
 	handler->data = g_new (CsvPluginData, 1);
 	handler->options_widget = create_options_widget (handler);
diff --git a/plugins/save-calendar/ical-format.c b/plugins/save-calendar/ical-format.c
index 39cac6f..039fdd8 100644
--- a/plugins/save-calendar/ical-format.c
+++ b/plugins/save-calendar/ical-format.c
@@ -163,7 +163,7 @@ FormatHandler *ical_format_handler_new (void)
 	FormatHandler *handler = g_new (FormatHandler, 1);
 
 	handler->isdefault = TRUE;
-	handler->combo_label = _("iCalendar format (.ics)");
+	handler->combo_label = _("iCalendar (.ics)");
 	handler->filename_ext = ".ics";
 	handler->options_widget = NULL;
 	handler->save = do_save_calendar_ical;
diff --git a/plugins/save-calendar/rdf-format.c b/plugins/save-calendar/rdf-format.c
index c64b31f..37a936c 100644
--- a/plugins/save-calendar/rdf-format.c
+++ b/plugins/save-calendar/rdf-format.c
@@ -372,7 +372,7 @@ FormatHandler *rdf_format_handler_new (void)
 	FormatHandler *handler = g_new (FormatHandler, 1);
 
 	handler->isdefault = FALSE;
-	handler->combo_label = _("RDF format (.rdf)");
+	handler->combo_label = _("RDF (.rdf)");
 	handler->filename_ext = ".rdf";
 	handler->options_widget = NULL;
 	handler->save = do_save_calendar_rdf;



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