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 行
561 B
PHP
12 行
561 B
PHP
<?php
|
||
|
||
$lang['most_worked_title'] = '最常工作的呼号';
|
||
$lang['most_worked_description'] = '此页面显示您从活动日志簿中最频繁工作的呼号。';
|
||
$lang['most_worked_rank'] = '排名';
|
||
$lang['most_worked_callsign'] = '呼号';
|
||
$lang['most_worked_contacts'] = '联系';
|
||
$lang['most_worked_first_qso'] = '首次QSO';
|
||
$lang['most_worked_last_qso'] = '最后QSO';
|
||
$lang['most_worked_bands'] = '频段';
|
||
$lang['most_worked_modes'] = '模式';
|
||
$lang['most_worked_no_data'] = '未找到QSO!请确保您已选择活动日志簿并记录了QSO。';
|