Replace GTK_STOCK_CONVERT with two icon names

This may need changing to different icons names or add a couple of new
GNC_... icons
This commit is contained in:
Robert Fewell 2017-06-26 16:29:13 +01:00
parent 20c1630a31
commit 4d2a4a61fb
8 changed files with 11 additions and 11 deletions

View File

@ -114,7 +114,7 @@ gnc_file_dialog (const char * title,
case GNC_FILE_DIALOG_EXPORT:
action = GTK_FILE_CHOOSER_ACTION_SAVE;
okbutton = _("_Export");
ok_icon = GTK_STOCK_CONVERT;
ok_icon = "go-next";
if (title == NULL)
title = _("Export");
break;

View File

@ -133,7 +133,7 @@ static GtkActionEntry gnc_plugin_actions [] =
G_CALLBACK (gnc_main_window_cmd_file_revert)
},
{
"FileExportAccountsAction", GTK_STOCK_CONVERT,
"FileExportAccountsAction", "go-next",
N_("Export _Accounts"), NULL,
N_("Export the account hierarchy to a new GnuCash datafile"),
G_CALLBACK (gnc_main_window_cmd_file_export_accounts)

View File

@ -51,17 +51,17 @@ static void gnc_plugin_csv_export_register_cmd (GtkAction *action, GncMainWindow
static GtkActionEntry gnc_plugin_actions [] =
{
{
"CsvExportTreeAction", GTK_STOCK_CONVERT, N_("Export Account T_ree to CSV..."), NULL,
"CsvExportTreeAction", "go-next", N_("Export Account T_ree to CSV..."), NULL,
N_("Export the Account Tree to a CSV file"),
G_CALLBACK (gnc_plugin_csv_export_tree_cmd)
},
{
"CsvExportTransAction", GTK_STOCK_CONVERT, N_("Export _Transactions to CSV..."), NULL,
"CsvExportTransAction", "go-next", N_("Export _Transactions to CSV..."), NULL,
N_("Export the Transactions to a CSV file"),
G_CALLBACK (gnc_plugin_csv_export_trans_cmd)
},
{
"CsvExportRegisterAction", GTK_STOCK_CONVERT, N_("Export _Active Register to CSV..."), NULL,
"CsvExportRegisterAction", "go-next", N_("Export _Active Register to CSV..."), NULL,
N_("Export the Active Register to a CSV file"),
G_CALLBACK (gnc_plugin_csv_export_register_cmd)
},

View File

@ -45,12 +45,12 @@ static void gnc_plugin_csv_import_trans_cmd (GtkAction *action, GncMainWindowAct
static GtkActionEntry gnc_plugin_actions [] =
{
{
"CsvImportAccountAction", GTK_STOCK_CONVERT, N_("Import _Accounts from CSV..."), NULL,
"CsvImportAccountAction", "go-previous", N_("Import _Accounts from CSV..."), NULL,
N_("Import Accounts from a CSV file"),
G_CALLBACK (gnc_plugin_csv_import_tree_cmd)
},
{
"CsvImportTransAction", GTK_STOCK_CONVERT, N_("Import _Transactions from CSV..."), NULL,
"CsvImportTransAction", "go-previous", N_("Import _Transactions from CSV..."), NULL,
N_("Import Transactions from a CSV file"),
G_CALLBACK (gnc_plugin_csv_import_trans_cmd)
},

View File

@ -45,7 +45,7 @@ static void gnc_plugin_log_replay_cmd_new_log_replay (GtkAction *action, GncMain
static GtkActionEntry gnc_plugin_actions [] =
{
{
"LogReplayAction", GTK_STOCK_CONVERT, N_("_Replay GnuCash .log file..."), NULL,
"LogReplayAction", "go-previous", N_("_Replay GnuCash .log file..."), NULL,
N_("Replay a GnuCash log file after a crash. This cannot be undone."),
G_CALLBACK (gnc_plugin_log_replay_cmd_new_log_replay)
},

View File

@ -43,7 +43,7 @@ static void gnc_plugin_ofx_cmd_import (GtkAction *action, GncMainWindowActionDat
static GtkActionEntry gnc_plugin_actions [] =
{
{
"OfxImportAction", GTK_STOCK_CONVERT, N_("Import _OFX/QFX..."), NULL,
"OfxImportAction", "go-previous", N_("Import _OFX/QFX..."), NULL,
N_("Process an OFX/QFX response file"),
G_CALLBACK (gnc_plugin_ofx_cmd_import)
},

View File

@ -44,7 +44,7 @@ static void gnc_plugin_qif_import_cmd_new_qif_import (GtkAction *action, GncMain
static GtkActionEntry gnc_plugin_actions [] =
{
{
"QIFImportAction", GTK_STOCK_CONVERT, N_("Import _QIF..."), NULL,
"QIFImportAction", "go-previous", N_("Import _QIF..."), NULL,
N_("Import a Quicken QIF file"),
G_CALLBACK (gnc_plugin_qif_import_cmd_new_qif_import)
},

View File

@ -1162,7 +1162,7 @@ gnc_plugin_page_report_constr_init(GncPluginPageReport *plugin_page, gint report
report_saveas_str, G_CALLBACK(gnc_plugin_page_report_save_as_cb)
},
{
"ReportExportAction", GTK_STOCK_CONVERT, N_("Export _Report"), NULL,
"ReportExportAction", "go-next", N_("Export _Report"), NULL,
N_("Export HTML-formatted report to file"),
G_CALLBACK(gnc_plugin_page_report_export_cb)
},