Changed QSL-Label to "to radio"

This commit is contained in:
int2001
2024-09-02 06:15:06 +00:00
parent cb6f780378
commit b33a562c1e

View File

@@ -345,7 +345,7 @@ class Labels extends CI_Controller {
function generateLabel($pdf, $current_callsign, $tableData,$numofqsos,$qso,$orientation,$grid=true, $via=false, $reference = false){
$builder = new \AsciiTable\Builder();
$builder->addRows($tableData);
$text = "Confirming QSO".($numofqsos>1 ? 's' : '')." with ";
$text = "Confirming QSO".($numofqsos>1 ? 's' : '').". To Radio: ";
$text .= $current_callsign;
if (($via) && ($qso['via'] ?? '' != '')) {
$text.=' via '.substr($qso['via'],0,8);