mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Fix translations
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>';
|
||||
|
||||
Reference in New Issue
Block a user