~ubuntu-branches/debian/experimental/homebank/experimental

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
# Amharic translation for homebank
# Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007
# This file is distributed under the same license as the homebank package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2007.
#
msgid ""
msgstr ""
"Project-Id-Version: homebank\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2007-08-16 18:19+0200\n"
"PO-Revision-Date: 2007-11-20 01:52+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Amharic <am@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2008-03-21 21:44+0000\n"
"X-Generator: Launchpad (build Unknown)\n"

#: ../data/homebank.desktop.in.in.h:1
msgid "Free, easy, personal accounting for everyone."
msgstr ""

#: ../data/homebank.desktop.in.in.h:2 ../src/homebank.c:35
msgid "HomeBank"
msgstr ""

#: ../src/def_account.c:221
msgid "(new account)"
msgstr ""

#: ../src/def_account.c:586
msgid "Edit Accounts"
msgstr ""

#: ../src/def_account.c:660
msgid "<b>Informations</b>"
msgstr ""

#: ../src/def_account.c:668
msgid "_Heading:"
msgstr ""

#: ../src/def_account.c:685
msgid "_Number:"
msgstr ""

#: ../src/def_account.c:692
msgid "_Bank name:"
msgstr ""

#: ../src/def_account.c:699
msgid "Include in the budget"
msgstr ""

#: ../src/def_account.c:704
msgid "This account was closed"
msgstr ""

#: ../src/def_account.c:716
msgid "<b>Balances</b>"
msgstr ""

#: ../src/def_account.c:720
msgid "_Initial:"
msgstr ""

#: ../src/def_account.c:731
msgid "_Overdrawn at:"
msgstr ""

#: ../src/def_account.c:745
msgid "<b>Cheque number</b>"
msgstr ""

#: ../src/def_account.c:749
msgid "Notebook _1:"
msgstr ""

#: ../src/def_account.c:763
msgid "Notebook _2:"
msgstr ""

#: ../src/def_archive.c:108
msgid "Day"
msgstr ""

#: ../src/def_archive.c:108
msgid "Week"
msgstr ""

#: ../src/def_archive.c:108 ../src/rep_stats.c:189
msgid "Month"
msgstr ""

#: ../src/def_archive.c:108 ../src/rep_stats.c:189
msgid "Year"
msgstr ""

#: ../src/def_archive.c:133
msgid "(new archive)"
msgstr ""

#: ../src/def_archive.c:593
msgid "Edit Archives"
msgstr ""

#: ../src/def_archive.c:658
msgid "<b>General infos</b>"
msgstr ""

#: ../src/def_archive.c:666
msgid "_Wording:"
msgstr ""

#: ../src/def_archive.c:674 ../src/def_operation.c:585
msgid "_Amount:"
msgstr ""

#: ../src/def_archive.c:690 ../src/def_operation.c:601 ../src/import.c:1282
#: ../src/rep_over.c:594
msgid "A_ccount:"
msgstr ""

#: ../src/def_archive.c:698 ../src/def_operation.c:609
msgid "_Validated"
msgstr ""

#: ../src/def_archive.c:706
msgid "<b>Optional infos</b>"
msgstr ""

#: ../src/def_archive.c:710 ../src/def_operation.c:641
msgid "Pay_ment:"
msgstr ""

#: ../src/def_archive.c:729 ../src/def_operation.c:660
msgid "Of notebook _2"
msgstr ""

#: ../src/def_archive.c:735 ../src/def_operation.c:666
msgid "_To account:"
msgstr ""

#: ../src/def_archive.c:742 ../src/def_operation.c:682
msgid "_Payee:"
msgstr ""

#: ../src/def_archive.c:750 ../src/def_operation.c:690 ../src/def_wallet.c:217
msgid "_Category:"
msgstr ""

#: ../src/def_archive.c:762
msgid "<b>Automated insertion</b>"
msgstr ""

#: ../src/def_archive.c:766
msgid "_Activate"
msgstr ""

#: ../src/def_archive.c:773
msgid "_Limit to:"
msgstr ""

#: ../src/def_archive.c:781
msgid "t_imes"
msgstr ""

#: ../src/def_archive.c:786
msgid "Ever_y:"
msgstr ""

#: ../src/def_archive.c:795
msgid "_Unit:"
msgstr ""

#: ../src/def_archive.c:802
msgid "_Next on:"
msgstr ""

#: ../src/def_budget.c:261 ../src/def_category.c:208
msgid "File format error"
msgstr ""

#: ../src/def_budget.c:262
msgid ""
"The csv file must contains the exact numbers of column,\n"
"separated by a semi-colon, read the help for more details."
msgstr ""

#: ../src/def_budget.c:672
msgid "Edit Budget"
msgstr ""

#: ../src/def_budget.c:733
msgid "<b>Budget for each month</b>"
msgstr ""

#: ../src/def_budget.c:741
msgid "is the same"
msgstr ""

#: ../src/def_budget.c:759
msgid "is different"
msgstr ""

#: ../src/def_budget.c:790 ../src/def_category.c:1179 ../src/def_payee.c:781
msgid "_Import"
msgstr ""

#: ../src/def_budget.c:794 ../src/def_category.c:1183 ../src/def_payee.c:785
msgid "E_xport"
msgstr ""

#: ../src/def_category.c:209
msgid ""
"The csv file must contains the exact numbers of column,\n"
"separated by a semi-colon, please see the help for more details."
msgstr ""

#: ../src/def_category.c:652 ../src/def_payee.c:465
msgid "Modify..."
msgstr ""

#: ../src/def_category.c:674
msgid "_Income"
msgstr ""

#: ../src/def_category.c:1081
msgid "Edit Categories"
msgstr ""

#: ../src/def_category.c:1122
msgid "I_ncome"
msgstr ""

#: ../src/def_filter.c:51
msgid "Inactive"
msgstr ""

#: ../src/def_filter.c:51
msgid "Include"
msgstr ""

#: ../src/def_filter.c:51
msgid "Exclude"
msgstr ""

#: ../src/def_filter.c:738 ../src/def_filter.c:787 ../src/def_filter.c:836
#: ../src/def_filter.c:914 ../src/def_filter.c:1009 ../src/def_filter.c:1053
msgid "_Option:"
msgstr ""

#: ../src/def_filter.c:759 ../src/def_filter.c:808 ../src/def_filter.c:857
#: ../src/dsp_wallet.c:1195 ../src/homebank.c:199 ../src/homebank.c:299
msgid "All"
msgstr ""

#: ../src/def_filter.c:763 ../src/def_filter.c:812 ../src/def_filter.c:861
msgid "None"
msgstr ""

#: ../src/def_filter.c:767 ../src/def_filter.c:816 ../src/def_filter.c:865
msgid "Invert"
msgstr ""

#: ../src/def_filter.c:905
msgid "<b>Filter Date</b>"
msgstr ""

#: ../src/def_filter.c:922 ../src/def_filter.c:1018 ../src/rep_budget.c:880
#: ../src/rep_car.c:624 ../src/rep_over.c:615 ../src/rep_stats.c:1308
msgid "_From:"
msgstr ""

#: ../src/def_filter.c:930 ../src/def_filter.c:1025 ../src/rep_budget.c:886
#: ../src/rep_car.c:631 ../src/rep_over.c:621 ../src/rep_stats.c:1314
msgid "_To:"
msgstr ""

#: ../src/def_filter.c:952
msgid "<b>Filter State</b>"
msgstr ""

#: ../src/def_filter.c:960
msgid "Validated:"
msgstr ""

#: ../src/def_filter.c:969
msgid "Force:"
msgstr ""

#. label = gtk_label_new(NULL);
#. ----------------------------------------- l, r, t, b
#. gtk_table_attach_defaults (GTK_TABLE (table), label, 0, 1, row, row+1);
#: ../src/def_filter.c:975
msgid "display 'Added'"
msgstr ""

#. label = gtk_label_new(NULL);
#. gtk_table_attach_defaults (GTK_TABLE (table), label, 0, 1, row, row+1);
#: ../src/def_filter.c:982
msgid "display 'Edited'"
msgstr ""

#: ../src/def_filter.c:1001
msgid "<b>Filter Amount</b>"
msgstr ""

#: ../src/def_filter.c:1044
msgid "<b>Filter Payment</b>"
msgstr ""

#: ../src/def_filter.c:1104
msgid "Edit Filter"
msgstr ""

#. common (date + state + amount)
#: ../src/def_filter.c:1138 ../src/def_pref.c:153
msgid "General"
msgstr ""

#: ../src/def_filter.c:1144 ../src/def_pref.c:1691 ../src/list_operation.c:350
#: ../src/rep_budget.c:1204 ../src/rep_stats.c:189
msgid "Category"
msgstr ""

#: ../src/def_filter.c:1149 ../src/def_pref.c:1686 ../src/list_operation.c:290
#: ../src/list_upcoming.c:172 ../src/rep_stats.c:189
msgid "Payee"
msgstr ""

#: ../src/def_filter.c:1158 ../src/list_account.c:255
#: ../src/list_operation.c:655
msgid "Account"
msgstr ""

#: ../src/def_lists.c:153 ../src/def_lists.c:273 ../src/def_lists.c:413
#: ../src/def_pref.c:1810
msgid "Visible"
msgstr ""

#: ../src/def_lists.c:228 ../src/def_lists.c:359 ../src/def_lists.c:575
#: ../src/widgets.c:60 ../src/widgets.c:506 ../src/widgets.c:651
msgid "(none)"
msgstr ""

#: ../src/def_operation.c:81 ../src/dsp_wallet.c:222
msgid "Add transaction"
msgstr ""

#: ../src/def_operation.c:82
msgid "Inherit transaction"
msgstr ""

#: ../src/def_operation.c:83
msgid "Modify transaction"
msgstr ""

#. warn the useer we have notfound the child internal transfert
#: ../src/def_operation.c:264
#, c-format
msgid ""
"Could not propagate changes to child transfert:\n"
"\n"
"account:  %s\n"
"date:  %s\n"
"amount:  %s\n"
"\n"
"You should fix the problem manually."
msgstr ""

#: ../src/def_operation.c:559
msgid "<b>General information</b>"
msgstr ""

#: ../src/def_operation.c:567
msgid "_Date:"
msgstr ""

#: ../src/def_operation.c:576
msgid "_Description:"
msgstr ""

#: ../src/def_operation.c:614
msgid "_Remind"
msgstr ""

#: ../src/def_operation.c:633
msgid "<b>Optional information</b>"
msgstr ""

#: ../src/def_operation.c:673
msgid "_Info:"
msgstr ""

#: ../src/def_operation.c:795
msgid "_Fill with archive:"
msgstr ""

#: ../src/def_payee.c:711
msgid "Edit Payees"
msgstr ""

#: ../src/def_pref.c:154
msgid "Interface"
msgstr ""

#: ../src/def_pref.c:155
msgid "Columns"
msgstr ""

#: ../src/def_pref.c:156
msgid "Display format"
msgstr ""

#. N_("Help system"),
#: ../src/def_pref.c:158
msgid "Euro options"
msgstr ""

#: ../src/def_pref.c:159
msgid "Report options"
msgstr ""

#: ../src/def_pref.c:164
msgid "System defaults"
msgstr ""

#: ../src/def_pref.c:165
msgid "Icons only"
msgstr ""

#: ../src/def_pref.c:166
msgid "Text only"
msgstr ""

#: ../src/def_pref.c:167
msgid "Text under icons"
msgstr ""

#: ../src/def_pref.c:168
msgid "Text beside icons"
msgstr ""

#: ../src/def_pref.c:716
msgid "<b>Statistics options</b>"
msgstr ""

#: ../src/def_pref.c:724
msgid "Show by _amount"
msgstr ""

#: ../src/def_pref.c:729
msgid "Show _rate column"
msgstr ""

#: ../src/def_pref.c:734 ../src/def_pref.c:744
msgid "Show _details"
msgstr ""

#: ../src/def_pref.c:740
msgid "<b>Budget options</b>"
msgstr ""

#: ../src/def_pref.c:773 ../src/def_pref.c:1135 ../src/def_wallet.c:177
msgid "<b>General</b>"
msgstr ""

#: ../src/def_pref.c:782
msgid "Fill from:"
msgstr ""

#: ../src/def_pref.c:791
msgid "Country:"
msgstr ""

#: ../src/def_pref.c:800
msgid "Value:"
msgstr ""

#: ../src/def_pref.c:810
msgid "<b>Numbers format</b>"
msgstr ""

#: ../src/def_pref.c:814 ../src/def_pref.c:970
msgid "Prefix symbol:"
msgstr ""

#: ../src/def_pref.c:821 ../src/def_pref.c:977
msgid "Suffix symbol:"
msgstr ""

#: ../src/def_pref.c:828 ../src/def_pref.c:984
msgid "Decimal char:"
msgstr ""

#: ../src/def_pref.c:835 ../src/def_pref.c:991
msgid "Grouping char:"
msgstr ""

#: ../src/def_pref.c:842 ../src/def_pref.c:998
msgid "_Frac digits:"
msgstr ""

#: ../src/def_pref.c:941
msgid "<b>Date options</b>"
msgstr ""

#: ../src/def_pref.c:949
msgid "_Date format:"
msgstr ""

#: ../src/def_pref.c:966
msgid "<b>Numbers options</b>"
msgstr ""

#: ../src/def_pref.c:1029
msgid "<b>Measurement units</b>"
msgstr ""

#: ../src/def_pref.c:1033
msgid "Use _British units"
msgstr ""

#: ../src/def_pref.c:1059
msgid "<b>Transaction list</b>"
msgstr ""

#: ../src/def_pref.c:1139
msgid "_Toolbar:"
msgstr ""

#: ../src/def_pref.c:1163
msgid "<b>Amount colors</b>"
msgstr ""

#: ../src/def_pref.c:1167
msgid "_Expense:"
msgstr ""

#: ../src/def_pref.c:1177
msgid "_Income:"
msgstr ""

#: ../src/def_pref.c:1187
msgid "_Warning:"
msgstr ""

#: ../src/def_pref.c:1216
msgid "<b>Folders</b>"
msgstr ""

#: ../src/def_pref.c:1224
msgid "_Wallet:"
msgstr ""

#: ../src/def_pref.c:1240
msgid "_Import:"
msgstr ""

#: ../src/def_pref.c:1258
msgid "_Run the wizard"
msgstr ""

#: ../src/def_pref.c:1267
msgid "<b>Initial date filter</b>"
msgstr ""

#: ../src/def_pref.c:1271 ../src/dsp_account.c:2006 ../src/rep_budget.c:892
#: ../src/rep_car.c:637 ../src/rep_over.c:627 ../src/rep_stats.c:1320
msgid "_Range:"
msgstr ""

#: ../src/def_pref.c:1376
msgid "Preferences"
msgstr ""

#. {	N_(""), COL_OPE_STATUS,		},
#. {	N_(""), COL_OPE_DATE,		},
#: ../src/def_pref.c:1685 ../src/list_operation.c:267
#: ../src/list_operation.c:676
msgid "Info"
msgstr ""

#: ../src/def_pref.c:1687 ../src/list_operation.c:307
#: ../src/list_operation.c:702 ../src/list_upcoming.c:183
#: ../src/rep_over.c:955
msgid "Description"
msgstr ""

#. column: Amount
#: ../src/def_pref.c:1688 ../src/list_operation.c:462
#: ../src/list_operation.c:712 ../src/list_upcoming.c:194
#: ../src/rep_car.c:1012
msgid "Amount"
msgstr ""

#. column: Expense
#: ../src/def_pref.c:1689 ../src/list_operation.c:465 ../src/rep_budget.c:98
#: ../src/rep_over.c:964 ../src/rep_stats.c:193 ../src/rep_stats.c:1682
msgid "Expense"
msgstr ""

#. column: Income
#: ../src/def_pref.c:1690 ../src/list_operation.c:468 ../src/rep_budget.c:98
#: ../src/rep_over.c:968 ../src/rep_stats.c:193 ../src/rep_stats.c:1688
msgid "Income"
msgstr ""

#: ../src/def_pref.c:1821
msgid "Column"
msgstr ""

#: ../src/def_wallet.c:145
msgid "Wallet properties"
msgstr ""

#: ../src/def_wallet.c:185
msgid "_Owner:"
msgstr ""

#: ../src/def_wallet.c:194
msgid "<b>Automatic transactions</b>"
msgstr ""

#: ../src/def_wallet.c:201
msgid "_Insert:"
msgstr ""

#: ../src/def_wallet.c:206
msgid "days into the future"
msgstr ""

#: ../src/def_wallet.c:213
msgid "<b>Car cost</b>"
msgstr ""

#. name, stock id, label
#: ../src/dsp_account.c:160
msgid "_Account"
msgstr ""

#: ../src/dsp_account.c:161
msgid "Transacti_on"
msgstr ""

#: ../src/dsp_account.c:162
msgid "_Tools"
msgstr ""

#: ../src/dsp_account.c:164 ../src/dsp_wallet.c:209
msgid "_Close"
msgstr ""

#: ../src/dsp_account.c:164
msgid "Close the current account"
msgstr ""

#. name, stock id, label, accelerator, tooltip
#: ../src/dsp_account.c:167
msgid "_Filter..."
msgstr ""

#: ../src/dsp_account.c:167
msgid "Open the list filter"
msgstr ""

#: ../src/dsp_account.c:169
msgid "_Add..."
msgstr ""

#: ../src/dsp_account.c:169
msgid "Add a new transaction"
msgstr ""

#: ../src/dsp_account.c:170
msgid "_Inherit..."
msgstr ""

#: ../src/dsp_account.c:170
msgid "Inherit from the active transaction"
msgstr ""

#: ../src/dsp_account.c:171
msgid "_Edit..."
msgstr ""

#: ../src/dsp_account.c:171
msgid "Edit the active transaction"
msgstr ""

#: ../src/dsp_account.c:172
msgid "(In)_Validate..."
msgstr ""

#: ../src/dsp_account.c:172
msgid "Validate the active transactions"
msgstr ""

#: ../src/dsp_account.c:173
msgid "_Remove..."
msgstr ""

#: ../src/dsp_account.c:173
msgid "Remove the active transactions"
msgstr ""

#: ../src/dsp_account.c:174
msgid "Make an archive..."
msgstr ""

#: ../src/dsp_account.c:176
msgid "Import CSV..."
msgstr ""

#: ../src/dsp_account.c:177
msgid "Export CSV..."
msgstr ""

#: ../src/dsp_account.c:361
msgid "No corresponding transfert can be found."
msgstr ""

#. warn the useer we have notfound the child internal transfert
#: ../src/dsp_account.c:381
#, c-format
msgid ""
"Could not delete child transfert:\n"
"\n"
"account:  %s\n"
"date:  %s\n"
"amount:  %s\n"
"\n"
"You should fix the problem manually."
msgstr ""

#: ../src/dsp_account.c:604
msgid "Transaction CSV import result"
msgstr ""

#: ../src/dsp_account.c:605
#, c-format
msgid ""
"%d transactions inserted\n"
"%d errors in the file"
msgstr ""

#: ../src/dsp_account.c:728
msgid ""
"Do you want to create an Archive with\n"
"each of the selected transaction ?"
msgstr ""

#: ../src/dsp_account.c:1258
msgid ""
"Do you want to delete\n"
"each of the selected transaction ?"
msgstr ""

#: ../src/dsp_account.c:1600
msgid "Modify date..."
msgstr ""

#: ../src/dsp_account.c:1605
msgid "Modify info..."
msgstr ""

#: ../src/dsp_account.c:1612
msgid "Modify payee..."
msgstr ""

#: ../src/dsp_account.c:1618
msgid "Modify description..."
msgstr ""

#: ../src/dsp_account.c:1624
msgid "Modify amount..."
msgstr ""

#: ../src/dsp_account.c:1629
msgid "Modify category..."
msgstr ""

#: ../src/dsp_account.c:2011 ../src/rep_budget.c:898 ../src/rep_car.c:643
#: ../src/rep_over.c:633 ../src/rep_stats.c:1326
msgid "_Month:"
msgstr ""

#: ../src/dsp_account.c:2016 ../src/rep_budget.c:904 ../src/rep_car.c:649
#: ../src/rep_over.c:639 ../src/rep_stats.c:1332
msgid "_Year:"
msgstr ""

#: ../src/dsp_account.c:2036
msgid "Future:"
msgstr ""

#: ../src/dsp_account.c:2045
msgid "Today:"
msgstr ""

#: ../src/dsp_account.c:2054
msgid "Bank:"
msgstr ""

#: ../src/dsp_account.c:2060
msgid "Minor"
msgstr ""

#. name, stock id, label
#: ../src/dsp_wallet.c:190
msgid "_File"
msgstr ""

#: ../src/dsp_wallet.c:191
msgid "_Edit"
msgstr ""

#: ../src/dsp_wallet.c:192
msgid "_Display"
msgstr ""

#: ../src/dsp_wallet.c:193
msgid "_Transactions"
msgstr ""

#: ../src/dsp_wallet.c:194
msgid "_Reports"
msgstr ""

#: ../src/dsp_wallet.c:195
msgid "_Help"
msgstr ""

#. name, stock id, label, accelerator, tooltip
#. FileMenu
#: ../src/dsp_wallet.c:200
msgid "_New"
msgstr ""

#: ../src/dsp_wallet.c:200
msgid "Create a new wallet"
msgstr ""

#: ../src/dsp_wallet.c:201
msgid "_Open..."
msgstr ""

#: ../src/dsp_wallet.c:201
msgid "Open a wallet"
msgstr ""

#: ../src/dsp_wallet.c:202
msgid "Open _Recent"
msgstr ""

#: ../src/dsp_wallet.c:203
msgid "_Save"
msgstr ""

#: ../src/dsp_wallet.c:203
msgid "Save the current wallet"
msgstr ""

#: ../src/dsp_wallet.c:204
msgid "Save As..."
msgstr ""

#: ../src/dsp_wallet.c:204
msgid "Save the current wallet with a different name"
msgstr ""

#: ../src/dsp_wallet.c:205
msgid "Revert"
msgstr ""

#: ../src/dsp_wallet.c:205
msgid "Revert to a saved version of this file"
msgstr ""

#: ../src/dsp_wallet.c:206
msgid "Import..."
msgstr ""

#: ../src/dsp_wallet.c:206
msgid "Open the import assistant"
msgstr ""

#: ../src/dsp_wallet.c:207
msgid "Import Amiga..."
msgstr ""

#: ../src/dsp_wallet.c:207
msgid "Import a file in Amiga 3.0 format"
msgstr ""

#: ../src/dsp_wallet.c:208
msgid "_Properties..."
msgstr ""

#: ../src/dsp_wallet.c:208
msgid "Configure wallet"
msgstr ""

#: ../src/dsp_wallet.c:209
msgid "Close the current wallet"
msgstr ""

#: ../src/dsp_wallet.c:210
msgid "_Quit"
msgstr ""

#: ../src/dsp_wallet.c:210
msgid "Quit homebank"
msgstr ""

#. EditMenu
#: ../src/dsp_wallet.c:213
msgid "Acc_ounts..."
msgstr ""

#: ../src/dsp_wallet.c:213
msgid "Configure the accounts"
msgstr ""

#: ../src/dsp_wallet.c:214
msgid "_Payees..."
msgstr ""

#: ../src/dsp_wallet.c:214
msgid "Configure the payees"
msgstr ""

#: ../src/dsp_wallet.c:215
msgid "Categories..."
msgstr ""

#: ../src/dsp_wallet.c:215
msgid "Configure the categories"
msgstr ""

#: ../src/dsp_wallet.c:216
msgid "Arc_hives..."
msgstr ""

#: ../src/dsp_wallet.c:216
msgid "Configure the archives"
msgstr ""

#: ../src/dsp_wallet.c:217
msgid "Budget..."
msgstr ""

#: ../src/dsp_wallet.c:217
msgid "Configure the budget"
msgstr ""

#: ../src/dsp_wallet.c:218
msgid "Preferences..."
msgstr ""

#: ../src/dsp_wallet.c:218
msgid "Configure homebank"
msgstr ""

#. OperationMenu
#: ../src/dsp_wallet.c:221
msgid "Show..."
msgstr ""

#: ../src/dsp_wallet.c:221
msgid "Shows selected account transactions"
msgstr ""

#: ../src/dsp_wallet.c:222
msgid "Add..."
msgstr ""

#: ../src/dsp_wallet.c:223
msgid "Check automated..."
msgstr ""

#: ../src/dsp_wallet.c:223
msgid "Insert pending automated transactions"
msgstr ""

#. ReportMenu
#: ../src/dsp_wallet.c:226
msgid "_Statistics..."
msgstr ""

#: ../src/dsp_wallet.c:226
msgid "Open the Statistics report"
msgstr ""

#: ../src/dsp_wallet.c:227
msgid "B_udget..."
msgstr ""

#: ../src/dsp_wallet.c:227
msgid "Open the Budget report"
msgstr ""

#: ../src/dsp_wallet.c:228
msgid "Ove_rdrawn..."
msgstr ""

#: ../src/dsp_wallet.c:228
msgid "Open the Overdrawn report"
msgstr ""

#: ../src/dsp_wallet.c:229
msgid "_Car cost..."
msgstr ""

#: ../src/dsp_wallet.c:229
msgid "Open the Car cost report"
msgstr ""

#. HelpMenu
#: ../src/dsp_wallet.c:232
msgid "_Contents"
msgstr ""

#: ../src/dsp_wallet.c:232
msgid "Documentation about HomeBank"
msgstr ""

#: ../src/dsp_wallet.c:233
msgid "Get Help Online..."
msgstr ""

#: ../src/dsp_wallet.c:233
msgid "Connect to the LaunchPad website for online help"
msgstr ""

#: ../src/dsp_wallet.c:234
msgid "Translate this Application..."
msgstr ""

#: ../src/dsp_wallet.c:234
msgid "Connect to the LaunchPad website to help translate this application"
msgstr ""

#: ../src/dsp_wallet.c:235
msgid "Report a Problem..."
msgstr ""

#: ../src/dsp_wallet.c:235
msgid "Connect to the LaunchPad website to help fix problems"
msgstr ""

#: ../src/dsp_wallet.c:237
msgid "_About"
msgstr ""

#: ../src/dsp_wallet.c:237
msgid "About HomeBank"
msgstr ""

#. name         , stockid, label, accelerator, tooltip, callback, is_active
#: ../src/dsp_wallet.c:245
msgid "Minor currency"
msgstr ""

#: ../src/dsp_wallet.c:570 ../src/dsp_wallet.c:621 ../src/dsp_wallet.c:637
msgid "No suitable web browser executable could be found."
msgstr ""

#: ../src/dsp_wallet.c:571 ../src/dsp_wallet.c:590 ../src/dsp_wallet.c:606
#: ../src/dsp_wallet.c:622 ../src/dsp_wallet.c:638
#, c-format
msgid "Could not display the URL '%s'"
msgstr ""

#: ../src/dsp_wallet.c:589 ../src/dsp_wallet.c:605
msgid "No suitable web browser application could be found."
msgstr ""

#. "translator-credits"	, "trans",
#: ../src/dsp_wallet.c:692
msgid "Free, easy, personal accounting for everyone !"
msgstr ""

#: ../src/dsp_wallet.c:726
msgid ""
"Do you want to save the changes\n"
"in the current file ?"
msgstr ""

#: ../src/dsp_wallet.c:730
#, c-format
msgid ""
"If you do not save, %d changes will be\n"
"definitively lost."
msgstr ""

#: ../src/dsp_wallet.c:735
msgid "Do _not save"
msgstr ""

#: ../src/dsp_wallet.c:807
msgid "(Nobody)"
msgstr ""

#: ../src/dsp_wallet.c:1108
msgid "No transaction to insert"
msgstr ""

#: ../src/dsp_wallet.c:1110
#, c-format
msgid "%d transactions inserted"
msgstr ""

#: ../src/dsp_wallet.c:1113
msgid "Check automated transactions result"
msgstr ""

#: ../src/dsp_wallet.c:1138
msgid "Import Amiga file"
msgstr ""

#: ../src/dsp_wallet.c:1263
#, c-format
msgid "Revert to the previously saved file of '%s'?"
msgstr ""

#: ../src/dsp_wallet.c:1269
msgid ""
"- Changes made to the wallet will be permanently lost\n"
"- Wallet will be restored to the last save (.old)"
msgstr ""

#: ../src/dsp_wallet.c:2269
msgid "<b>Accounts summary</b>"
msgstr ""

#: ../src/dsp_wallet.c:2285
msgid "<b>Upcoming automated transactions</b>"
msgstr ""

#: ../src/homebank.c:116
msgid "Output version information and exit"
msgstr ""

#: ../src/homebank.c:119
msgid "[FILE]"
msgstr ""

#: ../src/homebank.c:177
msgid "Import from CSV"
msgstr ""

#: ../src/homebank.c:182
msgid "Export as CSV"
msgstr ""

#: ../src/homebank.c:194
msgid "CSV files"
msgstr ""

#: ../src/homebank.c:294
msgid "Amiga files"
msgstr ""

#: ../src/homebank.c:927 ../src/homebank.c:928
msgid "HomeBank options"
msgstr ""

#: ../src/homebank.c:1025
#, c-format
msgid "Unable to open '%s', the file does not exist.\n"
msgstr ""

#: ../src/imp_amiga.c:104
msgid "Import HomeBank Amiga File"
msgstr ""

#: ../src/imp_amiga.c:105
#, c-format
msgid ""
"Wrong Amiga file version %d.%d\n"
"( must be > 3.0 )"
msgstr ""

#: ../src/import.c:303 ../src/import.c:650
#, c-format
msgid "new%d"
msgstr ""

#: ../src/import.c:695
msgid "Unknow/Invalid file..."
msgstr ""

#: ../src/import.c:699
msgid "OFX file recognised !"
msgstr ""

#: ../src/import.c:704
msgid "CSV operation file recognised !"
msgstr ""

#: ../src/import.c:1122
#, c-format
msgid ""
"%d accounts will be created.\n"
"\n"
"%d transactions will be imported.\n"
"%d transactions will be rejected."
msgstr ""

#: ../src/import.c:1136
#, c-format
msgid ""
"%d transactions will be imported.\n"
"%d transactions will be rejected."
msgstr ""

#: ../src/import.c:1152
#, c-format
msgid "Import assistant (%d of %d)"
msgstr ""

#: ../src/import.c:1193
msgid ""
"HomeBank can import transactions from several file formats:\n"
"\n"
"- CSV (Homebank transaction CSV export format only)\n"
"- OFX/QFX (optional)\n"
"\n"
"Other formats or not supported at the moment.\n"
"\n"
"The import process has several steps. Your HomeBank accounts\n"
"will not be changed until you click \"Apply\" at the end of this assistant.\n"
"\n"
"Now, click \"forward\" to start importing a file."
msgstr ""

#: ../src/import.c:1212
msgid "Transaction import wizard"
msgstr ""

#. gtk_assistant_set_page_type (GTK_ASSISTANT (assistant), vbox, GTK_ASSISTANT_PAGE_CONTENT);
#: ../src/import.c:1247
msgid "Select a file to load"
msgstr ""

#: ../src/import.c:1272
msgid ""
"The file you selected appears to contains transactions\n"
"for just one account, without specifying its name.\n"
"\n"
"Please select the account to which these transactions can be attached."
msgstr ""

#: ../src/import.c:1292
msgid "Set the default account"
msgstr ""

#: ../src/import.c:1319
msgid ""
"Duplicate transactions will be found and unselected\n"
"for import but can, of course, be reselected.\n"
"\n"
"The match is done in order by account, amount and date.\n"
"For date, you can set a tolerance:\n"
"\n"
"- 0 means an exact match.\n"
"- 1-14 to match +/- 1 to 14 days\n"
"\n"
msgstr ""

#: ../src/import.c:1332
msgid "Date _tolerance:"
msgstr ""

#: ../src/import.c:1337
msgid "days"
msgstr ""

#: ../src/import.c:1344
msgid "Set the duplicate match option"
msgstr ""

#: ../src/import.c:1368
msgid "<b>Transactions to import</b>"
msgstr ""

#: ../src/import.c:1383
msgid "<b>Possible duplicate for the above selected transaction</b>"
msgstr ""

#. Create the expander
#: ../src/import.c:1387
msgid "Details"
msgstr ""

#. gtk_assistant_set_page_type (GTK_ASSISTANT (assistant), vbox, GTK_ASSISTANT_PAGE_CONFIRM);
#. gtk_assistant_set_page_complete (GTK_ASSISTANT (assistant), vbox, TRUE);
#: ../src/import.c:1411
msgid "Select transactions to import"
msgstr ""

#: ../src/import.c:1439
msgid ""
"Click \"Apply\" to update your accounts.\n"
"\n"
msgstr ""

#. gtk_assistant_set_page_complete (GTK_ASSISTANT (assistant), label, TRUE);
#: ../src/import.c:1452
msgid "Update your accounts"
msgstr ""

#: ../src/list_account.c:269 ../src/list_operation.c:422
msgid "State"
msgstr ""

#. column 4: Bank
#: ../src/list_account.c:287
msgid "Bank"
msgstr ""

#. column 5: Today
#: ../src/list_account.c:291
msgid "Today"
msgstr ""

#. column 6: Future
#: ../src/list_account.c:295
msgid "Future"
msgstr ""

#: ../src/list_operation.c:444 ../src/list_operation.c:666
#: ../src/rep_car.c:969 ../src/rep_over.c:945
msgid "Date"
msgstr ""

#: ../src/list_upcoming.c:206
msgid "Next on"
msgstr ""

#: ../src/list_upcoming.c:218
msgid "Remaining"
msgstr ""

#: ../src/rep_budget.c:96
msgid "Spent & Budget"
msgstr ""

#. column: Expense
#: ../src/rep_budget.c:96 ../src/rep_budget.c:1214
msgid "Spent"
msgstr ""

#. column: Income
#: ../src/rep_budget.c:96 ../src/rep_budget.c:1218
msgid "Budget"
msgstr ""

#. column: Balance
#: ../src/rep_budget.c:96 ../src/rep_budget.c:1222
msgid "Decay"
msgstr ""

#: ../src/rep_budget.c:104 ../src/rep_over.c:91 ../src/rep_stats.c:124
msgid "List"
msgstr ""

#: ../src/rep_budget.c:104 ../src/rep_over.c:91 ../src/rep_stats.c:124
msgid "View results as list"
msgstr ""

#: ../src/rep_budget.c:105 ../src/rep_stats.c:125
msgid "Bar"
msgstr ""

#: ../src/rep_budget.c:105 ../src/rep_stats.c:125
msgid "View results as bars"
msgstr ""

#: ../src/rep_budget.c:107 ../src/rep_stats.c:128
msgid "Detail"
msgstr ""

#: ../src/rep_budget.c:107 ../src/rep_stats.c:128
msgid "Toggle detail"
msgstr ""

#: ../src/rep_budget.c:108 ../src/rep_stats.c:129
msgid "Legend"
msgstr ""

#: ../src/rep_budget.c:108 ../src/rep_stats.c:129
msgid "Toggle legend"
msgstr ""

#: ../src/rep_budget.c:110 ../src/rep_over.c:94 ../src/rep_stats.c:133
msgid "Refresh"
msgstr ""

#: ../src/rep_budget.c:110 ../src/rep_over.c:94 ../src/rep_stats.c:133
msgid "Refresh results"
msgstr ""

#: ../src/rep_budget.c:822
msgid "Budget report"
msgstr ""

#: ../src/rep_budget.c:848 ../src/rep_car.c:598 ../src/rep_over.c:590
#: ../src/rep_stats.c:1265
msgid "<b>Display</b>"
msgstr ""

#: ../src/rep_budget.c:852
msgid "_Kind:"
msgstr ""

#: ../src/rep_budget.c:859 ../src/rep_stats.c:1276
msgid "_View:"
msgstr ""

#: ../src/rep_budget.c:866 ../src/rep_car.c:610 ../src/rep_over.c:601
#: ../src/rep_stats.c:1288
msgid "_Minor currency"
msgstr ""

#: ../src/rep_budget.c:876 ../src/rep_car.c:620 ../src/rep_over.c:611
#: ../src/rep_stats.c:1304
msgid "<b>Date filter</b>"
msgstr ""

#: ../src/rep_budget.c:952
msgid "Decay:"
msgstr ""

#: ../src/rep_budget.c:961
msgid "Budget:"
msgstr ""

#: ../src/rep_budget.c:970
msgid "Spent:"
msgstr ""

#: ../src/rep_car.c:571
msgid "Car report"
msgstr ""

#: ../src/rep_car.c:602
msgid "_Car category:"
msgstr ""

#. column: consumption for 100Km
#: ../src/rep_car.c:686 ../src/rep_car.c:1020
msgid "100 Km"
msgstr ""

#: ../src/rep_car.c:689
msgid "Total"
msgstr ""

#: ../src/rep_car.c:693
msgid "Meter:"
msgstr ""

#: ../src/rep_car.c:697
msgid "Consumption:"
msgstr ""

#: ../src/rep_car.c:701
msgid "Fuel cost:"
msgstr ""

#: ../src/rep_car.c:705
msgid "Other cost:"
msgstr ""

#: ../src/rep_car.c:709
msgid "Total cost:"
msgstr ""

#. 
#. LST_CAR_DATE,
#. LST_CAR_WORDING,
#. LST_CAR_METER,
#. LST_CAR_FUEL,
#. LST_CAR_PRICE,
#. LST_CAR_AMOUNT,
#. LST_CAR_DIST,
#. LST_CAR_100KM
#. 
#. 
#. column: Wording
#. 
#. column = gtk_tree_view_column_new();
#. gtk_tree_view_column_set_title(column, _("Wording"));
#. gtk_tree_view_append_column (GTK_TREE_VIEW(view), column);
#. renderer = gtk_cell_renderer_text_new();
#. gtk_tree_view_column_pack_start(column, renderer, TRUE);
#. gtk_tree_view_column_add_attribute(column, renderer, "text", LST_CAR_WORDING);
#. //gtk_tree_view_column_set_cell_data_func(column, renderer, repcar_text_cell_data_function, NULL, NULL);
#. 
#. column: Meter
#: ../src/rep_car.c:1000
msgid "Meter"
msgstr ""

#. column: Fuel load
#: ../src/rep_car.c:1004
msgid "Fuel"
msgstr ""

#. column: Price by unit
#: ../src/rep_car.c:1008
msgid "Price"
msgstr ""

#. column: Distance done
#: ../src/rep_car.c:1016
msgid "Dist."
msgstr ""

#: ../src/rep_over.c:92
msgid "Line"
msgstr ""

#: ../src/rep_over.c:92
msgid "View results as lines"
msgstr ""

#: ../src/rep_over.c:561
msgid "Overdrawn report"
msgstr ""

#. column: Balance
#: ../src/rep_over.c:972 ../src/rep_stats.c:193 ../src/rep_stats.c:1694
msgid "Balance"
msgstr ""

#: ../src/rep_stats.c:126
msgid "Pie"
msgstr ""

#: ../src/rep_stats.c:126
msgid "View results as pies"
msgstr ""

#: ../src/rep_stats.c:130
msgid "Rate"
msgstr ""

#: ../src/rep_stats.c:130
msgid "Toggle rate"
msgstr ""

#: ../src/rep_stats.c:132
msgid "Filter"
msgstr ""

#: ../src/rep_stats.c:132
msgid "Edit the filter"
msgstr ""

#: ../src/rep_stats.c:193
msgid "Exp. & Inc."
msgstr ""

#: ../src/rep_stats.c:197
msgid "All date"
msgstr ""

#: ../src/rep_stats.c:198
msgid "Current month"
msgstr ""

#: ../src/rep_stats.c:199
msgid "Current year"
msgstr ""

#: ../src/rep_stats.c:200
msgid "Previous month"
msgstr ""

#: ../src/rep_stats.c:201
msgid "Previous year"
msgstr ""

#: ../src/rep_stats.c:202
msgid "Last 30 days"
msgstr ""

#: ../src/rep_stats.c:203
msgid "Last 2 months"
msgstr ""

#: ../src/rep_stats.c:204
msgid "Last 3 months"
msgstr ""

#: ../src/rep_stats.c:205
msgid "Last 4 months"
msgstr ""

#: ../src/rep_stats.c:206
msgid "Last 6 months"
msgstr ""

#: ../src/rep_stats.c:207
msgid "Last 12 months"
msgstr ""

#: ../src/rep_stats.c:214
msgid "All month"
msgstr ""

#: ../src/rep_stats.c:215 ../src/rep_stats.c:233
msgid "January"
msgstr ""

#: ../src/rep_stats.c:216 ../src/rep_stats.c:234
msgid "February"
msgstr ""

#: ../src/rep_stats.c:217 ../src/rep_stats.c:235
msgid "March"
msgstr ""

#: ../src/rep_stats.c:218 ../src/rep_stats.c:236
msgid "April"
msgstr ""

#: ../src/rep_stats.c:219 ../src/rep_stats.c:237
msgid "May"
msgstr ""

#: ../src/rep_stats.c:220 ../src/rep_stats.c:238
msgid "June"
msgstr ""

#: ../src/rep_stats.c:221 ../src/rep_stats.c:239
msgid "July"
msgstr ""

#: ../src/rep_stats.c:222 ../src/rep_stats.c:240
msgid "August"
msgstr ""

#: ../src/rep_stats.c:223 ../src/rep_stats.c:241
msgid "September"
msgstr ""

#: ../src/rep_stats.c:224 ../src/rep_stats.c:242
msgid "October"
msgstr ""

#: ../src/rep_stats.c:225 ../src/rep_stats.c:243
msgid "November"
msgstr ""

#: ../src/rep_stats.c:226 ../src/rep_stats.c:244
msgid "December"
msgstr ""

#: ../src/rep_stats.c:1239
msgid "Statistics Report"
msgstr ""

#: ../src/rep_stats.c:1269
msgid "_For:"
msgstr ""

#: ../src/rep_stats.c:1283
msgid "By _amount"
msgstr ""

#: ../src/rep_stats.c:1381
msgid "Balance:"
msgstr ""

#: ../src/rep_stats.c:1390
msgid "Income:"
msgstr ""

#: ../src/rep_stats.c:1399
msgid "Expense:"
msgstr ""

#: ../src/rep_stats.c:1672
msgid "Result"
msgstr ""

#: ../src/widgets.c:61
msgid "Credit card"
msgstr ""

#: ../src/widgets.c:62
msgid "Cheque"
msgstr ""

#: ../src/widgets.c:63
msgid "Cash"
msgstr ""

#: ../src/widgets.c:64
msgid "Bank transfer"
msgstr ""

#: ../src/widgets.c:65
msgid "Internal transfer"
msgstr ""