Replace some missed GTK_STOCK_ items

This commit is contained in:
Robert Fewell 2017-07-15 13:28:34 +01:00 committed by John Ralls
parent 5a7a8d8d9b
commit 5ef645b8d0
3 changed files with 8 additions and 8 deletions

View File

@ -137,30 +137,30 @@ static GtkActionEntry gnc_plugin_actions [] =
/* File -> Import menu item */ /* File -> Import menu item */
{ {
"Mt940ImportAction", GTK_STOCK_CONVERT, N_("Import _MT940"), NULL, "Mt940ImportAction", "go-previous", N_("Import _MT940"), NULL,
N_("Import a MT940 file into GnuCash"), N_("Import a MT940 file into GnuCash"),
G_CALLBACK(gnc_plugin_ab_cmd_mt940_import) G_CALLBACK(gnc_plugin_ab_cmd_mt940_import)
}, },
{ {
"Mt942ImportAction", GTK_STOCK_CONVERT, N_("Import MT94_2"), NULL, "Mt942ImportAction", "go-previous", N_("Import MT94_2"), NULL,
N_("Import a MT942 file into GnuCash"), N_("Import a MT942 file into GnuCash"),
G_CALLBACK(gnc_plugin_ab_cmd_mt942_import) G_CALLBACK(gnc_plugin_ab_cmd_mt942_import)
}, },
{ {
"DtausImportAction", GTK_STOCK_CONVERT, N_("Import _DTAUS"), NULL, "DtausImportAction", "go-previous", N_("Import _DTAUS"), NULL,
N_("Import a DTAUS file into GnuCash"), N_("Import a DTAUS file into GnuCash"),
G_CALLBACK(gnc_plugin_ab_cmd_dtaus_import) G_CALLBACK(gnc_plugin_ab_cmd_dtaus_import)
}, },
/* #ifdef CSV_IMPORT_FUNCTIONAL */ /* #ifdef CSV_IMPORT_FUNCTIONAL */
/* { "CsvImportAction", GTK_STOCK_CONVERT, N_("Import _CSV"), NULL, */ /* { "CsvImportAction", "go-previous", N_("Import _CSV"), NULL, */
/* N_("Import a CSV file into GnuCash"), */ /* N_("Import a CSV file into GnuCash"), */
/* G_CALLBACK(gnc_plugin_ab_cmd_csv_import) }, */ /* G_CALLBACK(gnc_plugin_ab_cmd_csv_import) }, */
/* { "CsvImportSendAction", GTK_STOCK_CONVERT, N_("Import CSV and s_end..."), NULL, */ /* { "CsvImportSendAction", "go-previous", N_("Import CSV and s_end..."), NULL, */
/* N_("Import a CSV file into GnuCash and send the transfers online through Online Banking"), */ /* N_("Import a CSV file into GnuCash and send the transfers online through Online Banking"), */
/* G_CALLBACK(gnc_plugin_ab_cmd_csv_importsend) }, */ /* G_CALLBACK(gnc_plugin_ab_cmd_csv_importsend) }, */
/* #endif */ /* #endif */
{ {
"DtausImportSendAction", GTK_STOCK_CONVERT, N_("Import DTAUS and _send..."), NULL, "DtausImportSendAction", "go-previous", N_("Import DTAUS and _send..."), NULL,
N_("Import a DTAUS file into GnuCash and send the transfers online through Online Banking"), N_("Import a DTAUS file into GnuCash and send the transfers online through Online Banking"),
G_CALLBACK(gnc_plugin_ab_cmd_dtaus_importsend) G_CALLBACK(gnc_plugin_ab_cmd_dtaus_importsend)
}, },

View File

@ -54,7 +54,7 @@ static GtkActionEntry gnc_plugin_actions [] =
{ {
/* Menu Items */ /* Menu Items */
{ "ImportMenuAction", NULL, N_("_Import"), NULL, NULL, NULL }, { "ImportMenuAction", NULL, N_("_Import"), NULL, NULL, NULL },
{ "bi_importAction", NULL, N_("Import Bills & Invoices..."), NULL, N_("Import bills and invoices from a CSV text file"), G_CALLBACK(gnc_plugin_bi_import_cmd_test) }, { "bi_importAction", "go-previous", N_("Import Bills & Invoices..."), NULL, N_("Import bills and invoices from a CSV text file"), G_CALLBACK(gnc_plugin_bi_import_cmd_test) },
}; };
static guint gnc_plugin_n_actions = G_N_ELEMENTS(gnc_plugin_actions); static guint gnc_plugin_n_actions = G_N_ELEMENTS(gnc_plugin_actions);

View File

@ -54,7 +54,7 @@ static GtkActionEntry gnc_plugin_actions [] =
{ {
/* Menu Items */ /* Menu Items */
{ "ImportMenuAction", NULL, N_("I_mport"), NULL, NULL, NULL }, { "ImportMenuAction", NULL, N_("I_mport"), NULL, NULL, NULL },
{ "customer_importAction", NULL, N_("Import Customers and Vendors"), NULL, N_("customer_import tooltip"), G_CALLBACK(gnc_plugin_customer_import_cmd_test) }, { "customer_importAction", "go-previous", N_("Import Customers and Vendors"), NULL, N_("customer_import tooltip"), G_CALLBACK(gnc_plugin_customer_import_cmd_test) },
}; };
static guint gnc_plugin_n_actions = G_N_ELEMENTS(gnc_plugin_actions); static guint gnc_plugin_n_actions = G_N_ELEMENTS(gnc_plugin_actions);