]> Dogcows Code - chaz/homebank/blob - src/ui-widgets-data.c
Merge branch 'upstream'
[chaz/homebank] / src / ui-widgets-data.c
1 /* HomeBank -- Free, easy, personal accounting for everyone.
2 * Copyright (C) 1995-2019 Maxime DOYEN
3 *
4 * This file is part of HomeBank.
5 *
6 * HomeBank is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * HomeBank is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20
21 #include "homebank.h"
22
23
24 /* = = = = = = = = = = = = = = = = = = = = */
25
26
27 gchar *RA_ARC_TYPE[] = {
28 N_("Scheduled"),
29 N_("Template"),
30 NULL
31 };
32
33
34 gchar *CYA_ASG_FIELD[] = {
35 N_("Memo"),
36 N_("Payee"),
37 NULL
38 };
39
40
41 gchar *CYA_CAT_TYPE[] = {
42 N_("Expense"),
43 N_("Income"),
44 NULL
45 };
46
47
48 gchar *CYA_CATSUBCAT[] = {
49 N_("Category"),
50 N_("Subcategory"),
51 NULL
52 };
53
54
55 gchar *nainex_label_names[] =
56 {
57 N_("Inactive"),
58 N_("Include"),
59 N_("Exclude"),
60 NULL
61 };
62
63
64
65
66 /* = = = = = = = = = = = = = = = = = = = = */
67
68
69 HbKvData CYA_ACC_TYPE[] =
70 {
71 { ACC_TYPE_NONE, N_("(no type)") },
72 { ACC_TYPE_BANK, N_("Bank") },
73 { ACC_TYPE_CASH, N_("Cash") },
74 { ACC_TYPE_ASSET, N_("Asset") },
75 { ACC_TYPE_CREDITCARD, N_("Credit card") },
76 { ACC_TYPE_LIABILITY, N_("Liability") },
77 // { ACC_TYPE_CHECKING, N_("Checkings") },
78 // { ACC_TYPE_SAVINGS, N_("Savings") },
79
80 // { ACC_TYPE_MUTUALFUND, N_("Mutual Fund") },
81 // { ACC_TYPE_INCOME, N_("Income") },
82 // { ACC_TYPE_EXPENSE, N_("Expense") },
83 // { ACC_TYPE_EQUITY, N_("Equity") },
84
85 { 0, NULL }
86 };
87
88
89 gchar *CYA_ARC_UNIT[] = {
90 N_("Day"),
91 N_("Week"),
92 N_("Month"),
93 N_("Year"),
94 NULL
95 };
96
97
98 gchar *RA_ARC_WEEKEND[] = {
99 N_("Possible"),
100 N_("Before"),
101 N_("After"),
102 NULL
103 };
104
105
106 gchar *CYA_KIND[] = {
107 N_("Exp. & Inc."),
108 N_("Expense"),
109 N_("Income"),
110 NULL
111 };
112
113
114 gchar *CYA_FLT_TYPE[] = {
115 N_("Expense"),
116 N_("Income"),
117 "",
118 N_("Any Type"),
119 NULL
120 };
121
122 gchar *CYA_FLT_STATUS[] = {
123 N_("Uncategorized"),
124 N_("Unreconciled"),
125 N_("Uncleared"),
126 N_("Reconciled"),
127 N_("Cleared"),
128 "",
129 N_("Any Status"),
130 NULL
131 };
132
133 gchar *CYA_FLT_RANGE[] = {
134 N_("This month"),
135 N_("Last month"),
136 N_("This quarter"),
137 N_("Last quarter"),
138 N_("This year"),
139 N_("Last year"),
140 "",
141 N_("Last 30 days"),
142 N_("Last 60 days"),
143 N_("Last 90 days"),
144 N_("Last 12 months"),
145 "",
146 N_("Other..."),
147 "",
148 N_("All date"),
149 NULL
150 };
151
152 //ui_filter.c only
153 gchar *CYA_SELECT[] =
154 {
155 "----",
156 N_("All month"),
157 N_("January"),
158 N_("February"),
159 N_("March"),
160 N_("April"),
161 N_("May"),
162 N_("June"),
163 N_("July"),
164 N_("August"),
165 N_("September"),
166 N_("October"),
167 N_("November"),
168 N_("December"),
169 NULL
170 };
171
172
173 /* = = = = = = = = = = = = = = = = = = = = */
174
175 //in prefs.c only
176 gchar *CYA_MONTHS[] =
177 {
178 N_("January"),
179 N_("February"),
180 N_("March"),
181 N_("April"),
182 N_("May"),
183 N_("June"),
184 N_("July"),
185 N_("August"),
186 N_("September"),
187 N_("October"),
188 N_("November"),
189 N_("December"),
190 NULL
191 };
192
193
194 //hb_report.c rep_time.c ui_budget
195 gchar *CYA_ABMONTHS[] =
196 {
197 NULL,
198 N_("Jan"),
199 N_("Feb"),
200 N_("Mar"),
201 N_("Apr"),
202 N_("May"),
203 N_("Jun"),
204 N_("Jul"),
205 N_("Aug"),
206 N_("Sep"),
207 N_("Oct"),
208 N_("Nov"),
209 N_("Dec"),
210 NULL
211 };
This page took 0.040019 seconds and 4 git commands to generate.