Introduces a new 'Most Worked Callsigns' page, controller, model, and view to display callsigns worked multiple times from the active logbook. Adds language support for this feature in multiple languages and updates the navigation menu to include a link to the new page. Also includes DataTables integration and filter options for bands, modes, satellites, date range, and minimum QSOs.
12 行
589 B
PHP
12 行
589 B
PHP
<?php
|
|
|
|
$lang['most_worked_title'] = 'Most Worked Callsigns';
|
|
$lang['most_worked_description'] = 'This page shows the callsigns you have worked most frequently from your active logbook.';
|
|
$lang['most_worked_rank'] = 'Rank';
|
|
$lang['most_worked_callsign'] = 'Callsign';
|
|
$lang['most_worked_contacts'] = 'Contacts';
|
|
$lang['most_worked_first_qso'] = 'First QSO';
|
|
$lang['most_worked_last_qso'] = 'Last QSO';
|
|
$lang['most_worked_bands'] = 'Bands';
|
|
$lang['most_worked_modes'] = 'Modes';
|
|
$lang['most_worked_no_data'] = 'No QSOs found! Make sure you have an active logbook selected and QSOs logged.';
|