Add None to DXCCs

This commit is contained in:
int2001
2024-10-09 07:51:49 +00:00
parent 7a5b9504ec
commit f5acf6ecca
10 changed files with 28 additions and 22 deletions

View File

@@ -376,7 +376,7 @@ class Stationsetup extends CI_Controller {
}
private function stationcountry2html($station_country, $dxcc_end) {
$returntext = $station_country == '' ? _pgettext("DXCC Select - No DXCC", "- NONE - (e.g. /MM, /AM)") : $station_country;
$returntext = $station_country == '' ? __("Please select one") : $station_country;
if ($dxcc_end != NULL) {
$returntext .= ' <span class="badge bg-danger">'.__("Deleted DXCC").'</span>';
}