mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
Update language and timeline view: correct gridsquares label from "Show QSO's" to "Show QSOs" for grammatical accuracy. In timeline/index.php, add an else branch to display a green "Active" badge when a DXCC entry has no end date (keeping the existing deleted badge for ended entries) and wrap the conditional in braces for clarity. These changes improve UI clarity and code readability.
36 lines
1.7 KiB
PHP
36 lines
1.7 KiB
PHP
<?php
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
$lang['gridsquares_gridsquare_map'] = 'Gridsquare Map';
|
|
$lang['gridsquares_activated_gridsquare_map'] = "Activated Gridsquare Map";
|
|
$lang['gridsquares_gridsquare_activators'] = "Gridsquare Activators";
|
|
|
|
$lang['gridsquares_confirmed_is_green'] = 'Confirmed is Green';
|
|
$lang['gridsquares_worked_but_not_confirmed_is_red'] = 'Worked but not confirmed is Red';
|
|
$lang['gridsquares_activated_but_not_confirmed_is_red'] = 'Activated but not confirmed is Red';
|
|
|
|
$lang['gridsquares_this_map_does_not_include_satellite_internet_or_repeater_qsos'] = 'This map does not include satellite, internet or repeater QSOs';
|
|
|
|
$lang['gridsquares_grid_squares'] = 'grid square';
|
|
$lang['gridsquares_total_count'] = 'Total count';
|
|
|
|
$lang['gridsquares_minimum_count'] = "Minimum Count";
|
|
$lang['gridsquares_show_qsos'] = "Show QSOs";
|
|
$lang['gridsquares_show_map'] = "Show Map";
|
|
$lang['gridsquares_band'] = 'Band';
|
|
$lang['gridsquares_mode'] = 'Mode';
|
|
$lang['gridsquares_sat'] = 'Satellite';
|
|
$lang['gridsquares_confirmation'] = 'Confirmation';
|
|
|
|
$lang['gridsquares_button_plot'] = 'Plot';
|
|
$lang['gridsquares_button_clear_markers'] = "Clear Markers";
|
|
|
|
$lang['gridsquares_gridsquares'] = 'Gridsquares';
|
|
$lang['gridsquares_gridsquares_worked'] = 'Gridsquares worked';
|
|
$lang['gridsquares_gridsquares_confirmed'] = 'Gridsquares confirmed';
|
|
$lang['gridsquares_gridsquares_lotw'] = 'Gridsquares confirmed on LoTW';
|
|
$lang['gridsquares_gridsquares_paper'] = 'Gridsquares confirmed by paper QSL';
|
|
$lang['gridsquares_gridsquares_not_confirmed'] = 'Gridsquares not confirmed';
|
|
$lang['gridsquares_gridsquares_total_worked'] = 'Total gridsquares worked';
|
|
$lang['gridsquares_gridsquares_total_activated'] = 'Total gridsquares activated';
|