[gnome-control-center/randr-set-as-default] Fix missing newlines in error messages



commit 95089f7762b723dcddea7a04dbf3adf0c18a22b6
Author: Federico Mena Quintero <federico novell com>
Date:   Fri Mar 19 15:09:19 2010 -0600

    Fix missing newlines in error messages
    
    Signed-off-by: Federico Mena Quintero <federico novell com>

 .../gnome-display-properties-install-systemwide.c  |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/capplets/display/gnome-display-properties-install-systemwide.c b/capplets/display/gnome-display-properties-install-systemwide.c
index 7092c05..406b4cf 100644
--- a/capplets/display/gnome-display-properties-install-systemwide.c
+++ b/capplets/display/gnome-display-properties-install-systemwide.c
@@ -176,7 +176,7 @@ main (int argc, char **argv)
 		err = errno;
 
 		/* Translators: first %s is a filename; second %s is an error message */
-		g_print (_("Could not open %s: %s"),
+		g_print (_("Could not open %s: %s\n"),
 			 source_filename,
 			 g_strerror (err));
 		return EXIT_FAILURE;
@@ -212,7 +212,7 @@ main (int argc, char **argv)
 
 	if (statbuf.st_uid != pkexec_uid) {
 		/* Translators: we are complaining that a file must be really owned by the user who called this program */
-		g_print (_("%s must be owned by you"), source_filename);
+		g_print (_("%s must be owned by you\n"), source_filename);
 		return EXIT_FAILURE;
 	}
 
@@ -228,7 +228,7 @@ main (int argc, char **argv)
 	/* Chdir to the destination directory to keep it open... */
 
 	if (chdir (SYSTEM_RANDR_PATH) != 0) {
-		g_print (_("%s must be a directory"), SYSTEM_RANDR_PATH);
+		g_print (_("%s must be a directory\n"), SYSTEM_RANDR_PATH);
 		return EXIT_FAILURE;
 	}
 
@@ -239,7 +239,7 @@ main (int argc, char **argv)
 	if (dest_fd == -1) {
 		err = errno;
 		/* Translators: the first %s/%s is a directory/filename; the last %s is an error message */
-		g_print (_("Could not open %s/%s: %s"),
+		g_print (_("Could not open %s/%s: %s\n"),
 			 SYSTEM_RANDR_PATH,
 			 template,
 			 g_strerror (err));
@@ -259,7 +259,7 @@ main (int argc, char **argv)
 	if (rename (template, dest_name) != 0) {
 		err = errno;
 		unlink (template);
-		g_print (_("Could not rename %s to %s: %s"),
+		g_print (_("Could not rename %s to %s: %s\n"),
 			 template,
 			 dest_name,
 			 g_strerror (err));



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