Fixed typo, WLGate version and intends in translations

This commit is contained in:
Szymon Porwolik
2025-10-30 10:01:00 +01:00
parent b4863901b7
commit 5cd7f53c0f
2 changed files with 26 additions and 26 deletions

View File

@@ -67,30 +67,30 @@
var lang_notes_duplicate_confirmation = "<?= __("Duplicate this note?"); ?>";
var lang_notes_duplication_disabled_short = "<?= __("Duplication Disabled"); ?>";
var lang_notes_not_found = "<?= __("No notes were found"); ?>";
var lang_qso_note_missing = "<?= __("No notes for this callsign"); ?>";
var lang_qso_note_toast_title = "<?= __("Callsign Note"); ?>";
var lang_qso_note_deleted = "<?= __("Note deleted successfully"); ?>";
var lang_qso_note_created = "<?= __("Note created successfully"); ?>";
var lang_qso_note_saved = "<?= __("Note saved successfully"); ?>";
var lang_qso_note_error_saving = "<?= __("Error saving note"); ?>";
var lang_cat_live = "<?= __("live"); ?>";
var lang_cat_polling = "<?= __("polling"); ?>";
var lang_cat_polling_tooltip = "<?= __("Periodic polling is slow. When operating locally, WebSockets are a more convenient way to control your radio in real-time."); ?>";
var lang_cat_tx = "<?= __("TX"); ?>";
var lang_cat_rx = "<?= __("RX"); ?>";
var lang_cat_tx_rx = "<?= __("TX/RX"); ?>";
var lang_cat_mode = "<?= __("Mode"); ?>";
var lang_cat_power = "<?= __("Power"); ?>";
var lang_cat_connection_error = "<?= __("Radio connection error"); ?>";
var lang_cat_connection_lost = "<?= __("Connection lost, please select another radio."); ?>";
var lang_cat_connection_timeout = "<?= __("Radio connection timeout"); ?>";
var lang_cat_data_stale = "<?= __("Data is stale, please select another radio."); ?>";
var lang_cat_not_logged_in = "<?= __("You're not logged in. Please log in."); ?>";
var lang_cat_radio_tuning_failed = "<?= __("Radio Tuning Failed"); ?>";
var lang_cat_failed_to_tune = "<?= __("Failed to tune radio to"); ?>";
var lang_cat_not_responding = "<?= __("CAT interface not responding. Please check your radio connection."); ?>";
var lang_cat_no_url_configured = "<?= __("No CAT URL configured for this radio"); ?>";
var lang_cat_websocket_radio = "<?= __("WebSocket Radio"); ?>";
var lang_qso_note_missing = "<?= __("No notes for this callsign"); ?>";
var lang_qso_note_toast_title = "<?= __("Callsign Note"); ?>";
var lang_qso_note_deleted = "<?= __("Note deleted successfully"); ?>";
var lang_qso_note_created = "<?= __("Note created successfully"); ?>";
var lang_qso_note_saved = "<?= __("Note saved successfully"); ?>";
var lang_qso_note_error_saving = "<?= __("Error saving note"); ?>";
var lang_cat_live = "<?= __("live"); ?>";
var lang_cat_polling = "<?= __("polling"); ?>";
var lang_cat_polling_tooltip = "<?= __("Periodic polling is slow. When operating locally, WebSockets are a more convenient way to control your radio in real-time."); ?>";
var lang_cat_tx = "<?= __("TX"); ?>";
var lang_cat_rx = "<?= __("RX"); ?>";
var lang_cat_tx_rx = "<?= __("TX/RX"); ?>";
var lang_cat_mode = "<?= __("Mode"); ?>";
var lang_cat_power = "<?= __("Power"); ?>";
var lang_cat_connection_error = "<?= __("Radio connection error"); ?>";
var lang_cat_connection_lost = "<?= __("Connection lost, please select another radio."); ?>";
var lang_cat_connection_timeout = "<?= __("Radio connection timeout"); ?>";
var lang_cat_data_stale = "<?= __("Data is stale, please select another radio."); ?>";
var lang_cat_not_logged_in = "<?= __("You're not logged in. Please log in."); ?>";
var lang_cat_radio_tuning_failed = "<?= __("Radio Tuning Failed"); ?>";
var lang_cat_failed_to_tune = "<?= __("Failed to tune radio to"); ?>";
var lang_cat_not_responding = "<?= __("CAT interface not responding. Please check your radio connection."); ?>";
var lang_cat_no_url_configured = "<?= __("No CAT URL configured for this radio"); ?>";
var lang_cat_websocket_radio = "<?= __("WebSocket Radio"); ?>";
var lang_qso_location_is_fetched_from_provided_gridsquare = "<?= __("Location is fetched from provided gridsquare"); ?>";
var lang_qso_location_is_fetched_from_dxcc_coordinates = "<?= __("Location is fetched from DXCC coordinates (no gridsquare provided)"); ?>";
</script>

View File

@@ -383,9 +383,9 @@ if (typeof window.DX_WATERFALL_FIELD_MAP === 'undefined') {
<label for="radio"><?= __("Radio"); ?></label>
<select class="form-select radios" id="radio" name="radio">
<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>
<option value="ws"<?php if ($this->session->userdata('radio') == 'ws') { echo ' selected="selected"'; } ?>><?= __("Live - ") . __("WebSocket (Requires WLGate>=1.1.10)"); ?></option>
<?php foreach ($radios->result() as $row) { ?>
<option value="<?php echo $row->id; ?>" <?php if($this->session->userdata('radio') == $row->id) { echo "selected=\"selected\""; } ?>><?= __("Pooling - ") . $row->radio; ?> <?php if ($radio_last_updated->id == $row->id) { echo "(".__("last updated").")"; } else { echo ''; } ?></option>
<option value="<?php echo $row->id; ?>" <?php if($this->session->userdata('radio') == $row->id) { echo "selected=\"selected\""; } ?>><?= __("Polling - ") . $row->radio; ?> <?php if ($radio_last_updated->id == $row->id) { echo "(".__("last updated").")"; } else { echo ''; } ?></option>
<?php } ?>
</select>
</div>