Fix translations

This commit is contained in:
Andreas Kristiansen
2025-12-16 12:31:47 +01:00
parent d7097a5586
commit 8b912ce223
3 changed files with 8 additions and 8 deletions

View File

@@ -2,7 +2,7 @@
<?php if (!empty($qsos) && count($qsos) > 0): ?>
<div class="table-responsive" style="max-height:50vh; overflow:auto;">
<p class="text-muted">
Found <?php echo count($qsos); ?> QSO(s) missing DXCC information.
<?php echo sprintf(__("Found %s QSO(s) missing DXCC information."), count($qsos));?>
</p>
<table class="table table-sm table-striped table-hover">
<thead>

View File

@@ -2,7 +2,7 @@
<?php if (!empty($qsos) && count($qsos) > 0): ?>
<div class="table-responsive" style="max-height:50vh; overflow:auto;">
<p class="text-muted">
Found <?php echo count($qsos); ?> QSO(s) missing state information for DXCC <?php echo $dxcc; ?>.
<?php echo sprintf(__("Found %s QSO(s) missing state information for DXCC %s."), count($qsos), $dxcc);?>
</p>
<table class="table table-sm table-striped table-hover">
<thead>

View File

@@ -53,9 +53,9 @@ function showDxccUpdateResult($result, $all) {
echo '<table class="table table-striped table-hover">';
echo '<thead class="table-dark">';
echo '<tr>';
echo '<th>Callsign</th>';
echo '<th>Reason</th>';
echo '<th>Station location</th>';
echo '<th>' . __("Callsign") . '</th>';
echo '<th>' . __("Reason") . '</th>';
echo '<th>' . __("Station location") . '</th>';
echo '</tr>';
echo '</thead>';
echo '<tbody>';
@@ -96,9 +96,9 @@ function showStateUpdateResult($result, $country) {
echo '<table class="table table-striped table-hover">';
echo '<thead class="table-dark">';
echo '<tr>';
echo '<th>Callsign</th>';
echo '<th>Reason</th>';
echo '<th>Station location</th>';
echo '<th>' . __("Callsign") . '</th>';
echo '<th>' . __("Reason") . '</th>';
echo '<th>' . __("Station location") . '</th>';
echo '</tr>';
echo '</thead>';
echo '<tbody>';