Mark search criteria for translation.

2004-11-01  Christian Stimming  <stimming@tuhh.de>

	* src/gnome/dialog-find-transactions.c: Mark search criteria for
	translation -- somehow this had been missed all the time.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@10322 57a11ea4-9604-0410-9ed3-97b8803252fd
zzzoldfeatures/cashutil
Christian Stimming 22 years ago
parent a6ee03383b
commit a390638321

@ -1,3 +1,8 @@
2004-11-01 Christian Stimming <stimming@tuhh.de>
* src/gnome/dialog-find-transactions.c: Mark search criteria for
translation -- somehow this had been missed all the time.
2004-10-31 Derek Atkins <derek@ihtfp.com>
* Neil Williams' QOF Book Merge Patch #2.

@ -92,36 +92,36 @@ gnc_ui_find_transactions_dialog_create(GNCLedgerDisplay * orig_ledg)
/* Build parameter list in reverse order */
if (params == NULL) {
params = gnc_search_param_prepend (params, "All Accounts",
params = gnc_search_param_prepend (params, N_("All Accounts"),
ACCOUNT_MATCH_ALL_TYPE,
type, SPLIT_TRANS, TRANS_SPLITLIST,
SPLIT_ACCOUNT_GUID, NULL);
params = gnc_search_param_prepend (params, "Account", GNC_ID_ACCOUNT,
params = gnc_search_param_prepend (params, N_("Account"), GNC_ID_ACCOUNT,
type, SPLIT_ACCOUNT, QUERY_PARAM_GUID,
NULL);
params = gnc_search_param_prepend (params, "Balanced", NULL,
params = gnc_search_param_prepend (params, N_("Balanced"), NULL,
type, SPLIT_TRANS, TRANS_IS_BALANCED,
NULL);
params = gnc_search_param_prepend (params, "Reconcile", RECONCILED_MATCH_TYPE,
params = gnc_search_param_prepend (params, N_("Reconcile"), RECONCILED_MATCH_TYPE,
type, SPLIT_RECONCILE, NULL);
params = gnc_search_param_prepend (params, "Share Price", NULL,
params = gnc_search_param_prepend (params, N_("Share Price"), NULL,
type, SPLIT_SHARE_PRICE, NULL);
params = gnc_search_param_prepend (params, "Shares", NULL,
params = gnc_search_param_prepend (params, N_("Shares"), NULL,
type, SPLIT_AMOUNT, NULL);
params = gnc_search_param_prepend (params, "Value", NULL,
params = gnc_search_param_prepend (params, N_("Value"), NULL,
type, SPLIT_VALUE, NULL);
params = gnc_search_param_prepend (params, "Date Posted", NULL,
params = gnc_search_param_prepend (params, N_("Date Posted"), NULL,
type, SPLIT_TRANS, TRANS_DATE_POSTED,
NULL);
params = gnc_search_param_prepend (params, "Notes", NULL,
params = gnc_search_param_prepend (params, N_("Notes"), NULL,
type, SPLIT_TRANS, TRANS_NOTES, NULL);
params = gnc_search_param_prepend (params, "Action", NULL,
params = gnc_search_param_prepend (params, N_("Action"), NULL,
type, SPLIT_ACTION, NULL);
params = gnc_search_param_prepend (params, "Number", NULL,
params = gnc_search_param_prepend (params, N_("Number"), NULL,
type, SPLIT_TRANS, TRANS_NUM, NULL);
params = gnc_search_param_prepend (params, "Memo", NULL,
params = gnc_search_param_prepend (params, N_("Memo"), NULL,
type, SPLIT_MEMO, NULL);
params = gnc_search_param_prepend (params, "Description", NULL,
params = gnc_search_param_prepend (params, N_("Description"), NULL,
type, SPLIT_TRANS, TRANS_DESCRIPTION,
NULL);
}

Loading…
Cancel
Save