darold / squidanalyzer

Squid Analyzer parses Squid proxy access log and reports general statistics about hits, bytes, users, networks, top URLs, and top second level domains. Statistic reports are oriented toward user and bandwidth control.
http://squidanalyzer.darold.net/
126 stars 36 forks source link

Typo in graph titles #133

Closed aabaker closed 8 years ago

aabaker commented 8 years ago

I've spotted three graph titles that say Statistiques, not Statistics

--- SquidAnalyzer.pm    2016-06-05 11:36:10.000000000 +0100
+++ SquidAnalyzer.pm    2016-06-05 12:21:49.000000000 +0100
@@ -136,9 +136,9 @@
    'Domain_Duration_title' => 'Top %d Domain duration on',
    'Domain_number' => 'Number of domain',
    'Domain_graph_hits_title' => 'Domain Hits Statistics on',
-   'Domain_graph_bytes_title' => 'Domain Bytes Statistiques on',
+   'Domain_graph_bytes_title' => 'Domain Bytes Statistics on',
    'Second_domain_graph_hits_title' => 'Second level Hits Statistics on',
-   'Second_domain_graph_bytes_title' => 'Second level Bytes Statistiques on',
+   'Second_domain_graph_bytes_title' => 'Second level Bytes Statistics on',
    'First_visit' => 'First visit',
    'Last_visit' => 'Last visit',
    'Globals_Statistics' => 'Globals Statistics',
@@ -147,7 +147,7 @@
    'Up_link' => 'Up',
    'Click_year_stat' => 'Click on year\'s statistics link for details',
    'Mime_graph_hits_title' => 'Mime Type Hits Statistics on',
-   'Mime_graph_bytes_title' => 'Mime Type MBytes Statistiques on',
+   'Mime_graph_bytes_title' => 'Mime Type MBytes Statistics on',
    'User' => 'User',
    'Count' => 'Count',
    'WeekDay' => 'Su Mo Tu We Th Fr Sa',
darold commented 8 years ago

My bad, commit 28c7ebc fix it. Thanks for the patch.

aabaker commented 8 years ago

Thanks for merging.