SF.net SVN: geany: [1863] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Sun Sep 9 16:13:30 UTC 2007


Revision: 1863
          http://geany.svn.sourceforge.net/geany/?rev=1863&view=rev
Author:   eht16
Date:     2007-09-09 09:13:30 -0700 (Sun, 09 Sep 2007)

Log Message:
-----------
Change quotes in some error messages to be more consistent (thanks Frank).

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/build.c
    trunk/src/callbacks.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2007-09-09 16:09:28 UTC (rev 1862)
+++ trunk/ChangeLog	2007-09-09 16:13:30 UTC (rev 1863)
@@ -1,8 +1,14 @@
+2007-09-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
+
+ * src/build.c, src/callbacks.c: Change quotes in some error messages to
+                                 be more consistent (thanks Frank).
+
+
 2007-09-07  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
 
  * geany.glade, doc/geany.txt, src/callbacks.c, src/callbacks.h,
-   src/interface.c, src/keybindings.c, src/keybindings.h, src/utils.c,
-   src/utils.h, src/ui_utils.h:
+   src/interface.c, src/keybindings.c, src/keybindings.h, src/main.c,
+   src/utils.c, src/utils.h, src/ui_utils.h:
    Remove convert to lower-/upper-case keybindings.
    Add toggle case keybinding and change shortcut to Ctrl-Alt-U.
  * src/about.c: Improved error message if license text could not be

Modified: trunk/src/build.c
===================================================================
--- trunk/src/build.c	2007-09-09 16:09:28 UTC (rev 1862)
+++ trunk/src/build.c	2007-09-09 16:13:30 UTC (rev 1863)
@@ -206,7 +206,7 @@
 	if (term_argv[0] == NULL)
 	{
 		msgwin_status_add(
-			_("Could not find terminal '%s' "
+			_("Could not find terminal \"%s\" "
 				"(check path for Terminal tool setting in Preferences)"), prefs.tools_term_cmd);
 
 		utils_free_pointers(executable, view_file, locale_filename, cmd_string, locale_cmd_string,
@@ -588,7 +588,7 @@
 		{
 			gchar *utf8_check_executable = utils_get_utf8_from_locale(check_executable);
 
-			msgwin_status_add(_("Failed to execute %s (make sure it is already built)"),
+			msgwin_status_add(_("Failed to execute \"%s\" (make sure it is already built)"),
 														utf8_check_executable);
 			g_free(utf8_check_executable);
 			g_free(check_executable);
@@ -642,7 +642,7 @@
 		gchar *utf8_working_dir =
 			utils_get_utf8_from_locale(working_dir);
 
-		msgwin_status_add(_("Failed to change the working directory to %s"), utf8_working_dir);
+		msgwin_status_add(_("Failed to change the working directory to \"%s\""), utf8_working_dir);
 		g_free(utf8_working_dir);
 		g_free(working_dir);
 		g_free(executable);
@@ -743,7 +743,7 @@
 		if (term_argv[0] == NULL)
 		{
 			msgwin_status_add(
-				_("Could not find terminal '%s' "
+				_("Could not find terminal \"%s\" "
 					"(check path for Terminal tool setting in Preferences)"), prefs.tools_term_cmd);
 			run_info.pid = (GPid) 1;
 			goto free_strings;
@@ -1486,7 +1486,8 @@
 	if (ft->actions->can_compile || ft->actions->can_link || ft->actions->can_exec)
 	{
 		GtkWidget *align, *frame;
-		gchar *frame_title = g_strconcat(ft->title, _(" commands"), NULL);
+		// in-dialog heading for the "Set Includes and Arguments" dialog
+		gchar *frame_title = g_strdup_printf(_("%s commands"), ft->title);
 
 		frame = ui_frame_new_with_alignment(frame_title, &align);
 		gtk_container_add(GTK_CONTAINER(vbox), frame);

Modified: trunk/src/callbacks.c
===================================================================
--- trunk/src/callbacks.c	2007-09-09 16:09:28 UTC (rev 1862)
+++ trunk/src/callbacks.c	2007-09-09 16:13:30 UTC (rev 1863)
@@ -1480,7 +1480,7 @@
 		}
 
 		dialogs_show_input(_("Custom Date Format"),
-			_("Enter here a custom date and time format. You can use any conversion specifiers which can be used with the ANSI C strftime function. See \"man strftime\" for more information."),
+			_("Enter here a custom date and time format. You can use any conversion specifiers which can be used with the ANSI C strftime function."),
 			ui_prefs.custom_date_format,
 			G_CALLBACK(on_custom_date_dialog_response),
 			G_CALLBACK(on_custom_date_entry_activate));


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list