Fix some typos.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22960 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Cristian Marchi 2013-05-08 12:18:30 +00:00
parent 5c3fc62d69
commit 9ef0cce3bd
4 changed files with 10 additions and 10 deletions

View File

@ -441,7 +441,7 @@ gnc_tree_control_split_reg_exchange_rate (GncTreeViewSplitReg *view)
if (gtc_sr_trans_test_for_edit (view, trans))
return;
/* Make sure we ask to commit any changes before we procede */
/* Make sure we ask to commit any changes before we proceed */
if (gtc_sr_trans_open_and_warn (view, trans))
return;
@ -569,7 +569,7 @@ gnc_tree_control_split_reg_void_current_trans (GncTreeViewSplitReg *view, const
if (gtc_sr_trans_test_for_edit (view, trans))
return;
/* Make sure we ask to commit any changes before we procede */
/* Make sure we ask to commit any changes before we proceed */
if (gtc_sr_trans_open_and_warn (view, trans))
return;
@ -912,7 +912,7 @@ gnc_tree_control_split_reg_reinit (GncTreeViewSplitReg *view, gpointer data)
if (gtc_sr_trans_test_for_edit (view, trans))
return;
/* Make sure we ask to commit any changes before we procede */
/* Make sure we ask to commit any changes before we proceed */
if (gtc_sr_trans_open_and_warn (view, trans))
return;
@ -1260,7 +1260,7 @@ gnc_tree_control_split_reg_duplicate_current (GncTreeViewSplitReg *view)
return FALSE;
}
/* Make sure we ask to commit any changes before we procede */
/* Make sure we ask to commit any changes before we proceed */
if (gtc_sr_trans_open_and_warn (view, trans))
{
LEAVE("save cancelled");

View File

@ -2465,7 +2465,7 @@ gnc_plugin_page_register2_cmd_print_check (GtkAction *action,
return;
}
/* Make sure we ask to commit any changes before we procede */
/* Make sure we ask to commit any changes before we proceed */
if (gnc_tree_control_split_reg_trans_open_and_warn (view, trans))
{
LEAVE("trans being edited");
@ -3006,7 +3006,7 @@ gnc_plugin_page_register2_cmd_reload (GtkAction *action, GncPluginPageRegister2
trans = gnc_tree_view_split_reg_get_current_trans (view);
/* Make sure we ask to commit any changes before we procede */
/* Make sure we ask to commit any changes before we proceed */
if (gnc_tree_control_split_reg_trans_open_and_warn (view, trans))
{
LEAVE("trans being edited");
@ -3123,7 +3123,7 @@ gnc_plugin_page_register2_cmd_reconcile (GtkAction *action,
trans = gnc_tree_view_split_reg_get_current_trans (view);
/* Make sure we ask to commit any changes before we procede */
/* Make sure we ask to commit any changes before we proceed */
if (gnc_tree_control_split_reg_trans_open_and_warn (view, trans))
{
LEAVE("trans being edited");
@ -3473,7 +3473,7 @@ gnc_plugin_page_register2_cmd_schedule (GtkAction *action,
return;
}
/* Make sure we ask to commit any changes before we procede */
/* Make sure we ask to commit any changes before we proceed */
if (gnc_tree_control_split_reg_trans_open_and_warn (view, trans))
{
LEAVE("trans being edited");

View File

@ -753,7 +753,7 @@ csv_export_assistant_summary_page_prepare (GtkAssistant *assistant,
if (info->failed)
text = _("There was a problem with the export, this could be due to lack of space, "
"permissions or unable to access folder. Check the trace file for further logging!\n"
"You may need to enable debuging.\n");
"You may need to enable debugging.\n");
else
text = _("File exported successfully!\n");

View File

@ -1385,7 +1385,7 @@ csv_import_trans_assistant_account_page_prepare (GtkAssistant *assistant,
}
else
{
text = g_strdup_printf(gettext ("To Change the account, double click on the required account, click Forward to procede."));
text = g_strdup_printf(gettext ("To Change the account, double click on the required account, click Forward to proceed."));
mtext = g_strdup_printf("<span size=\"medium\" color=\"red\"><b>%s</b></span>", text);
gtk_label_set_markup(GTK_LABEL(info->account_label), mtext );
g_free(mtext);