SF.net SVN: geany:[3621] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Thu Mar 5 13:03:51 UTC 2009


Revision: 3621
          http://geany.svn.sourceforge.net/geany/?rev=3621&view=rev
Author:   eht16
Date:     2009-03-05 13:03:51 +0000 (Thu, 05 Mar 2009)

Log Message:
-----------
Fix punctuation.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/geany.glade
    trunk/plugins/export.c
    trunk/src/interface.c
    trunk/src/printing.c
    trunk/src/search.c
    trunk/src/toolbar.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2009-03-05 13:03:25 UTC (rev 3620)
+++ trunk/ChangeLog	2009-03-05 13:03:51 UTC (rev 3621)
@@ -6,6 +6,9 @@
  * data/filetypes.fortran, tagmanager/fortran.c:
    Add keyword 'extends' and fix Fortran parser to support the
    'extends' keyword (closes #2654492).
+ * geany.glade, plugins/export.c, src/interface.c, src/printing.c,
+   src/search.c, src/toolbar.c:
+   Fix punctuation.
 
 
 2009-03-03  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>

Modified: trunk/geany.glade
===================================================================
--- trunk/geany.glade	2009-03-05 13:03:25 UTC (rev 3620)
+++ trunk/geany.glade	2009-03-05 13:03:51 UTC (rev 3621)
@@ -3531,7 +3531,7 @@
 			      <child>
 				<widget class="GtkCheckButton" id="check_project_file_in_basedir">
 				  <property name="visible">True</property>
-				  <property name="tooltip" translatable="yes">When enabled, a project file is stored by default inside the project base directory when creating new projects instead of one directory above the base directory. You can still change the path of the project file in the New Project dialog</property>
+				  <property name="tooltip" translatable="yes">When enabled, a project file is stored by default inside the project base directory when creating new projects instead of one directory above the base directory. You can still change the path of the project file in the New Project dialog.</property>
 				  <property name="can_focus">True</property>
 				  <property name="label" translatable="yes">Store project file inside the project base directory</property>
 				  <property name="use_underline">True</property>
@@ -4928,7 +4928,7 @@
 			      <child>
 				<widget class="GtkCheckButton" id="check_unfold_children">
 				  <property name="visible">True</property>
-				  <property name="tooltip" translatable="yes">Fold or unfold all children of a fold point. By pressing the Shift key while clicking on a fold symbol the contrary behavior is used</property>
+				  <property name="tooltip" translatable="yes">Fold or unfold all children of a fold point. By pressing the Shift key while clicking on a fold symbol the contrary behavior is used.</property>
 				  <property name="can_focus">True</property>
 				  <property name="label" translatable="yes">Fold/unfold all children of a fold point</property>
 				  <property name="use_underline">True</property>

Modified: trunk/plugins/export.c
===================================================================
--- trunk/plugins/export.c	2009-03-05 13:03:25 UTC (rev 3620)
+++ trunk/plugins/export.c	2009-03-05 13:03:51 UTC (rev 3621)
@@ -190,7 +190,7 @@
 		vbox = gtk_vbox_new(FALSE, 0);
 		check_zoom_level = gtk_check_button_new_with_mnemonic(_("_Use current zoom level"));
 		ui_widget_set_tooltip_text(check_zoom_level,
-			_("Renders the font size of the document together with the current zoom level."));
+			_("Renders the font size of the document together with the current zoom level"));
 		gtk_box_pack_start(GTK_BOX(vbox), check_zoom_level, FALSE, FALSE, 0);
 		gtk_widget_show_all(vbox);
 		gtk_file_chooser_set_extra_widget(GTK_FILE_CHOOSER(dialog), vbox);

Modified: trunk/src/interface.c
===================================================================
--- trunk/src/interface.c	2009-03-05 13:03:25 UTC (rev 3620)
+++ trunk/src/interface.c	2009-03-05 13:03:51 UTC (rev 3621)
@@ -2870,7 +2870,7 @@
   check_project_file_in_basedir = gtk_check_button_new_with_mnemonic (_("Store project file inside the project base directory"));
   gtk_widget_show (check_project_file_in_basedir);
   gtk_box_pack_start (GTK_BOX (vbox35), check_project_file_in_basedir, FALSE, FALSE, 0);
-  gtk_tooltips_set_tip (tooltips, check_project_file_in_basedir, _("When enabled, a project file is stored by default inside the project base directory when creating new projects instead of one directory above the base directory. You can still change the path of the project file in the New Project dialog"), NULL);
+  gtk_tooltips_set_tip (tooltips, check_project_file_in_basedir, _("When enabled, a project file is stored by default inside the project base directory when creating new projects instead of one directory above the base directory. You can still change the path of the project file in the New Project dialog."), NULL);
 
   label207 = gtk_label_new (_("<b>Projects</b>"));
   gtk_widget_show (label207);
@@ -3293,7 +3293,7 @@
   check_unfold_children = gtk_check_button_new_with_mnemonic (_("Fold/unfold all children of a fold point"));
   gtk_widget_show (check_unfold_children);
   gtk_box_pack_start (GTK_BOX (vbox17), check_unfold_children, FALSE, FALSE, 0);
-  gtk_tooltips_set_tip (tooltips, check_unfold_children, _("Fold or unfold all children of a fold point. By pressing the Shift key while clicking on a fold symbol the contrary behavior is used"), NULL);
+  gtk_tooltips_set_tip (tooltips, check_unfold_children, _("Fold or unfold all children of a fold point. By pressing the Shift key while clicking on a fold symbol the contrary behavior is used."), NULL);
 
   check_indicators = gtk_check_button_new_with_mnemonic (_("Use indicators to show compile errors"));
   gtk_widget_show (check_indicators);

Modified: trunk/src/printing.c
===================================================================
--- trunk/src/printing.c	2009-03-05 13:03:25 UTC (rev 3620)
+++ trunk/src/printing.c	2009-03-05 13:03:51 UTC (rev 3621)
@@ -829,7 +829,7 @@
 	if (! NZV(printing_prefs.external_print_cmd))
 	{
 		dialogs_show_msgbox(GTK_MESSAGE_ERROR,
-			_("Please set a print command in the preferences dialog first"));
+			_("Please set a print command in the preferences dialog first."));
 		return;
 	}
 

Modified: trunk/src/search.c
===================================================================
--- trunk/src/search.c	2009-03-05 13:03:25 UTC (rev 3620)
+++ trunk/src/search.c	2009-03-05 13:03:51 UTC (rev 3621)
@@ -779,7 +779,7 @@
 					g_object_ref(checkbox2), (GDestroyNotify)g_object_unref);
 	gtk_button_set_focus_on_click(GTK_BUTTON(checkbox2), FALSE);
 	ui_widget_set_tooltip_text(checkbox2,
-			_("Invert the sense of matching, to select non-matching lines."));
+			_("Invert the sense of matching, to select non-matching lines"));
 
 	cbox = gtk_vbox_new(FALSE, 0);
 	gtk_container_add(GTK_CONTAINER(cbox), checkbox1);

Modified: trunk/src/toolbar.c
===================================================================
--- trunk/src/toolbar.c	2009-03-05 13:03:25 UTC (rev 3620)
+++ trunk/src/toolbar.c	2009-03-05 13:03:51 UTC (rev 3621)
@@ -205,7 +205,7 @@
 	gtk_action_group_add_action(group, action_searchentry);
 
 	action_gotoentry = geany_entry_action_new(
-		"GotoEntry", _("Goto"), _("Jump to the entered line number."), TRUE);
+		"GotoEntry", _("Goto"), _("Jump to the entered line number"), TRUE);
 	g_signal_connect(action_gotoentry, "entry-activate",
 		G_CALLBACK(on_toolbutton_goto_entry_activate), NULL);
 	gtk_action_group_add_action(group, action_gotoentry);


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