From c2221f3b9f7f1b37c5021e039a2c011208fca789 Mon Sep 17 00:00:00 2001 From: "Jason D. McCormick" Date: Wed, 10 May 2023 20:59:19 -0400 Subject: [PATCH] replace "County" with "QTH" for locale label --- load/index.php | 4 ++-- qslconf.php | 4 ++-- qslprint.php | 2 +- qslprintmulti.php | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/load/index.php b/load/index.php index 29cd2c2..fd7dcbc 100644 --- a/load/index.php +++ b/load/index.php @@ -82,9 +82,9 @@

- +
- Enter the Ohio county you operated from. If operating outside of Ohio, enter your county and state. + Enter your operating location for these QSOs

diff --git a/qslconf.php b/qslconf.php index 2b3d4d2..1275cfe 100644 --- a/qslconf.php +++ b/qslconf.php @@ -163,8 +163,8 @@ $qsl_horiz_county_offset_multi = $qsl_horiz_operator_offset_multi + 50; # The /qsl/ Notes block -$qsl_page_note = '

Notes on QSLs:

For paper QSL, please QSL via our manager K -D8DEB. SASE is appreciated but not required.

At this time the club does not upload to LoTW or eQSL.

'; +$qsl_page_note = '

Notes on QSLs:

For paper QSL, please QSL via our manager +N8EI. SASE is appreciated but not required.

Electronic logs available from LoTW.

'; ### diff --git a/qslprint.php b/qslprint.php index e7b8e0a..dd2e09d 100644 --- a/qslprint.php +++ b/qslprint.php @@ -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); diff --git a/qslprintmulti.php b/qslprintmulti.php index 69eb74a..841932a 100644 --- a/qslprintmulti.php +++ b/qslprintmulti.php @@ -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);