diff --git a/application/models/Distances_model.php b/application/models/Distances_model.php index c8025898..be6b1c3e 100644 --- a/application/models/Distances_model.php +++ b/application/models/Distances_model.php @@ -58,7 +58,7 @@ class Distances_model extends CI_Model 'Callsign' => '', 'Grid' => '', 'Distance' => '', - 'Qsoes' => '', + 'QSOs' => '', 'Grids' => '' ); diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index f3abec7e..d6f905c7 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -950,7 +950,7 @@ $(document).ready(function(){ }, yAxis: { title: { - text: '# QSOes' + text: '# QSOs' } }, navigator: { @@ -971,7 +971,7 @@ $(document).ready(function(){ if(this.point) { return "Distance: " + options.xAxis.categories[this.point.x] + "
Callsign(s) worked (max 5 shown): " + myComments[this.point.x] + - "
Number of qsoes: " + series.data[this.point.x] + ""; + "
Number of QSOs: " + series.data[this.point.x] + ""; } } }, @@ -987,16 +987,16 @@ $(document).ready(function(){ $.each(tmp.qsodata, function(){ myComments.push(this.calls); options.xAxis.categories.push(this.dist); - series.name = 'Number of qsoes'; + series.name = 'Number of QSOs'; series.data.push(this.count); }); options.series.push(series); - $('#information').html(tmp.qrb.Qsoes + " contacts were plotted.
Your longest contact was " + tmp.qrb.Callsign - + " in locator "+ tmp.qrb.Grid - +" and the distance was " + $('#information').html(tmp.qrb.Qsoes + " contacts were plotted.
Your furthest contact was " + tmp.qrb.Callsign + + " in gridsquare "+ tmp.qrb.Grid + +" the distance was " +tmp.qrb.Distance +"km."); var chart = new Highcharts.Chart(options);