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
1712
1713
|
Miranda Language Pack Version 1
Language: German (DE)
Locale: 0407
Last-Modified-Using: Miranda IM 0.6.7 Unicode
Authors: Martin Afanasjew
Author-email: miranda@dark-passage.de
Plugins-included: HistoryStats
; template with strings from version 0.1.5.3
;
; important info for translators:
;
; - "#{X}" inside strings where X is something shouldn't be translated. these
; are placeholders for data to be provided by the plugin. however, these
; constructs can be moved around in the translated strings.
;
; - some translations are prepended with "monthX:" or "wdayX:" where X is a
; single digit or a letter. these prefixes have to stay untranslated while
; the part behind the colon should be translated.
;
; - the comments before a translation show where this string appears in my
; source code. this is mostly useless, but may help you in finding the string
; you're trying to translate in the user interface. feel free to remove these
; commented lines.
; column_split.cpp <271>
; column_split.h <53>
;["Split"]
; column_splittimeline.cpp <256>
; column_splittimeline.h <80>
;["Split" timeline]
; column_split.cpp <63>
; column_splittimeline.cpp <77>
;["Split" type]
; column_split.cpp <437>
;[#{amount}]
; column_nick.cpp <91>
;[#{count} contacts]
; column_nick.cpp <84>
;[#{count} contacts / [First] #{first_time} / [Last] #{last_time}]
; column_inout.cpp <114>
; column_inoutgraph.cpp <157>
;[#{data} per #{unit}]
; column_wordcount.cpp <152>
;[#{distict_words} distinct]
; column_rank.cpp <26>
;[#{rank}.]
; column_split.cpp <289>
; column_splittimeline.cpp <277>
; column_wordcount.cpp <127>
; column_words.cpp <233>
;[#{type} for #{data}]
; column_wordcount.cpp <172>
;[#{words} total]
; column_wordcount.cpp <192>
;[#{words} total / #{distict_words} distinct]
; mirandahistory.cpp <34>
;[(Unknown)]
; settings.cpp <234>
;[(default nick)]
; contact.cpp <130>
; contact.cpp <135>
; contact.cpp <140>
; mirandacontact.cpp <103>
; mirandacontact.cpp <93>
; mirandacontact.cpp <98>
;[(multiple)]
; mirandahistory.cpp <101>
;[(none)]
; dlgoption_suboutput.cpp <200>
;[(nothing)]
; column_chatduration.cpp <158>
; column_chatduration.cpp <159>
; column_chatduration.cpp <160>
; column_nick.cpp <65>
; column_nick.cpp <66>
;[(unknown)]
; dlgoption_subexclude.cpp <149>
;[** All contacts **]
; dlgoption_subinput.cpp <106>
;[...after date (none=no limit)]
; dlgoption_subinput.cpp <105>
;[...before date (none=no limit)]
; dlgoption_subcolumns.cpp <482>
;[...can be output as: ]
; dlgoption_suboutput.cpp <116>
;[...is less than]
; dlgoption_subinput.cpp <104>
;[...older than (days, 0=no limit)]
; dlgoption_suboutput.cpp <141>
;[...on Miranda IM's startup]
; dlgoption_suboutput.cpp <142>
;[...via Miranda IM's main menu]
; dlgoption_suboutput.cpp <140>
;[...via button "Create statistics" in options]
; dlgoption_subcolumns.cpp <504>
;[...will be output as: ]
; utils.cpp <312>
;[AM]
; resource.rc <380>
;[About sets]
; column_inout.cpp <43>
; column_inoutgraph.cpp <63>
;[Absolute]
; column_inoutgraph.cpp <71>
;[Absolute in tooltip if average selected and vice versa]
; resource.rc <268>
;[Add]
; dlgoption_subcolumns.cpp <224>
;[Add column...]
; dlgoption_subglobal.cpp <254>
;[Add menu items to contact menu]
; dlgoption_subglobal.cpp <252>
;[Add menu items to main menu]
; dlgfilterwords.cpp <98>
;[Add set]
; column_wordcount.cpp <52>
;[Additional info in tooltip (depends on type)]
; column_split.cpp <72>
; column_splittimeline.cpp <88>
;[Align on day boundary]
; column_split.cpp <73>
; column_splittimeline.cpp <89>
;[Align on week boundary]
; colbase_words.cpp <248>
;[All messages]
; resource.rc <381>
;[All sets are shared between columns. However, only the checked ones will be applied to the current column. Use the right field to specify words putting every word on a separate line.]
; statistic.cpp <1637>
;[Already existing file]
; dlgoption_suboutput.cpp <138>
;[Always overwrite already existing files (dangerous!)]
; dlgoption_subcolumns.cpp <771>
;[An internal column configuration error occured. Please contact the author of this plugin.]
; resource.rc <395>
;[Apply]
; dlgoption_suboutput.cpp <208>
;[Ascending]
; dlgoption_suboutput.cpp <139>
;[Auto open statistics after being generated...]
; dlgoption_subglobal.cpp <372>
;[Automatically get updates of HistoryStats]
; resource.rc <263>
;[Available column types:]
; column_chatduration.cpp <43>
; column_inout.cpp <44>
; column_inoutgraph.cpp <64>
;[Average]
; column_chatduration.cpp <86>
;[Average chat duration]
; column_split.cpp <68>
;[Bar unit]
; column_split.cpp <70>
;[Bars per graph]
; column_splittimeline.cpp <84>
;[Block unit]
; column_splittimeline.cpp <86>
;[Blocks per column]
; iconlib.cpp <31>
;[Button]
; iconlib.cpp <32>
;[Button (disabled)]
; column_splittimeline.cpp <91>
;[Calculate maximum per column (not per graph)]
; statistic.cpp <1545>
;[Calculating totals]
; resource.rc <255>
; resource.rc <269>
; resource.rc <384>
; resource.rc <394>
;[Cancel]
; column_inout.cpp <81>
; column_inout.cpp <89>
; column_inoutgraph.cpp <136>
; column_inoutgraph.cpp <59>
;[Characters]
; column_inout.cpp <52>
; column_split.cpp <79>
; column_splittimeline.cpp <96>
; column_timeline.cpp <53>
;[Characters (all)]
; dlgoption_suboutput.cpp <161>
; dlgoption_suboutput.cpp <216>
;[Characters (all, absolute)]
; dlgoption_suboutput.cpp <219>
;[Characters (all, average per week)]
; dlgoption_suboutput.cpp <164>
;[Characters (all, average)]
; column_splittimeline.cpp <97>
; column_timeline.cpp <54>
;[Characters (in/out ratio)]
; column_inout.cpp <50>
; column_split.cpp <77>
; column_splittimeline.cpp <94>
; column_timeline.cpp <51>
;[Characters (incoming)]
; dlgoption_suboutput.cpp <159>
; dlgoption_suboutput.cpp <214>
;[Characters (incoming, absolute)]
; dlgoption_suboutput.cpp <217>
;[Characters (incoming, average per week)]
; dlgoption_suboutput.cpp <162>
;[Characters (incoming, average)]
; column_inout.cpp <51>
; column_split.cpp <78>
; column_splittimeline.cpp <95>
; column_timeline.cpp <52>
;[Characters (outgoing)]
; dlgoption_suboutput.cpp <160>
; dlgoption_suboutput.cpp <215>
;[Characters (outgoing, absolute)]
; dlgoption_suboutput.cpp <218>
;[Characters (outgoing, average per week)]
; dlgoption_suboutput.cpp <163>
;[Characters (outgoing, average)]
; column_chatduration.cpp <93>
; column_chatduration.h <31>
;[Chat duration]
; dlgoption_suboutput.cpp <179>
;[Chat duration (average)]
; dlgoption_suboutput.cpp <180>
;[Chat duration (maximum)]
; dlgoption_suboutput.cpp <178>
;[Chat duration (minimum)]
; dlgoption_suboutput.cpp <177>
;[Chat duration (total)]
; dlgoption_suboutput.cpp <232>
;[Chat duration (total, hours)]
; column_chatduration.cpp <41>
;[Chat duration type]
; column_inout.cpp <83>
; column_inout.cpp <95>
; column_inoutgraph.cpp <138>
; column_inoutgraph.cpp <61>
;[Chats]
; column_inout.cpp <58>
; column_split.cpp <85>
; column_splittimeline.cpp <104>
; column_timeline.cpp <61>
;[Chats (all)]
; dlgoption_suboutput.cpp <173>
; dlgoption_suboutput.cpp <228>
;[Chats (all, absolute)]
; dlgoption_suboutput.cpp <231>
;[Chats (all, average per week)]
; dlgoption_suboutput.cpp <176>
;[Chats (all, average)]
; column_splittimeline.cpp <105>
; column_timeline.cpp <62>
;[Chats (in/out ratio)]
; column_inout.cpp <56>
; column_split.cpp <83>
; column_splittimeline.cpp <102>
; column_timeline.cpp <59>
;[Chats (incoming)]
; dlgoption_suboutput.cpp <171>
; dlgoption_suboutput.cpp <226>
;[Chats (incoming, absolute)]
; dlgoption_suboutput.cpp <229>
;[Chats (incoming, average per week)]
; dlgoption_suboutput.cpp <174>
;[Chats (incoming, average)]
; column_inout.cpp <57>
; column_split.cpp <84>
; column_splittimeline.cpp <103>
; column_timeline.cpp <60>
;[Chats (outgoing)]
; dlgoption_suboutput.cpp <172>
; dlgoption_suboutput.cpp <227>
;[Chats (outgoing, absolute)]
; dlgoption_suboutput.cpp <230>
;[Chats (outgoing, average per week)]
; dlgoption_suboutput.cpp <175>
;[Chats (outgoing, average)]
; iconlib.cpp <17>
;[Checkbox]
; iconlib.cpp <20>
;[Checkbox (checked & disabled)]
; iconlib.cpp <18>
;[Checkbox (checked)]
; iconlib.cpp <19>
;[Checkbox (disabled)]
; resource.rc <351>
;[Close]
; column_words.cpp <143>
;[Color words according to in/out ratio]
; column_split.h <54>
;[Column holding a graphical overview of your chatting amount split by day of week or by hour of day. Different chatting amount measures are available.]
; column_timeline.h <57>
;[Column holding a graphical overview of your chatting behaviour (out, in, total, in/out ratio) from the first to the last day of your history on an daily basis. Multiple days can be grouped. Different chatting behaviour measures are available.]
; column_splittimeline.h <81>
;[Column holding a graphical overview of your chatting behaviour (out, in, total, in/out ratio) from the first to the last day of your history. The information is spread along x- and y-axis and the values are encoded as color values. Different chatting behaviour measures are available.]
; column_words.h <69>
;[Column holding a list of a specified number of most/least common words or longest words used by you, by your contact, or by both of you.]
; column_inout.h <28>
;[Column holding counts for incoming, outgoing or total characters, messages or chats. This column can display absolute and average values.]
; column_events.h <24>
;[Column holding event counts for incoming, outgoing or total number of files or URLs.]
; column_inoutgraph.h <40>
;[Column holding in/out bar graphs for characters, messages or chats.]
; column_chatduration.h <32>
;[Column holding the amount of time you have chatted with the given contact.]
; column_group.h <16>
;[Column holding the contact list's group name the contact is in.]
; column_nick.h <26>
;[Column holding the contact's nick and first/last message time if selected.]
; column_rank.h <19>
;[Column holding the contact's placing according to your sorting criteria.]
; column_protocol.h <16>
;[Column holding the contact's protocol.]
; column_wordcount.h <26>
;[Column holding the number of (distinct) words used by you, by your contact, or by both of you.]
; dlgoption.cpp <114>
;[Column settings]
; column_split.cpp <67>
; column_splittimeline.cpp <83>
;[Column setup]
; dlgoption_subcolumns.cpp <455>
;[Column specific settings]
; dlgoption.cpp <114>
;[Columns]
; iconlib.cpp <27>
;[Combo box]
; iconlib.cpp <28>
;[Combo box (disabled)]
; resource.rc <390>
;[Configure HistoryStats]
; main.cpp <219>
;[Configure statistics...]
; main.cpp <219>
;[Configure...]
; iconlib.cpp <13>
;[Configure... (main menu)]
; dlgoption_subinput.cpp <84>
;[Contact filtering]
; dlgoption_suboutput.cpp <106>
;[Contact filtering and totals]
; iconlib.cpp <14>
;[Contact menu]
; main.cpp <417>
;[Copy history]
; dlgoption.cpp <116>
; dlgoption.cpp <117>
;[Create]
; dlgoption.cpp <116>
; main.cpp <201>
;[Create statistics]
; iconlib.cpp <11>
;[Create statistics (main menu)]
; dlgoption.cpp <117>
;[Create statistics (there are warnings)]
; dlgoption_subglobal.cpp <365>
;[Create statistics for meta-contacts and their subcontacts]
; dlgoption_subglobal.cpp <251>
;[Create statistics on Miranda IM's startup]
; statistic.cpp <1309>
;[Created with #{plugin} #{version} on #{date} at #{time}]
; statistic.cpp <1548>
;[Creating HTML]
; dlgoption_suboutput.cpp <113>
;[Criteria]
; column_split.cpp <66>
; column_splittimeline.cpp <82>
;[Custom (for experts only)]
; column_inout.cpp <41>
; column_inoutgraph.cpp <58>
; column_split.cpp <62>
; column_splittimeline.cpp <75>
; column_timeline.cpp <45>
;[Data source]
; iconlib.cpp <33>
;[Date/time picker]
; iconlib.cpp <34>
;[Date/time picker (disabled)]
; column_split.cpp <95>
; column_splittimeline.cpp <115>
;[Days]
; column_split.cpp <270>
; column_split.cpp <65>
; column_splittimeline.cpp <80>
;[Days of week]
; column_splittimeline.cpp <255>
;[Days of week timeline]
; colbase_words.cpp <252>
;[Define...]
; dlgoption_subcolumns.cpp <225>
;[Delete column]
; dlgfilterwords.cpp <99>
;[Delete set]
; dlgoption_suboutput.cpp <209>
;[Descending]
; resource.rc <266>
;[Description]
; resource.rc <356>
;[Detailed description:]
; column_split.cpp <74>
; column_timeline.cpp <47>
;[Details for every bar (tooltip)]
; column_split.cpp <133>
; column_timeline.cpp <92>
;[Details for every bar (tooltip) are only available with HTML output.]
; resource.rc <285>
;[Discard generated]
; column_inout.cpp <42>
; column_inoutgraph.cpp <62>
;[Display as]
; column_wordcount.cpp <115>
;[Distinct word count]
; column_wordcount.cpp <50>
;[Distinct words]
; dlgoption_subglobal.cpp <255>
;[Don't hide menu items for pseudo protocols]
; dlgoption_subinput.cpp <101>
;[Don't merge events]
; statistic.cpp <1568>
;[Done]
; column_splittimeline.cpp <76>
; column_timeline.cpp <46>
;[Drop everything older than (days, 0=no limit)]
; dlgoption_subinput.cpp <98>
;[Duplicate detection when reading merged contacts]
; dlgoption_subglobal.cpp <379>
;[Easily exchange icons in HistoryStats' user interface]
; iconlib.cpp <25>
;[Edit control]
; iconlib.cpp <26>
;[Edit control (disabled)]
; dlgoption_subglobal.cpp <261>
;[Enforce PNG output, possibly ignoring some column options]
; column_events.h <23>
;[Events]
; column_events.cpp <32>
;[Events to count]
; dlgoption.cpp <112>
;[Exclude]
; dlgoption.cpp <112>
;[Exclude contacts]
; main.cpp <406>
;[Exclude from statistics]
; iconlib.cpp <16>
;[Excluded contacts]
; colbase_words.cpp <245>
;[Extract words from]
; dlgoption_subglobal.cpp <260>
;[Fall back to HTML output, if column options require HTML output]
; dlgoption_subcolumns.cpp <811>
;[Fallback to HTML due to setting.]
; column_events.cpp <60>
; column_events.cpp <69>
;[Files]
; column_events.cpp <40>
;[Files (all)]
; column_events.cpp <38>
;[Files (incoming)]
; column_events.cpp <39>
;[Files (outgoing)]
; colbase_words.cpp <251>
;[Filter URLs/e-mail addresses]
; dlgfilterwords.cpp <134>
;[Filter messages containing]
; dlgfilterwords.cpp <136>
;[Filter messages ending with]
; dlgfilterwords.cpp <133>
;[Filter messages matching]
; dlgfilterwords.cpp <135>
;[Filter messages starting with]
; dlgfilterwords.cpp <130>
;[Filter words containing]
; dlgfilterwords.cpp <132>
;[Filter words ending with]
; dlgfilterwords.cpp <129>
;[Filter words matching]
; dlgfilterwords.cpp <131>
;[Filter words starting with]
; colbase_words.cpp <252>
;[Filter words/messages]
; dlgoption_suboutput.cpp <148>
;[Finally sort by]
; dlgoption_suboutput.cpp <146>
;[First sort by]
; column_nick.cpp <38>
;[First/last message time (tooltip)]
; iconlib.cpp <29>
;[Folder]
; iconlib.cpp <30>
;[Folder (disabled)]
; dlgoption_subcolumns.cpp <478>
;[For this config the selected column...]
; dlgoption_subcolumns.cpp <448>
;[General column settings]
; dlgoption_subglobal.cpp <259>
;[Generate PNG files to represent graphics]
; dlgoption_subglobal.cpp <264>
;[Generate statistics in background thread with low priority]
; dlgoption.cpp <111>
;[Global]
; dlgoption.cpp <111>
;[Global settings]
; column_split.cpp <71>
; column_splittimeline.cpp <87>
;[Graph alignment]
; dlgoption_subglobal.cpp <257>
;[Graphics]
; column_group.cpp <12>
; column_group.cpp <12>
; column_group.h <15>
; dlgoption_suboutput.cpp <158>
;[Group]
; dlgoption_subcolumns.cpp <487>
; dlgoption_subcolumns.cpp <526>
; dlgoption_subcolumns.cpp <536>
; dlgoption_subcolumns.cpp <541>
;[HTML]
; dlgoption_subcolumns.cpp <532>
;[HTML as fallback]
; dlgoption_suboutput.cpp <131>
;[HTML file generation]
; dlgoption_subcolumns.cpp <786>
;[HTML output unsupported.]
; dlgoption_subcolumns.cpp <377>
;[Hide additional column info...]
; dlgoption_subglobal.cpp <256>
;[Hide menu items for protocol...]
; main.cpp <442>
;[History]
; dlgoption_subinput.cpp <79>
;[History interpretation]
; dlgoption_subinput.cpp <89>
;[History read mode for MetaContacts]
; dlgoption.cpp <182>
; statistic.cpp <1700>
;[HistoryStats]
; resource.rc <260>
;[HistoryStats - Add column]
; main.cpp <285>
;[HistoryStats - Confirm]
; resource.rc <274>
;[HistoryStats - Conflicting files]
; dlgoption_subcolumns.cpp <770>
; statistic.cpp <1590>
;[HistoryStats - Error]
; resource.rc <366>
;[HistoryStats - Filter words/messages]
; main.cpp <344>
;[HistoryStats - Information]
; resource.rc <348>
;[HistoryStats - Plugin/extension info]
; dlgconfigure.cpp <103>
; dlgfilterwords.cpp <193>
; dlgoption.cpp <295>
; main.cpp <171>
;[HistoryStats - Warning]
; resource.rc <244>
;[HistoryStats - Working...]
; statistic.cpp <234>
;[HistoryStats couldn't create a required folder (#{folder}).\r\n\r\nPlease check the output filename and additional output folder you have chosen for correctness. Additionally, please check whether the file, folder, and/or disk is writable.]
; statistic.cpp <1088>
;[HistoryStats couldn't open the output file (#{file}) for write access.\r\n\r\nPlease check the output filename you have chosen for correctness. Additionally, please check whether the file, folder, and/or disk is writable.]
; statistic.cpp <1699>
;[HistoryStats is already generating statistics. Please wait for the already running process to be finished or cancel it and try again.]
; dlgoption_subglobal.cpp <454>
;[HistoryStats supports several plugins. Click to hide info...]
; dlgoption_subglobal.cpp <454>
;[HistoryStats supports several plugins. Click to learn more...]
; column_split.cpp <94>
; column_splittimeline.cpp <114>
;[Hours]
; column_split.cpp <269>
; column_split.cpp <64>
; column_splittimeline.cpp <78>
;[Hours of day]
; column_splittimeline.cpp <254>
;[Hours of day timeline]
; dlgoption_subglobal.cpp <381>
;[Icons Library Manager]
; dlgoption_subinput.cpp <85>
;[Ignore all contacts with protocol...]
; dlgoption_subinput.cpp <103>
;[Ignore messages...]
; colbase_words.cpp <250>
;[Ignore words longer than (chars, 0=no limit)]
; colbase_words.cpp <249>
;[Ignore words shorter than (chars)]
; column_inout.h <27>
;[In/out]
; column_inoutgraph.cpp <69>
;[In/out details (tooltip)]
; column_inoutgraph.h <39>
;[In/out graph]
; dlgoption_suboutput.cpp <121>
;[Include omitted contacts in totals]
; dlgoption_suboutput.cpp <123>
;[Include totals in statistics]
; dlgoption_suboutput.cpp <122>
;[Include totals of omitted contacts in additional row]
; column_inoutgraph.cpp <167>
;[Incoming]
; column_events.cpp <64>
;[Incoming URLs]
; column_inout.cpp <87>
;[Incoming characters]
; column_inout.cpp <93>
;[Incoming chats]
; column_events.cpp <67>
;[Incoming files]
; colbase_words.cpp <246>
; column_inout.cpp <90>
;[Incoming messages]
; statistic.cpp <1539>
;[Initializing]
; dlgoption.cpp <113>
;[Input]
; dlgoption.cpp <113>
;[Input settings]
; dlgoption_subglobal.cpp <250>
;[Integration]
; column_words.cpp <137>
; column_words.cpp <221>
;[Least common words]
; dlgoption_suboutput.cpp <112>
;[Limit number of contacts in statistics]
; statistic.cpp <1544>
;[Limiting number of contacts]
; column_words.cpp <138>
; column_words.cpp <222>
;[Longest words]
; dlgoption_suboutput.cpp <127>
;[Make column titles more verbose]
; column_chatduration.cpp <44>
;[Maximum]
; column_chatduration.cpp <87>
;[Maximum chat duration]
; dlgoption_suboutput.cpp <118>
;[Maximum inactivity time (days)]
; dlgoption_subinput.cpp <96>
;[Merge contacts with same name]
; dlgoption_subinput.cpp <100>
;[Merge events (strict)]
; dlgoption_subinput.cpp <99>
;[Merge events (tolerant)]
; dlgoption_subinput.cpp <102>
;[Message filtering]
; column_inout.cpp <82>
; column_inout.cpp <92>
; column_inoutgraph.cpp <137>
; column_inoutgraph.cpp <60>
;[Messages]
; column_inout.cpp <55>
; column_split.cpp <82>
; column_splittimeline.cpp <100>
; column_timeline.cpp <57>
;[Messages (all)]
; dlgoption_suboutput.cpp <167>
; dlgoption_suboutput.cpp <222>
;[Messages (all, absolute)]
; dlgoption_suboutput.cpp <225>
;[Messages (all, average per week)]
; dlgoption_suboutput.cpp <170>
;[Messages (all, average)]
; column_splittimeline.cpp <101>
; column_timeline.cpp <58>
;[Messages (in/out ratio)]
; column_inout.cpp <53>
; column_split.cpp <80>
; column_splittimeline.cpp <98>
; column_timeline.cpp <55>
;[Messages (incoming)]
; dlgoption_suboutput.cpp <165>
; dlgoption_suboutput.cpp <220>
;[Messages (incoming, absolute)]
; dlgoption_suboutput.cpp <223>
;[Messages (incoming, average per week)]
; dlgoption_suboutput.cpp <168>
;[Messages (incoming, average)]
; column_inout.cpp <54>
; column_split.cpp <81>
; column_splittimeline.cpp <99>
; column_timeline.cpp <56>
;[Messages (outgoing)]
; dlgoption_suboutput.cpp <166>
; dlgoption_suboutput.cpp <221>
;[Messages (outgoing, absolute)]
; dlgoption_suboutput.cpp <224>
;[Messages (outgoing, average per week)]
; dlgoption_suboutput.cpp <169>
;[Messages (outgoing, average)]
; dlgoption_subglobal.cpp <367>
;[MetaContacts Plugin]
; column_chatduration.cpp <42>
;[Minimum]
; column_chatduration.cpp <85>
;[Minimum chat duration]
; dlgoption_subinput.cpp <82>
;[Minimum time to assume when calculating average (days)]
; dlgoption_subglobal.cpp <263>
;[Miscellaneous]
; column_words.cpp <136>
; column_words.cpp <220>
;[Most common words]
; dlgoption_subcolumns.cpp <226>
;[Move down]
; dlgoption_subcolumns.cpp <227>
;[Move up]
; column_nick.cpp <55>
; column_nick.cpp <55>
; column_nick.h <25>
; dlgoption_suboutput.cpp <156>
;[Nick]
; dlgoption_subcolumns.cpp <526>
;[Nothing (column will be skipped)]
; column_splittimeline.cpp <90>
;[Number of columns to group]
; dlgoption_suboutput.cpp <120>
;[Number of contacts in "Top n"]
; column_splittimeline.cpp <79>
; column_timeline.cpp <48>
;[Number of days to group]
; column_splittimeline.cpp <81>
;[Number of weeks to group]
; column_words.cpp <139>
;[Number of words]
; column_words.cpp <140>
;[Number of words to skip in output]
; resource.rc <383>
; resource.rc <393>
;[OK]
; dlgoption_suboutput.cpp <119>
;[Omit all contacts not in "Top n"]
; dlgoption_suboutput.cpp <114>
;[Omit contacts that didn't produce a certain amount of data]
; dlgoption_suboutput.cpp <117>
;[Omit contacts that were inactive for some time]
; dlgoption_suboutput.cpp <115>
;[Omit if]
; column_nick.cpp <108>
;[Omitted]
; statistic.cpp <1041>
; statistic.cpp <988>
;[Omitted contacts]
; dlgoption_subinput.cpp <97>
;[Only merge if contacts are in the same group]
; dlgoption_suboutput.cpp <129>
;[Only show if a custom title was entered or if titles are not verbose]
; dlgoption_subglobal.cpp <258>
;[Only use HTML to simulate graphics]
; iconlib.cpp <17>
; iconlib.cpp <18>
; iconlib.cpp <19>
; iconlib.cpp <20>
; iconlib.cpp <21>
; iconlib.cpp <22>
; iconlib.cpp <23>
; iconlib.cpp <24>
; iconlib.cpp <25>
; iconlib.cpp <26>
; iconlib.cpp <27>
; iconlib.cpp <28>
; iconlib.cpp <29>
; iconlib.cpp <30>
; iconlib.cpp <31>
; iconlib.cpp <32>
; iconlib.cpp <33>
; iconlib.cpp <34>
;[Options tree]
; column_chatduration.cpp <47>
;[Other information in tooltip]
; column_inoutgraph.cpp <166>
;[Outgoing]
; column_events.cpp <65>
;[Outgoing URLs]
; column_inout.cpp <88>
;[Outgoing characters]
; column_inout.cpp <94>
;[Outgoing chats]
; column_events.cpp <68>
;[Outgoing files]
; colbase_words.cpp <247>
; column_inout.cpp <91>
;[Outgoing messages]
; dlgoption.cpp <115>
;[Output]
; dlgoption_suboutput.cpp <136>
;[Output additional files to subfolder]
; dlgoption_suboutput.cpp <135>
;[Output file]
; dlgoption_suboutput.cpp <133>
;[Output files and folders]
; dlgoption_suboutput.cpp <125>
;[Output header]
; dlgoption.cpp <115>
;[Output settings]
; resource.rc <284>
;[Overwrite existing]
; dlgoption_suboutput.cpp <132>
;[Own nick for statistics]
; utils.cpp <312>
;[PM]
; dlgoption_subcolumns.cpp <497>
; dlgoption_subcolumns.cpp <536>
; dlgoption_subcolumns.cpp <541>
;[PNG]
; dlgoption_subcolumns.cpp <497>
;[PNG (partial)]
; dlgoption_subcolumns.cpp <532>
;[PNG, ignoring some sttings]
; main.cpp <424>
;[Paste history...]
; dlgoption_subglobal.cpp <265>
;[Path to browser (leave blank for system default)]
; column_inoutgraph.cpp <72>
;[Percentage in bar graph]
; column_inoutgraph.cpp <70>
;[Percentage in tooltip]
; resource.rc <352>
;[Plugin/extension name:]
; statistic.cpp <1546>
;[Postcollecting column data]
; statistic.cpp <1543>
;[Precollecting column data]
; dlgoption_subglobal.cpp <262>
;[Prefer HTML output over PNG output, if available]
; column_protocol.cpp <12>
; column_protocol.cpp <12>
; column_protocol.h <15>
; dlgoption_suboutput.cpp <157>
;[Protocol]
; resource.rc <354>
;[Provided features:]
; dlgoption_subglobal.cpp <253>
;[Put menu items into submenu]
; iconlib.cpp <21>
;[Radio button]
; iconlib.cpp <24>
;[Radio button (checked & disabled)]
; iconlib.cpp <22>
;[Radio button (checked)]
; iconlib.cpp <23>
;[Radio button (disabled)]
; column_rank.cpp <12>
; column_rank.cpp <12>
; column_rank.h <18>
;[Rank]
; column_wordcount.cpp <116>
; column_wordcount.cpp <51>
;[Ratio total/distinct words]
; statistic.cpp <1540>
;[Reading database]
; dlgoption_suboutput.cpp <107>
;[Remove contacts with empty history]
; dlgoption_suboutput.cpp <108>
;[Remove contacts with only incoming chats]
; dlgoption_suboutput.cpp <110>
;[Remove contacts with only outgoing chats]
; dlgoption_suboutput.cpp <111>
;[Remove only if contact never answered]
; dlgoption_suboutput.cpp <109>
;[Remove only if you never answered]
; statistic.cpp <1541>
;[Removing contacts]
; dlgoption_suboutput.cpp <126>
;[Repeat header every n contacts (0=don't repeat)]
; resource.rc <375>
;[Set mode:]
; resource.rc <373>
;[Set name:]
; resource.rc <369>
;[Sets:]
; dlgoption_subcolumns.cpp <815>
;[Setting ignored due to PNG output.]
; dlgoption_subcolumns.cpp <377>
;[Show additional column info...]
; column_chatduration.cpp <46>
;[Show bar graph for chat duration type]
; column_nick.cpp <39>
;[Show countact count for omitted/totals (tooltip)]
; column_words.cpp <142>
;[Show separate counts for incoming/outgoing]
; dlgoption.cpp <244>
; main.cpp <210>
;[Show statistics]
; iconlib.cpp <12>
;[Show statistics (main menu)]
; column_inoutgraph.cpp <68>
;[Show sum of incoming and outgoing]
; dlgoption_suboutput.cpp <128>
;[Show tooltips with detailed information in column titles]
; dlgoption.cpp <238>
;[Show warnings...]
; resource.rc <277>
;[Some files were temporarily stored in another location to avoid overwriting already existing files. If you always want to overwrite existing files there is an option for this.]
; dlgoption_suboutput.cpp <130>
;[Sorting]
; statistic.cpp <1542>
;[Sorting contacts]
; main.cpp <206>
; main.cpp <215>
; main.cpp <224>
; main.cpp <443>
;[Statistics]
; statistic.cpp <1149>
;[Statistics for #{nick}]
; statistic.cpp <1136>
;[Statistics for #{nick} - HistoryStats]
; dlgoption_subinput.cpp <108>
;[Strip BBCode tags from messages]
; dlgoption_subinput.cpp <107>
;[Strip raw RTF control sequences from message]
; dlgoption_suboutput.cpp <137>
;[Subfolder for additional files]
; dlgoption_suboutput.cpp <134>
;[Substitute variables in output file name and subfolder for additional files]
; main.cpp <339>
;[Successfully read #{success} events of which #{fail_add} couldn't be added to the target history. #{fail} events couldn't be read from the source history.]
; dlgoption_subglobal.cpp <402>
;[Supported plugins (double-click to learn more):]
; dlgoption_suboutput.cpp <124>
;[Table header]
; resource.rc <279>
;[The following files could not be written because files with the same names already existed. Please decide whether to overwrite the existing or to discard the generated files.]
; dlgoption_subglobal.cpp <366>
;[The following information are only relevant if your already use MetaContacts. In case you do please use version 0.9.10.6 or above.\r\n\r\nHistoryStats perfectly integrates with MetaContacts and is able to collect the data from the meta-contact as well as from the subcontacts. It is able to intelligently merge all subcontacts histories and more. You can configure MetContacts integration in the "Input" options.]
; dlgfilterwords.cpp <192>
;[The selected set is in use by at least one other column. If you remove it it won't be available to all other columns that use it. Are you sure you want to remove the set?]
; main.cpp <170>
;[The statistics can't be found. Either you never created them or the last created statistics were moved to a different location and can't be found anymore.]
; dlgoption_suboutput.cpp <147>
;[Then sort by]
; dlgoption.cpp <277>
;[There are some potential conflicts in your settings. However, this is only a warning and can in general be ignored. The details:]
; dlgoption_subinput.cpp <80>
;[Time a chat session must last to be counted (seconds)]
; dlgoption_subinput.cpp <81>
;[Time between two chat sessions (seconds)]
; dlgoption_suboutput.cpp <181>
;[Time of first message to/from contact]
; dlgoption_suboutput.cpp <182>
;[Time of last message to/from contact]
; column_timeline.cpp <215>
; column_timeline.h <56>
;[Timeline]
; column_timeline.cpp <212>
;[Timeline for #{data}]
; dlgoption_subcolumns.cpp <450>
;[Title (default if empty)]
; column_chatduration.cpp <45>
;[Total (sum of all chats)]
; column_chatduration.cpp <88>
;[Total chat duration]
; column_wordcount.cpp <114>
;[Total word count]
; column_wordcount.cpp <49>
;[Total words]
; column_nick.cpp <112>
; statistic.cpp <1051>
;[Totals]
; statistic.cpp <1547>
;[Transforming data]
; dlgoption_subinput.cpp <93>
;[Treat meta-contacts and subcontacts as normal contacts]
; column_events.cpp <59>
; column_events.cpp <66>
;[URLs]
; column_events.cpp <37>
;[URLs (all)]
; column_events.cpp <35>
;[URLs (incoming)]
; column_events.cpp <36>
;[URLs (outgoing)]
; iconlib.cpp <15>
;[Unexcluded contacts]
; column_split.cpp <69>
;[Units per bar]
; column_splittimeline.cpp <85>
;[Units per block]
; column_inout.cpp <45>
; column_inoutgraph.cpp <65>
;[Units per day]
; column_inout.cpp <47>
; column_inoutgraph.cpp <67>
;[Units per month (30 days)]
; column_inout.cpp <46>
; column_inoutgraph.cpp <66>
;[Units per week]
; dlgoption_subglobal.cpp <374>
;[Updater|Updater (Unicode)]
; dlgoption_subinput.cpp <92>
;[Use meta-contact's history and its subcontacts' histories]
; dlgoption_subinput.cpp <90>
;[Use only meta-contact's history]
; dlgoption_subinput.cpp <91>
;[Use only subcontacts' histories (for one meta-contact)]
; dlgoption_subglobal.cpp <373>
;[Use this plugin if you'd like to be automatically notified when a new version of HistoryStats is published. This plugin can install the updated version, too. As always, be sure to use a recent version though this shouldn't be a big problem with this plugin.]
; dlgoption_subglobal.cpp <380>
;[Use this plugin if you'd like to customize most of the icons HistoryStats' user interface. Please be sure to use version 0.0.1.0 or above. Otherwise HistoryStats won't show up in IcoLib's options. If you're running Miranda IM 0.7.0 alpha #3 or above you don't need a separate plugin for this.]
; column_split.cpp <96>
; column_splittimeline.cpp <116>
;[Weeks]
; column_wordcount.h <25>
;[Word count]
; column_words.cpp <141>
;[Word count for each word (tooltip)]
; column_wordcount.cpp <48>
;[Word count type]
; dlgoption_subinput.cpp <83>
;[Word delimiting characters]
; column_words.h <68>
;[Words]
; column_words.cpp <135>
;[Words type]
; statistic.cpp <1254>
;[Writing omitted contacts]
; statistic.cpp <1287>
;[Writing totals]
; dlgoption.cpp <168>
;[You can't access the options of HistoryStats as long as the stand-alone configuration dialog of HistoryStats is open. Please close the stand-alone dialog before opening the options dialog of Miranda IM to see the options of HistoryStats here.\r\n\r\nNote that the options offered by both dialogs are the same.]
; dlgconfigure.cpp <102>
;[You can't access the stand-alone configuration dialog of HistoryStats as long as the options dialog of Miranda IM is open. Please close the options dialog and try again.\r\n\r\nNote that the options offered by both dialogs are the same.]
; dlgoption.cpp <181>
;[You have unsaved settings. Do you want to save before running HistoryStats?]
; main.cpp <279>
;[You're going to copy the complete history of #{source_name} (#{source_proto}) to #{target_name} (#{target_proto}). Afterwards, the target history will contain entries from both histories. There is no way to revert this operation. Be careful! This is a rather big operation and has the potential to damage your database. Be sure to have a backup of this database before performing this operation.\r\n\r\nAre you sure you would like to continue?]
; column_timeline.cpp <360>
;[[#{date}] #{amount}]
; column_timeline.cpp <505>
;[[#{date}] #{out_amount} (out) / #{in_amount} (in)]
; column_split.cpp <431>
;[[#{day}] #{amount}]
; column_split.cpp <425>
;[[#{hour}:00-#{hour}:59] #{amount}]
; column_timeline.cpp <353>
;[[#{start_date}-#{end_date}] #{amount}]
; column_timeline.cpp <497>
;[[#{start_date}-#{end_date}] #{out_amount} (out) / #{in_amount} (in)]
; column_chatduration.cpp <176>
;[[Avg] #{amount}]
; column_nick.cpp <78>
;[[First] #{first_time} / [Last] #{last_time}]
; column_chatduration.cpp <177>
;[[Max] #{amount}]
; column_chatduration.cpp <175>
;[[Min] #{amount}]
; column_inoutgraph.cpp <217>
;[[Out] #{out_amount} (#{out_ratio}) / [In] #{in_amount} (#{in_ratio})]
; column_inoutgraph.cpp <227>
;[[Out] #{out_amount} / [In] #{in_amount}]
; column_words.cpp <261>
;[[Out] #{out_words} / [In] #{in_words}]
; column_chatduration.cpp <178>
;[[Sum] #{amount}]
; column_split.cpp <277>
; column_splittimeline.cpp <262>
; column_timeline.cpp <198>
;[all characters]
; column_split.cpp <283>
; column_splittimeline.cpp <270>
; column_timeline.cpp <206>
;[all chats]
; column_split.cpp <280>
; column_splittimeline.cpp <266>
; column_timeline.cpp <202>
; column_wordcount.cpp <122>
; column_words.cpp <228>
;[all messages]
; utils.cpp <308>
;[am]
; column_inout.cpp <99>
; column_inoutgraph.cpp <142>
;[day]
; column_splittimeline.cpp <263>
; column_timeline.cpp <199>
;[in/out ratio of characters]
; column_splittimeline.cpp <271>
; column_timeline.cpp <207>
;[in/out ratio of chats]
; column_splittimeline.cpp <267>
; column_timeline.cpp <203>
;[in/out ratio of messages]
; column_split.cpp <275>
; column_splittimeline.cpp <260>
; column_timeline.cpp <196>
;[incoming characters]
; column_split.cpp <281>
; column_splittimeline.cpp <268>
; column_timeline.cpp <204>
;[incoming chats]
; column_split.cpp <278>
; column_splittimeline.cpp <264>
; column_timeline.cpp <200>
; column_wordcount.cpp <120>
; column_words.cpp <226>
;[incoming messages]
; column_inout.cpp <101>
; column_inoutgraph.cpp <144>
;[month]
; utils.cpp <238>
;[month3:Apr]
; utils.cpp <242>
;[month3:Aug]
; utils.cpp <246>
;[month3:Dec]
; utils.cpp <236>
;[month3:Feb]
; utils.cpp <235>
;[month3:Jan]
; utils.cpp <241>
;[month3:Jul]
; utils.cpp <240>
;[month3:Jun]
; utils.cpp <237>
;[month3:Mar]
; utils.cpp <239>
;[month3:May]
; utils.cpp <245>
;[month3:Nov]
; utils.cpp <244>
;[month3:Oct]
; utils.cpp <243>
;[month3:Sep]
; utils.cpp <238>
;[monthF:April]
; utils.cpp <242>
;[monthF:August]
; utils.cpp <246>
;[monthF:December]
; utils.cpp <236>
;[monthF:February]
; utils.cpp <235>
;[monthF:January]
; utils.cpp <241>
;[monthF:July]
; utils.cpp <240>
;[monthF:June]
; utils.cpp <237>
;[monthF:March]
; utils.cpp <239>
;[monthF:May]
; utils.cpp <245>
;[monthF:November]
; utils.cpp <244>
;[monthF:October]
; utils.cpp <243>
;[monthF:September]
; optionsctrlimpl_datetime.cpp <195>
;[none]
; column_split.cpp <276>
; column_splittimeline.cpp <261>
; column_timeline.cpp <197>
;[outgoing characters]
; column_split.cpp <282>
; column_splittimeline.cpp <269>
; column_timeline.cpp <205>
;[outgoing chats]
; column_split.cpp <279>
; column_splittimeline.cpp <265>
; column_timeline.cpp <201>
; column_wordcount.cpp <121>
; column_words.cpp <227>
;[outgoing messages]
; utils.cpp <308>
;[pm]
; utils.cpp <254>
;[wday2:Fr]
; utils.cpp <250>
;[wday2:Mo]
; utils.cpp <255>
;[wday2:Sa]
; utils.cpp <256>
;[wday2:Su]
; utils.cpp <253>
;[wday2:Th]
; utils.cpp <251>
;[wday2:Tu]
; utils.cpp <252>
;[wday2:We]
; column_split.cpp <354>
; utils.cpp <254>
;[wday3:Fri]
; column_split.cpp <350>
; utils.cpp <250>
;[wday3:Mon]
; column_split.cpp <355>
; utils.cpp <255>
;[wday3:Sat]
; column_split.cpp <356>
; utils.cpp <256>
;[wday3:Sun]
; column_split.cpp <353>
; utils.cpp <253>
;[wday3:Thu]
; column_split.cpp <351>
; utils.cpp <251>
;[wday3:Tue]
; column_split.cpp <352>
; utils.cpp <252>
;[wday3:Wed]
; utils.cpp <254>
;[wdayF:Friday]
; utils.cpp <250>
;[wdayF:Monday]
; utils.cpp <255>
;[wdayF:Saturday]
; utils.cpp <256>
;[wdayF:Sunday]
; utils.cpp <253>
;[wdayF:Thursday]
; utils.cpp <251>
;[wdayF:Tuesday]
; utils.cpp <252>
;[wdayF:Wednesday]
; column_inout.cpp <100>
; column_inoutgraph.cpp <143>
;[week]
|