mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
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 lines
630 B
PHP
12 lines
630 B
PHP
<?php
|
|
|
|
$lang['most_worked_title'] = 'Meest Gewerkte Roepletters';
|
|
$lang['most_worked_description'] = 'Deze pagina toont de roepletters waarmee u het vaakst heeft gewerkt vanuit uw actieve logboek.';
|
|
$lang['most_worked_rank'] = 'Rang';
|
|
$lang['most_worked_callsign'] = 'Roepletter';
|
|
$lang['most_worked_contacts'] = 'Contacten';
|
|
$lang['most_worked_first_qso'] = 'Eerste QSO';
|
|
$lang['most_worked_last_qso'] = 'Laatste QSO';
|
|
$lang['most_worked_bands'] = 'Banden';
|
|
$lang['most_worked_modes'] = 'Modi';
|
|
$lang['most_worked_no_data'] = 'Geen QSO\'s gevonden! Zorg ervoor dat u een actief logboek hebt geselecteerd en QSO\'s hebt gelogd.';
|