~luc-demeyer/account-financial-report/7.0-account_journal_report_xls-namespace-extra

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
# German translation for account-financial-report
# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
# This file is distributed under the same license as the account-financial-report package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: account-financial-report\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-05-07 07:02+0000\n"
"PO-Revision-Date: 2014-02-01 04:47+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: German <de@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: 2014-04-23 06:57+0000\n"
"X-Generator: Launchpad (build 16985)\n"

#. module: account_financial_report_webkit
#: field:account.common.balance.report,account_ids:0
#: field:general.ledger.webkit,account_ids:0
#: field:partner.balance.webkit,account_ids:0
#: field:trial.balance.webkit,account_ids:0
msgid "Filter on accounts"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/common_reports.py:424
#, python-format
msgid "Please set a valid time filter"
msgstr ""

#. module: account_financial_report_webkit
#: view:general.ledger.webkit:0
#: view:open.invoices.webkit:0
#: view:partners.ledger.webkit:0
msgid "Layout Options"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:203
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:228
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:258
msgid "Cumulated Balance on Account"
msgstr ""

#. module: account_financial_report_webkit
#: field:general.ledger.webkit,centralize:0
msgid "Activate Centralization"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:154
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:161
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:120
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:127
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:135
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:142
msgid "Balance %s"
msgstr ""

#. module: account_financial_report_webkit
#: view:account.move.line:0
msgid "Misc."
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:92
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:102
msgid "Periods Filter:"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/webkit_parser_header_fix.py:170
#, python-format
msgid "No header defined for this Webkit report!"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/open_invoices.py:162
#, python-format
msgid "Filter has to be in filter date, period, or none"
msgstr ""

#. module: account_financial_report_webkit
#: model:ir.actions.report.xml,name:account_financial_report_webkit.account_report_trial_balance_webkit
msgid "Trial Balance Webkit"
msgstr ""

#. module: account_financial_report_webkit
#: field:account.common.balance.report,company_id:0
#: field:general.ledger.webkit,company_id:0
#: field:open.invoices.webkit,company_id:0
#: field:partner.balance.webkit,company_id:0
#: field:partners.ledger.webkit,company_id:0
#: field:trial.balance.webkit,company_id:0
msgid "Company"
msgstr ""

#. module: account_financial_report_webkit
#: view:partner.balance.webkit:0
msgid ""
"This report is an analysis done by a partner, It is a PDF report containing "
"one line per partner representing the cumulative credit balance"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:138
msgid "Account / Partner Name"
msgstr ""

#. module: account_financial_report_webkit
#: field:account.common.balance.report,journal_ids:0
#: field:general.ledger.webkit,journal_ids:0
#: field:open.invoices.webkit,journal_ids:0
#: field:partner.balance.webkit,journal_ids:0
#: field:partners.ledger.webkit,journal_ids:0
#: field:trial.balance.webkit,journal_ids:0
msgid "Journals"
msgstr ""

#. module: account_financial_report_webkit
#: help:general.ledger.webkit,amount_currency:0
#: help:open.invoices.webkit,amount_currency:0
#: help:partners.ledger.webkit,amount_currency:0
msgid "It adds the currency column"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/common_reports.py:75
#: selection:open.invoices.webkit,result_selection:0
#: selection:partner.balance.webkit,result_selection:0
#: selection:partners.ledger.webkit,result_selection:0
#, python-format
msgid "Receivable and Payable Accounts"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:104
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:119
#: model:ir.model,name:account_financial_report_webkit.model_account_account
msgid "Account"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/trial_balance.py:42
#, python-format
msgid "TRIAL BALANCE"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:118
msgid "Due Date"
msgstr ""

#. module: account_financial_report_webkit
#: view:general.ledger.webkit:0
#: view:open.invoices.webkit:0
#: view:partner.balance.webkit:0
#: view:partners.ledger.webkit:0
#: view:trial.balance.webkit:0
msgid "Print only"
msgstr ""

#. module: account_financial_report_webkit
#: model:ir.model,name:account_financial_report_webkit.model_partner_balance_webkit
msgid "Partner Balance Report"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/webkit_parser_header_fix.py:194
#: code:addons/account_financial_report_webkit/report/webkit_parser_header_fix.py:205
#: code:addons/account_financial_report_webkit/report/webkit_parser_header_fix.py:220
#, python-format
msgid "Webkit render"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/webkit_parser_header_fix.py:165
#, python-format
msgid "Error!"
msgstr ""

#. module: account_financial_report_webkit
#: model:ir.model,name:account_financial_report_webkit.model_trial_balance_webkit
msgid "Trial Balance Report"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:117
msgid "Code"
msgstr ""

#. module: account_financial_report_webkit
#: model:ir.actions.report.xml,name:account_financial_report_webkit.account_report_partners_ledger_webkit
msgid "Partner Ledger Webkit"
msgstr ""

#. module: account_financial_report_webkit
#: field:account.common.balance.report,display_account:0
#: field:partner.balance.webkit,display_account:0
#: field:trial.balance.webkit,display_account:0
msgid "Display Accounts"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:192
msgid "Unallocated"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/webkit_parser_header_fix.py:123
#, python-format
msgid "Webkit raise an error"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/common_reports.py:71
#: selection:open.invoices.webkit,result_selection:0
#: selection:partner.balance.webkit,result_selection:0
#: selection:partners.ledger.webkit,result_selection:0
#, python-format
msgid "Receivable Accounts"
msgstr ""

#. module: account_financial_report_webkit
#: model:ir.actions.report.xml,name:account_financial_report_webkit.account_report_general_ledger_webkit
msgid "General Ledger Webkit"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:116
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:112
msgid "Rec."
msgstr ""

#. module: account_financial_report_webkit
#: constraint:account.account:0
msgid "Error ! You can not create recursive accounts."
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:33
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:37
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:46
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:34
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:58
msgid "Periods Filter"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/common_reports.py:313
#, python-format
msgid "No period found"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:38
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:139
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:52
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:142
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:39
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:153
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:50
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:108
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:63
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:123
msgid "Initial Balance"
msgstr ""

#. module: account_financial_report_webkit
#: constraint:account.move.line:0
msgid ""
"The date of your Journal Entry is not in the defined period! You should "
"change the date or remove this constraint from the journal."
msgstr ""

#. module: account_financial_report_webkit
#: model:ir.model,name:account_financial_report_webkit.model_general_ledger_webkit
msgid "General Ledger Report"
msgstr ""

#. module: account_financial_report_webkit
#: constraint:open.invoices.webkit:0
msgid ""
"Clearance date must be the very last date of the last period or later."
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:48
msgid "Displayed Accounts"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:99
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:112
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:108
msgid "Partner"
msgstr ""

#. module: account_financial_report_webkit
#: help:account.common.balance.report,chart_account_id:0
#: help:general.ledger.webkit,chart_account_id:0
#: help:open.invoices.webkit,chart_account_id:0
#: help:partner.balance.webkit,chart_account_id:0
#: help:partners.ledger.webkit,chart_account_id:0
#: help:trial.balance.webkit,chart_account_id:0
msgid "Select Charts of Accounts"
msgstr ""

#. module: account_financial_report_webkit
#: field:account.common.balance.report,filter:0
#: field:general.ledger.webkit,filter:0
#: field:open.invoices.webkit,filter:0
#: field:partner.balance.webkit,filter:0
#: field:partners.ledger.webkit,filter:0
#: field:trial.balance.webkit,filter:0
msgid "Filter by"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/partners_ledger.py:48
#: model:ir.actions.act_window,name:account_financial_report_webkit.action_account_partners_ledger_menu_webkit
#: view:partners.ledger.webkit:0
#, python-format
msgid "Partner Ledger"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:114
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:129
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:123
msgid "Curr."
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:101
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:114
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:110
msgid "Label"
msgstr ""

#. module: account_financial_report_webkit
#: help:account.common.balance.report,account_ids:0
#: help:general.ledger.webkit,account_ids:0
#: help:partner.balance.webkit,account_ids:0
#: help:trial.balance.webkit,account_ids:0
msgid ""
"Only selected accounts will be printed. Leave empty to print all accounts."
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:105
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:120
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:145
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:114
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:111
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:126
msgid "Debit"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/webkit_parser_header_fix.py:171
#, python-format
msgid "Please set a header in company settings"
msgstr ""

#. module: account_financial_report_webkit
#: view:general.ledger.webkit:0
#: view:open.invoices.webkit:0
#: view:partner.balance.webkit:0
#: view:partners.ledger.webkit:0
#: view:trial.balance.webkit:0
msgid "Time Filters"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:193
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:224
msgid "Cumulated Balance on Partner"
msgstr ""

#. module: account_financial_report_webkit
#: model:ir.actions.report.xml,name:account_financial_report_webkit.account_report_partner_balance_webkit
msgid "Partner Balance Webkit"
msgstr ""

#. module: account_financial_report_webkit
#: help:open.invoices.webkit,until_date:0
msgid ""
"The clearance date is essentially a tool used for debtors provisionning "
"calculation.\n"
"\n"
"By default, this date is equal to the the end date (ie: 31/12/2011 if you "
"select fy 2011).\n"
"\n"
"By amending the clearance date, you will be, for instance, able to answer "
"the question : 'based on my last year end debtors open invoices, which "
"invoices are still unpaid today (today is my clearance date)?'\n"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:40
msgid "Clearance Date"
msgstr ""

#. module: account_financial_report_webkit
#: view:partners.ledger.webkit:0
msgid ""
"This report allows you to print or generate a pdf of your partner ledger "
"with details of all your payable/receivable account"
msgstr ""

#. module: account_financial_report_webkit
#: selection:account.common.balance.report,display_account:0
#: selection:partner.balance.webkit,display_account:0
#: selection:trial.balance.webkit,display_account:0
msgid "With balance is not equal to 0"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:94
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:104
msgid "Fiscal Year :"
msgstr ""

#. module: account_financial_report_webkit
#: view:open.invoices.webkit:0
msgid ""
"This report allows you to print or generate a pdf of your open invoices per "
"partner with details of all your payable/receivable account. Exclude full "
"reconciled journal items."
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/common_reports.py:416
#, python-format
msgid "Must be in include_opening, exclude_opening"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:43
#: code:addons/account_financial_report_webkit/wizard/balance_common.py:151
#, python-format
msgid "Dates"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:136
msgid "Code / Ref"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/trial_balance.py:49
#: model:ir.actions.act_window,name:account_financial_report_webkit.action_account_trial_balance_menu_webkit
#: view:trial.balance.webkit:0
#, python-format
msgid "Trial Balance"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:87
msgid "Dates : "
msgstr ""

#. module: account_financial_report_webkit
#: field:account.common.balance.report,comp0_period_to:0
#: field:account.common.balance.report,comp1_period_to:0
#: field:account.common.balance.report,comp2_period_to:0
#: field:account.common.balance.report,period_to:0
#: field:general.ledger.webkit,period_to:0
#: field:open.invoices.webkit,period_to:0
#: field:partner.balance.webkit,comp0_period_to:0
#: field:partner.balance.webkit,comp1_period_to:0
#: field:partner.balance.webkit,comp2_period_to:0
#: field:partner.balance.webkit,period_to:0
#: field:partners.ledger.webkit,period_to:0
#: field:trial.balance.webkit,comp0_period_to:0
#: field:trial.balance.webkit,comp1_period_to:0
#: field:trial.balance.webkit,comp2_period_to:0
#: field:trial.balance.webkit,period_to:0
msgid "End Period"
msgstr ""

#. module: account_financial_report_webkit
#: model:ir.model,name:account_financial_report_webkit.model_account_common_balance_report
msgid "Common Balance Report"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:36
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:41
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:49
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:37
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:61
msgid "Accounts Filter"
msgstr ""

#. module: account_financial_report_webkit
#: selection:account.common.balance.report,comp0_filter:0
#: selection:account.common.balance.report,comp1_filter:0
#: selection:account.common.balance.report,comp2_filter:0
#: selection:account.common.balance.report,filter:0
#: selection:partner.balance.webkit,comp0_filter:0
#: selection:partner.balance.webkit,comp1_filter:0
#: selection:partner.balance.webkit,comp2_filter:0
#: selection:partner.balance.webkit,filter:0
#: selection:trial.balance.webkit,comp0_filter:0
#: selection:trial.balance.webkit,comp1_filter:0
#: selection:trial.balance.webkit,comp2_filter:0
#: selection:trial.balance.webkit,filter:0
msgid "Opening Only"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:65
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:60
msgid "Custom Filter"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:90
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:100
msgid "Dates Filter:"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:91
msgid "Fiscal Year : "
msgstr ""

#. module: account_financial_report_webkit
#: selection:account.common.balance.report,display_account:0
#: selection:partner.balance.webkit,display_account:0
#: selection:trial.balance.webkit,display_account:0
msgid "With movements"
msgstr ""

#. module: account_financial_report_webkit
#: constraint:account.common.balance.report:0
#: constraint:general.ledger.webkit:0
#: constraint:open.invoices.webkit:0
#: constraint:partner.balance.webkit:0
#: constraint:partners.ledger.webkit:0
#: constraint:trial.balance.webkit:0
msgid ""
"The fiscalyear, periods or chart of account chosen have to belong to the "
"same company."
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:109
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:124
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:118
msgid "Cumul. Bal."
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:22
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:35
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:23
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:47
msgid "Computed"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/general_ledger.py:64
#: code:addons/account_financial_report_webkit/report/open_invoices.py:63
#: code:addons/account_financial_report_webkit/report/partner_balance.py:63
#: code:addons/account_financial_report_webkit/report/partners_ledger.py:64
#: code:addons/account_financial_report_webkit/report/profit_loss.py:68
#: code:addons/account_financial_report_webkit/report/trial_balance.py:64
#: code:addons/account_financial_report_webkit/report/webkit_parser_header_fix.py:68
#, python-format
msgid "of"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/common_reports.py:73
#: selection:open.invoices.webkit,result_selection:0
#: selection:partner.balance.webkit,result_selection:0
#: selection:partners.ledger.webkit,result_selection:0
#, python-format
msgid "Payable Accounts"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/open_invoices.py:48
#: model:ir.actions.act_window,name:account_financial_report_webkit.action_account_open_invoices_menu_webkit
#: model:ir.actions.report.xml,name:account_financial_report_webkit.account_report_open_invoices_webkit
#: model:ir.model,name:account_financial_report_webkit.model_open_invoices_webkit
#, python-format
msgid "Open Invoices Report"
msgstr ""

#. module: account_financial_report_webkit
#: field:account.account,centralized:0
msgid "Centralized"
msgstr ""

#. module: account_financial_report_webkit
#: field:general.ledger.webkit,display_account:0
msgid "Display accounts"
msgstr ""

#. module: account_financial_report_webkit
#: constraint:account.account:0
msgid ""
"Configuration Error! \n"
"You can not define children to an account with internal type different of "
"\"View\"! "
msgstr ""

#. module: account_financial_report_webkit
#: field:account.common.balance.report,comp0_date_from:0
#: field:account.common.balance.report,comp1_date_from:0
#: field:account.common.balance.report,comp2_date_from:0
#: field:account.common.balance.report,date_from:0
#: field:general.ledger.webkit,date_from:0
#: field:open.invoices.webkit,date_from:0
#: field:partner.balance.webkit,comp0_date_from:0
#: field:partner.balance.webkit,comp1_date_from:0
#: field:partner.balance.webkit,comp2_date_from:0
#: field:partner.balance.webkit,date_from:0
#: field:partners.ledger.webkit,date_from:0
#: field:trial.balance.webkit,comp0_date_from:0
#: field:trial.balance.webkit,comp1_date_from:0
#: field:trial.balance.webkit,comp2_date_from:0
#: field:trial.balance.webkit,date_from:0
msgid "Start Date"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:22
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:35
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:23
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:47
msgid "Opening Entries"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/general_ledger.py:40
#, python-format
msgid "GENERAL LEDGER"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/wizard/profit_loss_wizard.py:129
#, python-format
msgid "Level %s"
msgstr ""

#. module: account_financial_report_webkit
#: help:account.account,centralized:0
msgid ""
"If flagged, no details will be displayed in the General Ledger report (the "
"webkit one only), only centralized amounts per period."
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:22
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:35
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:23
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:77
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:94
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:47
msgid "No"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:97
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:94
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:107
msgid "Initial Balance:"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:163
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:129
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:144
msgid "Balance C%s"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:95
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:108
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:104
msgid "Entry"
msgstr ""

#. module: account_financial_report_webkit
#: field:account.move.line,last_rec_date:0
msgid "Last reconciliation date"
msgstr ""

#. module: account_financial_report_webkit
#: field:open.invoices.webkit,partner_ids:0
#: field:partner.balance.webkit,partner_ids:0
#: field:partners.ledger.webkit,partner_ids:0
msgid "Filter on partner"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/general_ledger.py:47
#: view:general.ledger.webkit:0
#: model:ir.actions.act_window,name:account_financial_report_webkit.action_account_general_ledger_menu_webkit
#, python-format
msgid "General Ledger"
msgstr ""

#. module: account_financial_report_webkit
#: view:trial.balance.webkit:0
msgid ""
"This report allows you to print or generate a pdf of your trial balance "
"allowing you to quickly check the balance of each of your accounts in a "
"single report"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:89
msgid "Periods : "
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/partner_balance.py:40
#, python-format
msgid "PARTNER BALANCE"
msgstr ""

#. module: account_financial_report_webkit
#: constraint:account.move.line:0
msgid "Company must be the same for its related account and period."
msgstr ""

#. module: account_financial_report_webkit
#: help:open.invoices.webkit,partner_ids:0
#: help:partner.balance.webkit,partner_ids:0
#: help:partners.ledger.webkit,partner_ids:0
msgid ""
"Only selected partners will be printed. Leave empty to print all partners."
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/webkit_parser_header_fix.py:165
#, python-format
msgid "Webkit Report template not found !"
msgstr ""

#. module: account_financial_report_webkit
#: selection:account.common.balance.report,comp0_filter:0
#: selection:account.common.balance.report,comp1_filter:0
#: selection:account.common.balance.report,comp2_filter:0
#: selection:account.common.balance.report,filter:0
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:91
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:104
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:100
#: selection:general.ledger.webkit,filter:0
#: selection:open.invoices.webkit,filter:0
#: selection:partner.balance.webkit,comp0_filter:0
#: selection:partner.balance.webkit,comp1_filter:0
#: selection:partner.balance.webkit,comp2_filter:0
#: selection:partner.balance.webkit,filter:0
#: selection:partners.ledger.webkit,filter:0
#: selection:trial.balance.webkit,comp0_filter:0
#: selection:trial.balance.webkit,comp1_filter:0
#: selection:trial.balance.webkit,comp2_filter:0
#: selection:trial.balance.webkit,filter:0
msgid "Date"
msgstr ""

#. module: account_financial_report_webkit
#: help:general.ledger.webkit,centralize:0
msgid "Uncheck to display all the details of centralized accounts."
msgstr ""

#. module: account_financial_report_webkit
#: constraint:account.move.line:0
msgid "You can not create journal items on an account of type view."
msgstr ""

#. module: account_financial_report_webkit
#: view:account.move.line:0
msgid "Internal Note"
msgstr ""

#. module: account_financial_report_webkit
#: constraint:account.common.balance.report:0
#: constraint:general.ledger.webkit:0
#: constraint:open.invoices.webkit:0
#: constraint:partner.balance.webkit:0
#: constraint:partners.ledger.webkit:0
#: constraint:trial.balance.webkit:0
msgid ""
"When no Fiscal year is selected, you must choose to filter by periods or by "
"date."
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:50
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:55
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:64
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:51
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:62
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:75
msgid "To:"
msgstr ""

#. module: account_financial_report_webkit
#: sql_constraint:account.account:0
msgid "The code of the account must be unique per company !"
msgstr ""

#. module: account_financial_report_webkit
#: model:ir.ui.menu,name:account_financial_report_webkit.menu_account_open_invoices
#: view:open.invoices.webkit:0
msgid "Open Invoices"
msgstr ""

#. module: account_financial_report_webkit
#: selection:account.common.balance.report,target_move:0
#: code:addons/account_financial_report_webkit/report/common_reports.py:82
#: selection:general.ledger.webkit,target_move:0
#: selection:open.invoices.webkit,target_move:0
#: selection:partner.balance.webkit,target_move:0
#: selection:partners.ledger.webkit,target_move:0
#: selection:trial.balance.webkit,target_move:0
#, python-format
msgid "All Posted Entries"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:87
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:84
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:97
#: code:addons/account_financial_report_webkit/wizard/balance_common.py:144
#, python-format
msgid "Comparison %s"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/open_invoices.py:102
#: code:addons/account_financial_report_webkit/report/partners_ledger.py:102
#, python-format
msgid "No accounts to print."
msgstr ""

#. module: account_financial_report_webkit
#: help:account.common.balance.report,fiscalyear_id:0
#: help:general.ledger.webkit,fiscalyear_id:0
#: help:open.invoices.webkit,fiscalyear_id:0
#: help:partner.balance.webkit,fiscalyear_id:0
#: help:partners.ledger.webkit,fiscalyear_id:0
#: help:trial.balance.webkit,fiscalyear_id:0
msgid "Keep empty for all open fiscal year"
msgstr ""

#. module: account_financial_report_webkit
#: help:account.move.line,last_rec_date:0
msgid ""
"the date of the last reconciliation (full or partial) account move line"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:107
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:122
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:147
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:116
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:113
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:128
msgid "Credit"
msgstr ""

#. module: account_financial_report_webkit
#: selection:account.common.balance.report,filter:0
#: selection:general.ledger.webkit,filter:0
#: selection:open.invoices.webkit,filter:0
#: selection:partner.balance.webkit,filter:0
#: selection:partners.ledger.webkit,filter:0
#: selection:trial.balance.webkit,filter:0
msgid "No Filters"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/open_invoices.py:102
#: code:addons/account_financial_report_webkit/report/partners_ledger.py:102
#, python-format
msgid "Error"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:152
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:118
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:133
msgid "Balance"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:103
msgid "Counter part"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:168
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:134
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:149
msgid "% Difference"
msgstr ""

#. module: account_financial_report_webkit
#: help:account.common.balance.report,filter:0
#: help:open.invoices.webkit,filter:0
#: help:partner.balance.webkit,filter:0
#: help:partners.ledger.webkit,filter:0
#: help:trial.balance.webkit,filter:0
msgid ""
"Filter by date : no opening balance will be displayed. (opening balance can "
"only be calculated based on period to be correct)."
msgstr ""

#. module: account_financial_report_webkit
#: constraint:account.account:0
msgid ""
"Configuration Error! \n"
"You can not select an account type with a deferral method different of "
"\"Unreconciled\" for accounts with internal type \"Payable/Receivable\"! "
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/partner_balance.py:47
#: model:ir.actions.act_window,name:account_financial_report_webkit.action_account_partner_balance_menu_webkit
#: view:partner.balance.webkit:0
#, python-format
msgid "Partner Balance"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/general_ledger.py:146
#, python-format
msgid "Centralized Entries"
msgstr ""

#. module: account_financial_report_webkit
#: view:general.ledger.webkit:0
#: view:partner.balance.webkit:0
#: view:trial.balance.webkit:0
msgid "Accounts Filters"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:31
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:35
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:44
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:32
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:56
msgid "Dates Filter"
msgstr ""

#. module: account_financial_report_webkit
#: constraint:account.move.line:0
msgid "You can not create journal items on closed account."
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/common_reports.py:64
#: selection:general.ledger.webkit,display_account:0
#, python-format
msgid "With transactions or non zero balance"
msgstr ""

#. module: account_financial_report_webkit
#: selection:account.common.balance.report,comp0_filter:0
#: selection:account.common.balance.report,comp1_filter:0
#: selection:account.common.balance.report,comp2_filter:0
#: selection:account.common.balance.report,filter:0
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:45
#: code:addons/account_financial_report_webkit/wizard/balance_common.py:156
#: selection:general.ledger.webkit,filter:0
#: selection:open.invoices.webkit,filter:0
#: selection:partner.balance.webkit,comp0_filter:0
#: selection:partner.balance.webkit,comp1_filter:0
#: selection:partner.balance.webkit,comp2_filter:0
#: selection:partner.balance.webkit,filter:0
#: selection:partners.ledger.webkit,filter:0
#: selection:trial.balance.webkit,comp0_filter:0
#: selection:trial.balance.webkit,comp1_filter:0
#: selection:trial.balance.webkit,comp2_filter:0
#: selection:trial.balance.webkit,filter:0
#, python-format
msgid "Periods"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:112
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:127
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:121
msgid "Curr. Balance"
msgstr ""

#. module: account_financial_report_webkit
#: model:ir.model,name:account_financial_report_webkit.model_account_move_line
msgid "Journal Items"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/common_reports.py:416
#, python-format
msgid "Invalid query mode"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/open_invoices.py:161
#, python-format
msgid "Unsuported filter"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/common_reports.py:62
#, python-format
msgid "All accounts"
msgstr ""

#. module: account_financial_report_webkit
#: constraint:account.move.line:0
msgid ""
"The selected account of your Journal Entry forces to provide a secondary "
"currency. You should remove the secondary currency on the account or select "
"a multi-currency view on the journal."
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:93
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:106
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:102
msgid "Period"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/common_reports.py:424
#, python-format
msgid "No valid filter"
msgstr ""

#. module: account_financial_report_webkit
#: view:open.invoices.webkit:0
msgid "Clearance Analysis Options"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:97
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:110
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:106
msgid "Journal"
msgstr ""

#. module: account_financial_report_webkit
#: field:general.ledger.webkit,amount_currency:0
#: field:open.invoices.webkit,amount_currency:0
#: field:partners.ledger.webkit,amount_currency:0
msgid "With Currency"
msgstr ""

#. module: account_financial_report_webkit
#: field:open.invoices.webkit,result_selection:0
#: field:partner.balance.webkit,result_selection:0
#: field:partners.ledger.webkit,result_selection:0
msgid "Partner's"
msgstr ""

#. module: account_financial_report_webkit
#: view:general.ledger.webkit:0
msgid ""
"This report allows you to print or generate a pdf of your general ledger "
"with details of all your account journals"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/profit_loss.py:39
#, python-format
msgid "PROFIT AND LOSS"
msgstr ""

#. module: account_financial_report_webkit
#: field:account.common.balance.report,chart_account_id:0
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:27
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:31
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:40
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:28
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:39
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:52
#: field:general.ledger.webkit,chart_account_id:0
#: field:open.invoices.webkit,chart_account_id:0
#: field:partner.balance.webkit,chart_account_id:0
#: field:partners.ledger.webkit,chart_account_id:0
#: field:trial.balance.webkit,chart_account_id:0
msgid "Chart of Account"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:167
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:133
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:148
msgid "Difference"
msgstr ""

#. module: account_financial_report_webkit
#: field:account.common.balance.report,target_move:0
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:37
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:42
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:51
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:38
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:49
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:62
#: field:general.ledger.webkit,target_move:0
#: field:open.invoices.webkit,target_move:0
#: field:partner.balance.webkit,target_move:0
#: field:partners.ledger.webkit,target_move:0
#: field:trial.balance.webkit,target_move:0
msgid "Target Moves"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:44
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:49
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:58
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:45
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:56
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:69
msgid "From:"
msgstr ""

#. module: account_financial_report_webkit
#: field:account.common.balance.report,comp0_date_to:0
#: field:account.common.balance.report,comp1_date_to:0
#: field:account.common.balance.report,comp2_date_to:0
#: field:account.common.balance.report,date_to:0
#: field:general.ledger.webkit,date_to:0
#: field:open.invoices.webkit,date_to:0
#: field:partner.balance.webkit,comp0_date_to:0
#: field:partner.balance.webkit,comp1_date_to:0
#: field:partner.balance.webkit,comp2_date_to:0
#: field:partner.balance.webkit,date_to:0
#: field:partners.ledger.webkit,date_to:0
#: field:trial.balance.webkit,comp0_date_to:0
#: field:trial.balance.webkit,comp1_date_to:0
#: field:trial.balance.webkit,comp2_date_to:0
#: field:trial.balance.webkit,date_to:0
msgid "End Date"
msgstr ""

#. module: account_financial_report_webkit
#: field:account.common.balance.report,comp0_period_from:0
#: field:account.common.balance.report,comp1_period_from:0
#: field:account.common.balance.report,comp2_period_from:0
#: field:account.common.balance.report,period_from:0
#: field:general.ledger.webkit,period_from:0
#: field:open.invoices.webkit,period_from:0
#: field:partner.balance.webkit,comp0_period_from:0
#: field:partner.balance.webkit,comp1_period_from:0
#: field:partner.balance.webkit,comp2_period_from:0
#: field:partner.balance.webkit,period_from:0
#: field:partners.ledger.webkit,period_from:0
#: field:trial.balance.webkit,comp0_period_from:0
#: field:trial.balance.webkit,comp1_period_from:0
#: field:trial.balance.webkit,comp2_period_from:0
#: field:trial.balance.webkit,period_from:0
msgid "Start Period"
msgstr ""

#. module: account_financial_report_webkit
#: field:open.invoices.webkit,until_date:0
msgid "Clearance date"
msgstr ""

#. module: account_financial_report_webkit
#: model:ir.model,name:account_financial_report_webkit.model_partners_ledger_webkit
msgid "Partner Ledger Report"
msgstr ""

#. module: account_financial_report_webkit
#: view:open.invoices.webkit:0
#: view:partner.balance.webkit:0
#: view:partners.ledger.webkit:0
msgid "Partners Filters"
msgstr ""

#. module: account_financial_report_webkit
#: selection:account.common.balance.report,comp0_filter:0
#: field:account.common.balance.report,comp0_fiscalyear_id:0
#: selection:account.common.balance.report,comp1_filter:0
#: field:account.common.balance.report,comp1_fiscalyear_id:0
#: selection:account.common.balance.report,comp2_filter:0
#: field:account.common.balance.report,comp2_fiscalyear_id:0
#: field:account.common.balance.report,fiscalyear_id:0
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:28
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:32
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:41
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:29
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:40
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:53
#: field:general.ledger.webkit,fiscalyear_id:0
#: field:open.invoices.webkit,fiscalyear_id:0
#: selection:partner.balance.webkit,comp0_filter:0
#: field:partner.balance.webkit,comp0_fiscalyear_id:0
#: selection:partner.balance.webkit,comp1_filter:0
#: field:partner.balance.webkit,comp1_fiscalyear_id:0
#: selection:partner.balance.webkit,comp2_filter:0
#: field:partner.balance.webkit,comp2_fiscalyear_id:0
#: field:partner.balance.webkit,fiscalyear_id:0
#: field:partners.ledger.webkit,fiscalyear_id:0
#: selection:trial.balance.webkit,comp0_filter:0
#: field:trial.balance.webkit,comp0_fiscalyear_id:0
#: selection:trial.balance.webkit,comp1_filter:0
#: field:trial.balance.webkit,comp1_fiscalyear_id:0
#: selection:trial.balance.webkit,comp2_filter:0
#: field:trial.balance.webkit,comp2_fiscalyear_id:0
#: field:trial.balance.webkit,fiscalyear_id:0
msgid "Fiscal Year"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:77
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:94
msgid "Yes"
msgstr ""

#. module: account_financial_report_webkit
#: selection:account.common.balance.report,comp0_filter:0
#: selection:account.common.balance.report,comp1_filter:0
#: selection:account.common.balance.report,comp2_filter:0
#: selection:partner.balance.webkit,comp0_filter:0
#: selection:partner.balance.webkit,comp1_filter:0
#: selection:partner.balance.webkit,comp2_filter:0
#: selection:trial.balance.webkit,comp0_filter:0
#: selection:trial.balance.webkit,comp1_filter:0
#: selection:trial.balance.webkit,comp2_filter:0
msgid "No Comparison"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/general_ledger.py:64
#: code:addons/account_financial_report_webkit/report/open_invoices.py:63
#: code:addons/account_financial_report_webkit/report/partner_balance.py:63
#: code:addons/account_financial_report_webkit/report/partners_ledger.py:64
#: code:addons/account_financial_report_webkit/report/profit_loss.py:68
#: code:addons/account_financial_report_webkit/report/trial_balance.py:64
#: code:addons/account_financial_report_webkit/report/webkit_parser_header_fix.py:68
#, python-format
msgid "Page"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:50
msgid "Partners Filter"
msgstr ""

#. module: account_financial_report_webkit
#: selection:account.common.balance.report,display_account:0
#: report:addons/account_financial_report_webkit/report/templates/account_report_general_ledger.mako:61
#: report:addons/account_financial_report_webkit/report/templates/account_report_partner_balance.mako:75
#: report:addons/account_financial_report_webkit/report/templates/account_report_profit_loss.mako:73
#: report:addons/account_financial_report_webkit/report/templates/account_report_trial_balance.mako:86
#: selection:general.ledger.webkit,display_account:0
#: selection:partner.balance.webkit,display_account:0
#: selection:trial.balance.webkit,display_account:0
msgid "All"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/profit_loss.py:46
#, python-format
msgid "Profit and Loss"
msgstr ""

#. module: account_financial_report_webkit
#: report:addons/account_financial_report_webkit/report/templates/account_report_open_invoices.mako:99
#: report:addons/account_financial_report_webkit/report/templates/account_report_partners_ledger.mako:95
msgid "No Partner"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/open_invoices.py:41
#, python-format
msgid "OPEN INVOICES REPORT"
msgstr ""

#. module: account_financial_report_webkit
#: code:addons/account_financial_report_webkit/report/partners_ledger.py:41
#: code:addons/account_financial_report_webkit/report/webkit_parser_header_fix.py:58
#, python-format
msgid "PARTNER LEDGER"
msgstr ""

#. module: account_financial_report_webkit
#: selection:account.common.balance.report,target_move:0
#: code:addons/account_financial_report_webkit/report/common_reports.py:84
#: selection:general.ledger.webkit,target_move:0
#: selection:open.invoices.webkit,target_move:0
#: selection:partner.balance.webkit,target_move:0
#: selection:partners.ledger.webkit,target_move:0
#: selection:trial.balance.webkit,target_move:0
#, python-format
msgid "All Entries"
msgstr ""

#. module: account_financial_report_webkit
#: sql_constraint:account.move.line:0
msgid "Wrong credit or debit value in accounting entry !"
msgstr ""

#. module: account_financial_report_webkit
#: field:account.common.balance.report,comp0_filter:0
#: field:account.common.balance.report,comp1_filter:0
#: field:account.common.balance.report,comp2_filter:0
#: field:partner.balance.webkit,comp0_filter:0
#: field:partner.balance.webkit,comp1_filter:0
#: field:partner.balance.webkit,comp2_filter:0
#: field:trial.balance.webkit,comp0_filter:0
#: field:trial.balance.webkit,comp1_filter:0
#: field:trial.balance.webkit,comp2_filter:0
msgid "Compare By"
msgstr ""