Skip to content

Commit

Permalink
replace "County" with "QTH" for locale label
Browse files Browse the repository at this point in the history
  • Loading branch information
jxmx committed May 11, 2023
1 parent a877620 commit c2221f3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions load/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@


<p>
<label>County:</label>
<label>QTH:</label>
<input type="text" size="30" name="county" /><br/>
<i>Enter the Ohio county you operated from. If operating outside of Ohio, enter your county and state.</i>
<i>Enter your operating location for these QSOs</i>
</p>

<p>
Expand Down
4 changes: 2 additions & 2 deletions qslconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@
$qsl_horiz_county_offset_multi = $qsl_horiz_operator_offset_multi + 50;

# The /qsl/ Notes block
$qsl_page_note = '<div class="alert alert-info"><p><strong>Notes on QSLs:</strong></p><p>For paper QSL, please QSL via our manager K
D8DEB. SASE is appreciated but not required.</p><p>At this time the club does not upload to LoTW or eQSL.</p> </div>';
$qsl_page_note = '<div class="alert alert-info"><p><strong>Notes on QSLs:</strong></p><p>For paper QSL, please QSL via our manager
N8EI. SASE is appreciated but not required.</p><p>Electronic logs available from LoTW.</div>';


###
Expand Down
2 changes: 1 addition & 1 deletion qslprint.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
$qstring .= sprintf(" Oper: %s", $row['operator']);
}
if($qsl_qso_print_opercounty){
$qstring .= sprintf(" County: %s", $row['county']);
$qstring .= sprintf(" QTH: %s", $row['county']);
}
$draw->annotation($qsl_horiz_offset, $qsl_vert_offset, $qstring);

Expand Down
2 changes: 1 addition & 1 deletion qslprintmulti.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
$qstring .= sprintf(" Oper: %s", $row['operator']);
}
if($qsl_qso_print_opercounty){
$qstring .= sprintf(" County: %s", $row['county']);
$qstring .= sprintf(" QTH: %s", $row['county']);
}
$draw->annotation($qsl_horiz_offset_multi,
$qsl_vert_offset_multi + ($lcount * $qsl_multiline_multiplier), $qstring);
Expand Down

0 comments on commit c2221f3

Please sign in to comment.