Fix punctuation.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3621 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2009-03-05 13:03:51 +00:00
parent 05e93ed2df
commit fbbe778eeb
7 changed files with 11 additions and 8 deletions

View File

@ -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>

View File

@ -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 @@ Bottom
<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>

View File

@ -190,7 +190,7 @@ static void create_file_save_as_dialog(const gchar *extension, ExportFunc func,
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);

View File

@ -2870,7 +2870,7 @@ create_prefs_dialog (void)
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 @@ create_prefs_dialog (void)
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);

View File

@ -829,7 +829,7 @@ static void print_external(GeanyDocument *doc)
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;
}

View File

@ -779,7 +779,7 @@ static void create_fif_dialog(void)
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);

View File

@ -205,7 +205,7 @@ GtkWidget *toolbar_init(void)
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);