From 5d23802e16200accc7166d91312dbb2b19bc5e13 Mon Sep 17 00:00:00 2001 From: Paul Beesley <830976+poll-busily@users.noreply.github.com> Date: Wed, 28 Oct 2020 18:03:30 +0000 Subject: [PATCH] Further tweaks to text and text formatting This commit has some further changes to text throughout the application. There are also some small fixes for text formatting. E.g. making sure that the small "helper" text under certain form fields is all consistent in terms of colour, font, etc. --- application/controllers/Clublog.php | 2 +- application/controllers/Qrz.php | 10 +++---- application/models/Distances_model.php | 2 +- application/models/Timeplotter_model.php | 2 +- application/views/adif/import.php | 18 ++++++------- application/views/api/help.php | 2 +- application/views/eqsl/export.php | 8 +++--- application/views/eqsl/import.php | 6 ++--- application/views/interface_assets/footer.php | 10 +++---- application/views/lotw_views/index.php | 4 +-- application/views/mode/index.php | 9 +++++-- application/views/notes/add.php | 2 +- application/views/notes/edit.php | 2 +- application/views/qso/index.php | 12 +++++---- application/views/station_profile/create.php | 24 +++++++++-------- application/views/station_profile/edit.php | 26 ++++++++++--------- application/views/station_profile/index.php | 8 +++--- application/views/timeplotter/index.php | 2 +- application/views/user/edit.php | 14 +++++----- application/views/user/main.php | 2 +- 20 files changed, 88 insertions(+), 77 deletions(-) diff --git a/application/controllers/Clublog.php b/application/controllers/Clublog.php index 3ea9ca74..842b95de 100644 --- a/application/controllers/Clublog.php +++ b/application/controllers/Clublog.php @@ -199,7 +199,7 @@ class Clublog extends CI_Controller { curl_close ($request); } } else { - echo "no qsos to upload"; + echo "No QSOs to upload"; } } } diff --git a/application/controllers/Qrz.php b/application/controllers/Qrz.php index 9346cc0c..4a8643c7 100644 --- a/application/controllers/Qrz.php +++ b/application/controllers/Qrz.php @@ -27,16 +27,16 @@ class Qrz extends CI_Controller { foreach ($station_ids as $station_id) { $qrz_api_key = $this->logbook_model->exists_qrz_api_key($station_id); if($this->mass_upload_qsos($station_id, $qrz_api_key)) { - echo "QSOs has been uploaded to QRZ.com."; - log_message('info', 'QSOs has been uploaded to QRZ.com.'); + echo "QSOs have been uploaded to QRZ.com."; + log_message('info', 'QSOs have been uploaded to QRZ.com.'); } else{ echo "No QSOs found for upload."; log_message('info', 'No QSOs found for upload.'); } } } else { - echo "No station_id's with a QRZ API Key found"; - log_message('error', "No station_id's with a QRZ API Key found"); + echo "No station profiles with a QRZ API Key found."; + log_message('error', "No station profiles with a QRZ API Key found."); } } @@ -139,7 +139,7 @@ class Qrz extends CI_Controller { echo json_encode($data); } else { $data['status'] = 'Error'; - $data['info'] = 'Error, no QSOs to upload found'; + $data['info'] = 'Error: No QSOs found to upload.'; $data['errormessages'] = $result['errormessages']; echo json_encode($data); } diff --git a/application/models/Distances_model.php b/application/models/Distances_model.php index a6da9d68..b2f2a7a0 100644 --- a/application/models/Distances_model.php +++ b/application/models/Distances_model.php @@ -91,7 +91,7 @@ class Distances_model extends CI_Model } else { header('Content-Type: application/json'); - echo json_encode(array('Error' => 'No qsoes to plot found')); + echo json_encode(array('Error' => 'No QSOs found to plot.')); } } } diff --git a/application/models/Timeplotter_model.php b/application/models/Timeplotter_model.php index 2cf36bce..ba8d0c86 100644 --- a/application/models/Timeplotter_model.php +++ b/application/models/Timeplotter_model.php @@ -143,7 +143,7 @@ class Timeplotter_model extends CI_Model } else { header('Content-Type: application/json'); - $data['error'] = 'No qsoes to plot found!'; + $data['error'] = 'No QSOs found to plot!'; echo json_encode($data); } diff --git a/application/views/adif/import.php b/application/views/adif/import.php index 444357ad..7f56d40e 100644 --- a/application/views/adif/import.php +++ b/application/views/adif/import.php @@ -15,7 +15,8 @@ -

Important Log files must have the file type .adi

+

Important Log files must have the file type .adi

+

Warning Maximum file upload size is B.

- + +
Select if ADIF being imported does not contain this information.
@@ -49,16 +51,14 @@
- +
+
If not selected, Cloudlog will attempt to determine DXCC information automatically.
- -

Warning Maximum file upload size is B.

- @@ -70,7 +70,7 @@
@@ -120,7 +120,7 @@

Logbook of The World
-

If no date are chosen, that means all QSOs will be marked!

+

Warning If a date range is not selected then all QSOs will be marked!

From date:

@@ -145,7 +145,7 @@

-
Export Satellite Only QSOs
+
Export Satellite-Only QSOs

Export All Satellite QSOs

Export All Satellite QSOs Confirmed on LoTW

diff --git a/application/views/api/help.php b/application/views/api/help.php index 9c806591..700ec1c6 100644 --- a/application/views/api/help.php +++ b/application/views/api/help.php @@ -14,7 +14,7 @@ API Keys
-

The Cloudlog API (Application Programming Interface) lets third party systems access Cloudlog in a controlled way. Access to the API is managed via API Keys.

+

The Cloudlog API (Application Programming Interface) lets third party systems access Cloudlog in a controlled way. Access to the API is managed via API keys.

You will need to generate an API key for each tool you wish to use (e.g. CloudlogCAT). Generate a read-write key if the application needs to send data to Cloudlog. Generate a read-only key if the application only needs to obtain data from Cloudlog.

Info It's good practice to delete a key if you are no longer using the associated application.

diff --git a/application/views/eqsl/export.php b/application/views/eqsl/export.php index 93bcc624..91e66e6b 100644 --- a/application/views/eqsl/export.php +++ b/application/views/eqsl/export.php @@ -21,9 +21,9 @@ if (isset($eqsl_table)) { ?> -

The following QSOs have not been sent to eQSL.cc

+

Below is a table of QSOs that have not yet been sent to eQSL.

-

Please make sure you have defined the eQSL QTH Nickname in the Station Profile this matches the QTH Nickname you used within eQSL.

+

Info Please make sure the "eQSL QTH Nickname" field is set in your station profile and that the value matches the QTH Nickname you set within eQSL.

The following QSOs were sent to eQSL.cc

"; + echo "

The following QSOs were sent to eQSL.

"; echo $eqsl_results_table; } else { - echo "

There are no QSOs that need to be sent to eQSL.cc at this time. Go log some more QSOs!

"; + echo "

There are no QSOs that need to be sent to eQSL at this time. Go log some more QSOs!

"; } } ?> diff --git a/application/views/eqsl/import.php b/application/views/eqsl/import.php index 17986308..7c9350aa 100644 --- a/application/views/eqsl/import.php +++ b/application/views/eqsl/import.php @@ -20,7 +20,7 @@


Upload the Exported ADIF file from eQSL from the Download Inbox page, to mark QSOs as confirmed on eQSL.

@@ -33,9 +33,9 @@
-

Cloudlog will use the eQSL username and password stored in your user profile to download confirmations from eQSL for you. We will only download confirmations received since your last eQSL confirmed QSO.

+

Cloudlog will use the eQSL credentials from your Cloudlog user profile to connect to eQSL and download confirmations. Only confirmations received since your last eQSL-confirmed QSO will be downloaded.

diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index 4e7764a3..d7f03939 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -977,9 +977,9 @@ $(document).on('change', 'input', function(){ if(data.updated_minutes_ago > minutes) { if($('.radio_timeout_error').length == 0) { - $('.qso_panel').prepend(''); + $('.qso_panel').prepend(''); } else { - $('.radio_timeout_error').text('Radio Connection Error: ' + $('select.radios option:selected').text() + ' data is ' + data.updated_minutes_ago + ' minutes old.'); + $('.radio_timeout_error').text('Radio connection timed-out: ' + $('select.radios option:selected').text() + ' data is ' + data.updated_minutes_ago + ' minutes old.'); } } else { $(".radio_timeout_error" ).remove(); @@ -2228,7 +2228,7 @@ $(document).ready(function(){ }, yAxis: { title: { - text: '# QSOes' + text: '# QSOs' } }, rangeSelector: { @@ -2239,7 +2239,7 @@ $(document).ready(function(){ if(this.point) { return "Time: " + options.xAxis.categories[this.point.x] + "
Callsign(s) worked (max 5): " + myComments[this.point.x] + - "
Number of qsos: " + series.data[this.point.x] + ""; + "
Number of QSOs: " + series.data[this.point.x] + ""; } } }, @@ -2254,7 +2254,7 @@ $(document).ready(function(){ $.each(tmp.qsodata, function(){ myComments.push(this.calls); options.xAxis.categories.push(this.time); - series.name = 'Number of qsos'; + series.name = 'Number of QSOs'; series.data.push(this.count); }); diff --git a/application/views/lotw_views/index.php b/application/views/lotw_views/index.php index 63318847..c60b0b07 100644 --- a/application/views/lotw_views/index.php +++ b/application/views/lotw_views/index.php @@ -4,7 +4,7 @@

@@ -102,7 +102,7 @@
-

You can run the LoTW upload script manually using , this should be run as a cron task hourly or greater not in real time.

+

You can run the LoTW upload script manually from: . This should be run as a cron task on a fixed interval (no more frequently than once an hour).

We are building the help file for this at https://github.com/magicbug/Cloudlog/wiki/LoTW-Import-&-Export-Documentation

diff --git a/application/views/mode/index.php b/application/views/mode/index.php index 788beaf9..0cc7f30f 100644 --- a/application/views/mode/index.php +++ b/application/views/mode/index.php @@ -15,7 +15,12 @@ Modes
-

This is the place you can customize your modes-list by activating/deactivating modes to be shown in the select-list.

+

+ Using the modes list you can control which modes are shown when creating a new QSO. +

+

+ Active modes will be shown in the QSO "Mode" drop-down, while inactive modes will be hidden and cannot be selected. +

@@ -58,4 +63,4 @@

- \ No newline at end of file + diff --git a/application/views/notes/add.php b/application/views/notes/add.php index 4cbeec9f..b6937a65 100644 --- a/application/views/notes/add.php +++ b/application/views/notes/add.php @@ -31,7 +31,7 @@
- + diff --git a/application/views/qso/index.php b/application/views/qso/index.php index 3d70e202..1f02128a 100755 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -195,9 +195,9 @@
- + - Power is in watts only include numbers in the input. + Give power value in Watts. Include only numbers in the input.
@@ -324,12 +324,14 @@
- e.g: GM/NS-001 + + For example: GM/NS-001
- e.g: Q03 + + For example: Q03
@@ -355,7 +357,7 @@
diff --git a/application/views/station_profile/create.php b/application/views/station_profile/create.php index 97623c1d..6a9b5207 100644 --- a/application/views/station_profile/create.php +++ b/application/views/station_profile/create.php @@ -31,13 +31,13 @@
- Shortname for the station location for example Home (IO87IP) + Shortname for the station location. For example: Home (IO87IP)
- Station Callsign for example 2M0SQL/P + Station callsign. For example: 2M0SQL/P
@@ -50,13 +50,13 @@ - Station DXCC + Station DXCC entity. For example: Scotland
- Station City for example Inverness + Station city. For example: Inverness
@@ -114,7 +114,7 @@ - Select Station State + Station state. Applies to certain countries only. Leave blank if not applicable.
@@ -149,14 +149,15 @@ } ?> - If you do not know your ITU Zone click Here to find it! + If you don't know your ITU Zone then click here to find it!
- Station Gridsquare for example IO87IP, if you are at a gridline enter the gridsquare with a comma for example IO77,IO78,IO87,IO88. + Station grid square. For example: IO87IP + If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88.
@@ -171,13 +172,14 @@ ?> - Station IOTA Reference for example EU-005, You can lookup IOTA References at the IOTA World website. + Station IOTA reference. For example: EU-005 + You can look up IOTA references at the IOTA World website.
- Station SOTA Reference. + Station SOTA reference.
@@ -189,7 +191,7 @@
- Your QRZ.com Logbook API can be found in the settings page + Find your API key on QRZ.com's settings page
diff --git a/application/views/station_profile/edit.php b/application/views/station_profile/edit.php index b1fc6a73..1d3311bd 100644 --- a/application/views/station_profile/edit.php +++ b/application/views/station_profile/edit.php @@ -11,7 +11,7 @@
- station_profile_name; ?> (Callsign: station_callsign; ?>) + : station_profile_name; ?> (Callsign: station_callsign; ?>)
@@ -32,13 +32,13 @@
station_profile_name; } ?>" required> - Shortname for the station location for example Home (IO87IP) + Shortname for the station location. For example: Home (IO87IP)
station_callsign; } ?>" required> - Station Callsign for example 2M0SQL/P + Station callsign. For example: 2M0SQL/P
@@ -51,13 +51,13 @@ station_country; } ?>" required /> - Station DXCC + Station DXCC entity. For example: Scotland
station_city; } ?>" required> - Station City for example Inverness + Station city. For example: Inverness
@@ -128,7 +128,7 @@ - Select Station State + Station state. Applies to certain countries only. Leave blank if not applicable.
@@ -167,14 +167,15 @@ } ?> - If you do not know your ITU Zone click Here to find it! + If you don't know your ITU Zone then click here to find it!
station_gridsquare; } ?>" required> - Station Gridsquare for example IO87IP, if you are at a gridline enter the gridsquare with a comma for example IO77,IO78,IO87,IO88. + Station grid square. For example: IO87IP + If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88.
@@ -193,13 +194,14 @@ ?> - Station IOTA Reference for example EU-005, You can lookup IOTA References at the IOTA World website. + Station IOTA reference. For example: EU-005 + You can look up IOTA references at the IOTA World website.
station_sota; } ?>"> - Station SOTA Reference. + Station SOTA reference.
@@ -211,7 +213,7 @@
qrzapikey; } ?>"> - Your QRZ.com Logbook API can be found in the settings page + Find your API key on QRZ.com's settings page
diff --git a/application/views/station_profile/index.php b/application/views/station_profile/index.php index 8c40f254..b87ad2a7 100644 --- a/application/views/station_profile/index.php +++ b/application/views/station_profile/index.php @@ -16,14 +16,14 @@

Station Profiles define operating locations, such as your QTH, a friend's QTH, or a portable station.

-

Similar to logbooks, a Station Profile keeps a set of QSOs together.

+

Similar to logbooks, a station profile keeps a set of QSOs together.

Only one logbook may be active at a time. In the table below this is shown with the "Active Logbook" badge.

num_rows() > 0) { ?> @@ -31,7 +31,7 @@ @@ -43,7 +43,7 @@
- + diff --git a/application/views/timeplotter/index.php b/application/views/timeplotter/index.php index 32a63465..7fb28766 100644 --- a/application/views/timeplotter/index.php +++ b/application/views/timeplotter/index.php @@ -1,6 +1,6 @@

-

This tool is used to analyze your log to find out when you have worked a certain cq zone or dxcc on a chosen band.

+

The Timeplotter is used to analyze your logbook and find out when you have worked a certain CQ zone or DXCC on a chosen band.

diff --git a/application/views/user/edit.php b/application/views/user/edit.php index 381891b5..cd1ceab9 100644 --- a/application/views/user/edit.php +++ b/application/views/user/edit.php @@ -47,7 +47,7 @@ ".$password_error."
"; } else { ?> -
Leave blank to keep existing password
+
Leave blank to keep existing password
@@ -199,7 +199,7 @@ ".$lotwpassword_error.""; } else { ?> -
Leave blank to keep existing password
+
Leave blank to keep existing password
@@ -223,7 +223,7 @@ ".$eqslpassword_error.""; } else { ?> -
Leave blank to keep existing password
+
Leave blank to keep existing password
@@ -233,17 +233,17 @@
- +
- Clublog + Club Log
-
This is the Email or Callsign you use to login to Club Log
+
The Email or Callsign you use to login to Club Log
".$userclublogname_error."
"; } ?>
@@ -252,7 +252,7 @@ ".$clublogpassword_error."
"; } else { ?> -
Leave blank to keep existing password
+
Leave blank to keep existing password
diff --git a/application/views/user/main.php b/application/views/user/main.php index 79c31d18..11de1b3f 100644 --- a/application/views/user/main.php +++ b/application/views/user/main.php @@ -16,7 +16,7 @@

Cloudlog needs at least one user configured in order to operate.

Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Cloudlog APIs.

-

The currently logged in user is displayed at the upper-right of each page.

+

The currently logged-in user is displayed at the upper-right of each page.

Country Gridsquare CityQSO CountQSOs