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 行
653 B
PHP
12 行
653 B
PHP
<?php
|
|
|
|
$lang['most_worked_title'] = 'Indicativos Más Trabajados';
|
|
$lang['most_worked_description'] = 'Esta página muestra los indicativos que has trabajado con más frecuencia desde tu libro de guardia activo.';
|
|
$lang['most_worked_rank'] = 'Rango';
|
|
$lang['most_worked_callsign'] = 'Indicativo';
|
|
$lang['most_worked_contacts'] = 'Contactos';
|
|
$lang['most_worked_first_qso'] = 'Primer QSO';
|
|
$lang['most_worked_last_qso'] = 'Último QSO';
|
|
$lang['most_worked_bands'] = 'Bandas';
|
|
$lang['most_worked_modes'] = 'Modos';
|
|
$lang['most_worked_no_data'] = '¡No se encontraron QSOs! Asegúrate de tener un libro de guardia activo seleccionado y QSOs registrados.';
|