|
|
|
|
@ -414,15 +414,25 @@ void csv_transactions_export (CsvExportInfo *info)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Header string */
|
|
|
|
|
header = g_strconcat (end_sep, _("Date"), mid_sep, _("Account Name"), mid_sep,
|
|
|
|
|
header = g_strconcat (end_sep,
|
|
|
|
|
/* Translators: The following symbols will build the *
|
|
|
|
|
* header line of exported CSV files: */
|
|
|
|
|
_("Date"), mid_sep, _("Account Name"), mid_sep,
|
|
|
|
|
(num_action ? _("Transaction Number") : _("Number")),
|
|
|
|
|
mid_sep, _("Description"), mid_sep, _("Notes"),
|
|
|
|
|
mid_sep, _("Memo"), mid_sep, _("Category"), mid_sep,
|
|
|
|
|
_("Type"), mid_sep,
|
|
|
|
|
(num_action ? _("Number/Action") : _("Action")),
|
|
|
|
|
mid_sep, _("Reconcile"), mid_sep,
|
|
|
|
|
_("To With Sym"), mid_sep, _("From With Sym"), mid_sep,
|
|
|
|
|
_("To Num."), mid_sep, _("From Num."), mid_sep,
|
|
|
|
|
/* Translators: To amount with currency symbol */
|
|
|
|
|
_("To With Sym"), mid_sep,
|
|
|
|
|
/* Translators: From amount with currency symbol */
|
|
|
|
|
_("From With Sym"), mid_sep,
|
|
|
|
|
/* Translators: To amount, numerical only */
|
|
|
|
|
_("To Num."), mid_sep,
|
|
|
|
|
/* Translators: From amount, numerical only */
|
|
|
|
|
_("From Num."), mid_sep,
|
|
|
|
|
/* Translators: Exchange rates */
|
|
|
|
|
_("To Rate/Price"), mid_sep, _("From Rate/Price"),
|
|
|
|
|
end_sep, EOLSTR, NULL);
|
|
|
|
|
DEBUG("Header String: %s", header);
|
|
|
|
|
|