brasero r1507 - in trunk: . src src/plugins/local-track



Author: philippr
Date: Sun Nov  9 23:11:33 2008
New Revision: 1507
URL: http://svn.gnome.org/viewvc/brasero?rev=1507&view=rev

Log:
	Some more HIG fixes (capitalization in button)
	Remove some unused or redundant strings.

	* src/brasero-app.c:
	* src/brasero-blank-dialog.c (brasero_blank_dialog_activate):
	* src/brasero-dest-selection.c (brasero_dest_selection_lock):
	* src/brasero-medium-properties.c (brasero_medium_properties_init):
	* src/brasero-playlist.c (brasero_playlist_dialog_error):
	* src/plugins/local-track/burn-uri.c (brasero_burn_uri_thread),
	(brasero_burn_uri_export_caps):


Modified:
   trunk/ChangeLog
   trunk/src/brasero-app.c
   trunk/src/brasero-blank-dialog.c
   trunk/src/brasero-dest-selection.c
   trunk/src/brasero-medium-properties.c
   trunk/src/brasero-playlist.c
   trunk/src/plugins/local-track/burn-uri.c

Modified: trunk/src/brasero-app.c
==============================================================================
--- trunk/src/brasero-app.c	(original)
+++ trunk/src/brasero-app.c	Sun Nov  9 23:11:33 2008
@@ -82,7 +82,6 @@
 
 static void on_exit_cb (GtkAction *action, BraseroApp *app);
 
-static void on_disc_info_cb (GtkAction *action, BraseroApp *app);
 static void on_about_cb (GtkAction *action, BraseroApp *app);
 
 #ifdef BUILD_GNOME2
@@ -121,10 +120,6 @@
 
 	{"About", GTK_STOCK_ABOUT, NULL, NULL, N_("About"),
 	 G_CALLBACK (on_about_cb)},
-
-	{"DiscInfo", GTK_STOCK_CDROM, N_("_Disc Info"), NULL,
-	 N_("Display information on blank discs currently inserted"),
-	 G_CALLBACK (on_disc_info_cb)},
 };
 
 
@@ -389,12 +384,6 @@
 }
 
 static void
-on_disc_info_cb (GtkAction *button, BraseroApp *app)
-{
-
-}
-
-static void
 on_about_cb (GtkAction *action, BraseroApp *app)
 {
 	const gchar *authors[] = {

Modified: trunk/src/brasero-blank-dialog.c
==============================================================================
--- trunk/src/brasero-blank-dialog.c	(original)
+++ trunk/src/brasero-blank-dialog.c	Sun Nov  9 23:11:33 2008
@@ -241,7 +241,7 @@
 		}
 		else
 			gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (message),
-								  _("Unexpected error."));
+								  _("Unknown error."));
 
 		answer = gtk_dialog_run (GTK_DIALOG (message));
 		gtk_widget_destroy (message);

Modified: trunk/src/brasero-dest-selection.c
==============================================================================
--- trunk/src/brasero-dest-selection.c	(original)
+++ trunk/src/brasero-dest-selection.c	Sun Nov  9 23:11:33 2008
@@ -100,7 +100,7 @@
 
 		if (priv->locked_drive)
 			brasero_drive_lock (priv->locked_drive,
-					    _("ongoing burning process"),
+					    _("Ongoing burning process"),
 					    NULL);
 	}
 }

Modified: trunk/src/brasero-medium-properties.c
==============================================================================
--- trunk/src/brasero-medium-properties.c	(original)
+++ trunk/src/brasero-medium-properties.c	Sun Nov  9 23:11:33 2008
@@ -578,7 +578,7 @@
 
 	priv->caps = brasero_burn_caps_get_default ();
 
-	gtk_widget_set_tooltip_text (GTK_WIDGET (object), _("Configure some options for the recording"));
+	gtk_widget_set_tooltip_text (GTK_WIDGET (object), _("Configure recording options"));
 
 	priv->default_ext = TRUE;
 	priv->default_path = TRUE;

Modified: trunk/src/brasero-playlist.c
==============================================================================
--- trunk/src/brasero-playlist.c	(original)
+++ trunk/src/brasero-playlist.c	Sun Nov  9 23:11:33 2008
@@ -828,7 +828,7 @@
 	primary = g_strdup_printf (_("Error parsing playlist \"%s\"."), name);
 	brasero_utils_message_dialog (GTK_WIDGET (toplevel),
 				      primary,
-				      _("An unknown error occured."),
+				      _("Unknown error."),
 				      GTK_MESSAGE_ERROR);
 	g_free (primary);
 	g_free (name);

Modified: trunk/src/plugins/local-track/burn-uri.c
==============================================================================
--- trunk/src/plugins/local-track/burn-uri.c	(original)
+++ trunk/src/plugins/local-track/burn-uri.c	Sun Nov  9 23:11:33 2008
@@ -283,7 +283,7 @@
 			if (!real_path) {
 				priv->error = g_error_new (BRASERO_BURN_ERROR,
 							   BRASERO_BURN_ERROR_GENERAL,
-							   _("impossible to retrieve local file path"));
+							   _("Impossible to retrieve local file path."));
 
 				g_slist_foreach (grafts, (GFunc) brasero_graft_point_free, NULL);
 				g_slist_free (grafts);
@@ -528,7 +528,7 @@
 
 	brasero_plugin_define (plugin,
 			       "burn_uris",
-			       _("local-track allows to burn files not stored locally"),
+			       _("Burn_uri allows to burn files added to \"CD/DVD Creator Folder\" in nautilus"),
 			       "Philippe Rouquier",
 			       11);
 



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