= __('Number of days with QSOs each year'); ?>
';
echo '';
echo '' . __("Year") . ' ';
foreach ($result as $master) {
echo '' . $master->Year . ' ';
}
echo ' ';
echo '';
echo '' . __("Days") . ' ';
foreach ($result as $master) {
echo '' . $master->Days . ' ';
}
echo ' ';
echo '
';
}
?>
= __('QSOs breakdown by day of the week'); ?>
= __('QSOs breakdown by month of the year'); ?>
'.__("Year")." ".$yr.'';
}
?>
= __("Less")?>
= __("More")?>
= __("Calendar with QSOs") ?>
= __("Longest streak with QSOs in the log"); ?>
= __('A maximum of the 10 longest streaks are shown!'); ?>
session->userdata('user_date_format')) {
// If Logged in and session exists
$custom_date_format = $this->session->userdata('user_date_format');
} else {
// Get Default date format from /config/wavelog.php
$custom_date_format = $this->config->item('qso_date_format');
}
?>
';
echo '';
echo '' . __("Streak (continuous days with QSOs)") . ' ';
echo '' . __("Start Date") . ' ';
echo '' . __("End Date") . ' ';
echo ' ';
foreach ($streaks as $streak) {
echo '';
echo '' . $streak['highstreak'] . ' ';
$beginstreak_newdate = strtotime($streak['beginstreak']);
echo '' . date($custom_date_format, $beginstreak_newdate) . ' ';
$endstreak_newdate = strtotime($streak['endstreak']);
echo '' . date($custom_date_format, $endstreak_newdate) . ' ';
echo ' ';
}
echo '
';
}
else {
echo '
' . _pgettext("Days with QSOs", "No streak found!") . '
';
}
?>
= __("Current streak with QSOs in the log"); ?>
';
echo '';
echo '' . __("Current streak (continuous days with QSOs)") . ' ';
echo '' . __("Start Date") . ' ';
echo '' . __("End Date") . ' ';
echo ' ';
echo '';
echo '' . $currentstreak['highstreak'] . ' ';
$beginstreak_newdate = strtotime($currentstreak['beginstreak']);
echo '' . date($custom_date_format, $beginstreak_newdate) . ' ';
$endstreak_newdate = strtotime($currentstreak['endstreak']);
echo '' . date($custom_date_format, $endstreak_newdate) . ' ';
echo ' ';
echo '
';
}
elseif (is_array($almostcurrentstreak)) {
?>
= __("If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"); ?>
' . __("No current streak found!") . '
';
}
?>