brasero r1092 - in trunk: . src src/plugins/growisofs src/plugins/libburnia



Author: philippr
Date: Thu Aug 14 14:18:20 2008
New Revision: 1092
URL: http://svn.gnome.org/viewvc/brasero?rev=1092&view=rev

Log:
	Improved some strings

	* src/burn-job.c (brasero_job_check_output_volume_space):
	* src/plugins/growisofs/burn-dvd-rw-format.c
	(brasero_dvd_rw_format_read_stderr):
	* src/plugins/libburnia/burn-libburn-common.c
	(brasero_libburn_common_ctx_new):


Modified:
   trunk/ChangeLog
   trunk/src/burn-job.c
   trunk/src/plugins/growisofs/burn-dvd-rw-format.c
   trunk/src/plugins/libburnia/burn-libburn-common.c

Modified: trunk/src/burn-job.c
==============================================================================
--- trunk/src/burn-job.c	(original)
+++ trunk/src/burn-job.c	Thu Aug 14 14:18:20 2008
@@ -469,11 +469,6 @@
 	if (output_size >= 2147483648ULL
 	&&  filesystem
 	&& !strcmp (filesystem, "msdos")) {
-		/* FIXME: This string should mention that the location is on the
-		 * hard drive and not the medium itself to prevent any confusion
-		 * as seen in #533149 */
-		/* FIXME: change this string to something more appropriate when
-		 * we're not in string freeze. */
 		g_set_error (error,
 			     BRASERO_BURN_ERROR,
 			     BRASERO_BURN_ERROR_DISK_SPACE,
@@ -489,13 +484,10 @@
 
 	/* it's fine here to check size in bytes */
 	if (output_size > vol_size) {
-		/* FIXME: This string should mention that the location is on the
-		 * hard drive and not the medium itself to prevent any confusion
-		 * as seen in #533149 */
 		g_set_error (error,
 			     BRASERO_BURN_ERROR,
 			     BRASERO_BURN_ERROR_DISK_SPACE,
-			     _("the selected location does not have enough free space to store the disc image (%ld MiB needed)"),
+			     _("The location you chose to store the temporary image on does not have enough free space for the disc image (%ld MiB needed)"),
 			     (unsigned long) output_size / 1048576);
 		return BRASERO_BURN_ERR;
 	}

Modified: trunk/src/plugins/growisofs/burn-dvd-rw-format.c
==============================================================================
--- trunk/src/plugins/growisofs/burn-dvd-rw-format.c	(original)
+++ trunk/src/plugins/growisofs/burn-dvd-rw-format.c	Thu Aug 14 14:18:20 2008
@@ -60,7 +60,6 @@
 	||  strstr (line, "media is not blank")
 	||  strstr (line, "media is already formatted")
 	||  strstr (line, "you have the option to re-run")) {
-		/* FIXME: this error needs a better message */
 		brasero_job_error (BRASERO_JOB (process),
 				   g_error_new (BRASERO_BURN_ERROR,
 						BRASERO_BURN_ERROR_GENERAL,

Modified: trunk/src/plugins/libburnia/burn-libburn-common.c
==============================================================================
--- trunk/src/plugins/libburnia/burn-libburn-common.c	(original)
+++ trunk/src/plugins/libburnia/burn-libburn-common.c	Thu Aug 14 14:18:20 2008
@@ -93,11 +93,10 @@
 
 	/* initialize the library */
 	if (!burn_initialize ()) {
-		/* FIXME: change the message */
 		g_set_error (error,
 			     BRASERO_BURN_ERROR,
 			     BRASERO_BURN_ERROR_GENERAL,
-			     _("the drive couldn't be initialized"));
+			     _("Libburn library couldn't be initialized"));
 		return NULL;
 	}
 



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