Missing and compacted translations

Missing translations

More compact translations
This commit is contained in:
Szymon Porwolik
2025-11-12 18:06:20 +01:00
parent f6f606ec26
commit c9cd920a4e
2 changed files with 93 additions and 87 deletions

View File

@@ -48,6 +48,11 @@
var lang_bandmap_next_update = "<?= __("Next update in"); ?>";
var lang_bandmap_minutes = "<?= __("minutes"); ?>";
var lang_bandmap_seconds = "<?= __("seconds"); ?>";
var lang_bandmap_spots_fetched = "<?= __("spots fetched"); ?>";
var lang_bandmap_showing = "<?= __("showing"); ?>";
var lang_bandmap_showing_all = "<?= __("showing all"); ?>";
var lang_bandmap_active_filters = "<?= __("Active filters"); ?>";
var lang_bandmap_fetching = "<?= __("Fetching..."); ?>";
// Bandmap filter labels
var lang_bandmap_not_worked = "<?= __("Not worked"); ?>";
@@ -78,6 +83,15 @@
var lang_bandmap_see_details = "<?= __("See details for"); ?>";
var lang_bandmap_worked_on = "<?= __("Worked on"); ?>";
var lang_bandmap_not_worked_band = "<?= __("Not worked on this band"); ?>";
var lang_bandmap_lotw_last_upload = "<?= __("LoTW User. Last upload was"); ?>";
var lang_bandmap_days_ago = "<?= __("days ago"); ?>";
var lang_bandmap_click_to_view_pota = "<?= __("Click to view on POTA.app"); ?>";
var lang_bandmap_click_to_view_sotl = "<?= __("Click to view on SOTL.as"); ?>";
var lang_bandmap_click_to_view_wwff = "<?= __("Click to view on cqgma.org"); ?>";
var lang_bandmap_click_to_view_iota = "<?= __("Click to view on IOTA-World.org"); ?>";
var lang_bandmap_see_details_continent = "<?= __("See details for continent"); ?>";
var lang_bandmap_see_details_cqz = "<?= __("See details for CQ Zone"); ?>";
var lang_bandmap_in = "<?= __("in"); ?>";
// Bandmap UI messages
var lang_bandmap_exit_fullscreen = "<?= __("Exit Fullscreen"); ?>";
@@ -179,7 +193,7 @@
</button>
<!-- Radio Selector Dropdown -->
<small class="text-muted me-1 flex-shrink-0 d-none d-md-inline"><?= __("Radio:"); ?></small>
<small class="text-muted me-1 flex-shrink-0 d-none d-md-inline"><?= __("TRX:"); ?></small>
<select class="form-select form-select-sm radios flex-shrink-0" id="radio" name="radio" style="width: auto; min-width: 150px;">
<option value="0" selected="selected"><?= __("None"); ?></option>
<option value="ws"<?php if ($this->session->userdata('radio') == 'ws') { echo ' selected="selected"'; } ?>><?= __("Live - ") . __("WebSocket (Requires WLGate>=1.1.10)"); ?></option>
@@ -195,7 +209,7 @@
<div class="d-flex flex-wrap gap-2 align-items-center">
<small class="text-muted me-1 flex-shrink-0"><?= __("de:"); ?></small>
<div class="btn-group flex-shrink-0" role="group">
<button class="btn btn-sm btn-secondary" type="button" id="toggleAllContinentsFilter" title="<?= __("Select all continents"); ?>"><?= __("All"); ?></button>
<button class="btn btn-sm btn-secondary" type="button" id="toggleAllContinentsFilter" title="<?= __("Select all continents"); ?>"><?= __("World"); ?></button>
<button class="btn btn-sm btn-secondary" type="button" id="toggleAfricaFilter" title="<?= __("Toggle Africa continent filter"); ?>">AF</button>
<button class="btn btn-sm btn-secondary" type="button" id="toggleAntarcticaFilter" title="<?= __("Toggle Antarctica continent filter"); ?>">AN</button>
<button class="btn btn-sm btn-secondary" type="button" id="toggleAsiaFilter" title="<?= __("Toggle Asia continent filter"); ?>">AS</button>
@@ -417,15 +431,15 @@
<!-- DX Spot, Continent, Country, Callsign Group -->
<div class="btn-group flex-shrink-0" role="group">
<button class="btn btn-sm btn-secondary" type="button" id="toggleDxSpotFilter" title="<?= __("Toggle DX Spot filter (spotted continent ≠ spotter continent)"); ?>">
<i class="fas fa-globe"></i> <span class="d-none d-sm-inline"><?= __("DX Spots"); ?></span>
<i class="fas fa-globe"></i> <span class="d-none d-sm-inline"><?= __("DX"); ?></span>
</button>
<button class="btn btn-sm btn-secondary" type="button" id="toggleNewContinentFilter" title="<?= __("Toggle New Continent filter"); ?>">
<button class="btn btn-sm btn-secondary" type="button" id="toggleNewContinentFilter" title="<?= __("Toggle New Continents filter"); ?>">
<i class="fas fa-medal" style="color: #FFD700;"></i> <span class="d-none d-sm-inline"><?= __("New Continents"); ?></span>
</button>
<button class="btn btn-sm btn-secondary" type="button" id="toggleDxccNeededFilter" title="<?= __("Toggle New Country filter"); ?>">
<i class="fas fa-medal" style="color: #C0C0C0;"></i> <span class="d-none d-sm-inline"><?= __("New DXCCs"); ?></span>
<button class="btn btn-sm btn-secondary" type="button" id="toggleDxccNeededFilter" title="<?= __("Toggle New Entities filter"); ?>">
<i class="fas fa-medal" style="color: #C0C0C0;"></i> <span class="d-none d-sm-inline"><?= __("New Entities"); ?></span>
</button>
<button class="btn btn-sm btn-secondary" type="button" id="toggleNewCallsignFilter" title="<?= __("Toggle New Callsign filter"); ?>">
<button class="btn btn-sm btn-secondary" type="button" id="toggleNewCallsignFilter" title="<?= __("Toggle New Callsigns filter"); ?>">
<i class="fas fa-medal" style="color: #CD7F32;"></i> <span class="d-none d-sm-inline"><?= __("New Callsigns"); ?></span>
</button>
</div>
@@ -433,13 +447,13 @@
<!-- Fresh, Contest, Ref. Hunter Group -->
<div class="btn-group flex-shrink-0" role="group">
<button class="btn btn-sm btn-secondary" type="button" id="toggleFreshFilter" title="<?= __("Toggle Fresh spots filter (< 5 minutes old)"); ?>">
<i class="fas fa-bolt"></i> <span class="d-none d-sm-inline"><?= __("Fresh Spots"); ?></span>
<i class="fas fa-bolt"></i> <span class="d-none d-sm-inline"><?= __("Fresh"); ?></span>
</button>
<button class="btn btn-sm btn-secondary" type="button" id="toggleContestFilter" title="<?= __("Toggle Contest filter"); ?>">
<i class="fas fa-trophy"></i> <span class="d-none d-sm-inline"><?= __("Contest Spots"); ?></span>
<i class="fas fa-trophy"></i> <span class="d-none d-sm-inline"><?= __("Contest"); ?></span>
</button>
<button class="btn btn-sm btn-secondary" type="button" id="toggleGeoHunterFilter" title="<?= __("Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)"); ?>">
<i class="fas fa-hiking"></i> <span class="d-none d-sm-inline"><?= __("Referenced Spots"); ?></span>
<i class="fas fa-hiking"></i> <span class="d-none d-sm-inline"><?= __("Referenced"); ?></span>
</button>
</div>
@@ -495,13 +509,13 @@
<th title="<?= __("Band"); ?>"><i class="fas fa-wave-square"></i></th>
<th title="<?= __("Frequency"); ?> [MHz]"><?= __("Freq"); ?></th>
<th title="<?= __("Mode"); ?>"><i class="fas fa-broadcast-tower"></i></th>
<th title="<?= __("Spotted Callsign"); ?>"><?= __("Spotted"); ?></th>
<th title="<?= __("Spotted Callsign"); ?>"><?= __("DX"); ?></th>
<th title="<?= __("Continent"); ?>"><i class="fas fa-globe-americas"></i></th>
<th title="<?= __("CQ Zone"); ?>"><i class="fas fa-map-marked"></i></th>
<th title="<?= __("Flag"); ?>"><i class="fas fa-flag"></i></th>
<th title="<?= __("DXCC Entity"); ?>"><?= __("Entity"); ?></th>
<th title="<?= __("DXCC Number"); ?>"><i class="fas fa-hashtag"></i></th>
<th title="<?= __("Spotter Callsign"); ?>"><?= __("Spotter"); ?></th>
<th title="<?= __("Spotter Callsign"); ?>"><?= __("de"); ?></th>
<th title="<?= __("Spotter Continent"); ?>"><i class="fas fa-globe-americas"></i></th>
<th title="<?= __("Spotter CQ Zone"); ?>"><i class="fas fa-map-marked"></i></th>
<th title="<?= __("Special Flags"); ?>"><?= __("Special"); ?></th>