Skip to content

Commit

Permalink
I18N: Overwrite (one word)
Browse files Browse the repository at this point in the history
  • Loading branch information
fellen committed Apr 16, 2021
1 parent 26606c3 commit 0d8f96e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gnucash/gtkbuilder/assistant-csv-price-import.glade
Expand Up @@ -70,7 +70,7 @@ Various options exist for specifying the delimiter as well as a fixed width opti

Examples are "FTSE","RR.L","21/11/2016",5.345,"GBP" and CURRENCY;USD;2016-11-21;1.56;GBP

There is an option for specifying the start row, end row and an option to skip alternate rows beginning from the start row which can be used if you have some header text. Also there is an option to over write existing prices for that day if required.
There is an option for specifying the start row, end row and an option to skip alternate rows beginning from the start row which can be used if you have some header text. Also there is an option to overwrite existing prices for that day if required.

Lastly, for repeated imports the preview page has buttons to Load and Save the settings. To save the settings, tweak the settings to your preferences (optionally) starting from an existing preset), then (optionally change the settings name and press the Save Settings button. Note you can't save to built-in presets.

Expand Down
6 changes: 3 additions & 3 deletions gnucash/import-export/csv-imp/assistant-csv-price-import.cpp
Expand Up @@ -162,7 +162,7 @@ class CsvImpPriceAssist
GtkWidget *skip_errors_button; /**< The widget for Skip error rows*/
GtkWidget *csv_button; /**< The widget for the CSV button */
GtkWidget *fixed_button; /**< The widget for the Fixed Width button */
GtkWidget *over_write_cbutton; /**< The widget for Price Over Write */
GtkWidget *over_write_cbutton; /**< The widget for Price Overwrite */
GtkWidget *commodity_selector; /**< The widget for commodity combo box */
GtkWidget *currency_selector; /**< The widget for currency combo box */
GOCharmapSel *encselector; /**< The widget for selecting the encoding */
Expand Down Expand Up @@ -935,7 +935,7 @@ CsvImpPriceAssist::preview_settings_save ()
{
auto response = gnc_ok_cancel_dialog (GTK_WINDOW(csv_imp_asst),
GTK_RESPONSE_OK,
"%s", _("Setting name already exists, over write?"));
"%s", _("Setting name already exists, overwrite?"));
if (response != GTK_RESPONSE_OK)
return;

Expand Down Expand Up @@ -999,7 +999,7 @@ void CsvImpPriceAssist::preview_update_skipped_rows ()
preview_refresh_table ();
}

/* Callback triggered when user clicks on Over Write option
/* Callback triggered when user clicks on Overwrite option
*/
void CsvImpPriceAssist::preview_over_write (bool over)
{
Expand Down
4 changes: 2 additions & 2 deletions gnucash/import-export/csv-imp/assistant-csv-trans-import.cpp
Expand Up @@ -902,7 +902,7 @@ CsvImpTransAssist::preview_settings_save ()
{
auto response = gnc_ok_cancel_dialog (GTK_WINDOW (csv_imp_asst),
GTK_RESPONSE_OK,
"%s", _("Setting name already exists, over write?"));
"%s", _("Setting name already exists, overwrite?"));
if (response != GTK_RESPONSE_OK)
return;

Expand Down Expand Up @@ -2084,7 +2084,7 @@ CsvImpTransAssist::assist_match_page_prepare ()
else
{
// align the help button on the left side
gtk_widget_set_halign (GTK_WIDGET(button_area), GTK_ALIGN_FILL);
gtk_widget_set_halign (GTK_WIDGET(button_area), GTK_ALIGN_FILL);
gtk_widget_set_hexpand (GTK_WIDGET(button_area), TRUE);
gtk_box_set_child_packing (GTK_BOX(button_area), help_button,
FALSE, FALSE, 0, GTK_PACK_START);
Expand Down

0 comments on commit 0d8f96e

Please sign in to comment.