exchanges on various sections within cloudlog
Squashed commit of the following:
commit 89edbf3ddadd7d796ba5412388f66d14e3e9ac17
Author: phl0 <florian@florian-wolters.de>
Date:   Wed Jan 12 20:47:17 2022 +0100
    Fix flicker issue on gridmaps page (by LA8AJA)
commit 5b0c2672aadbf0451ec52ecc65745e880b44ef8f
Author: phl0 <florian@florian-wolters.de>
Date:   Wed Jan 12 19:36:31 2022 +0100
    Also show tooltips for contest name
commit 88e091f65ace6bdbae3d605839665fdd457ea943
Author: phl0 <florian@florian-wolters.de>
Date:   Wed Jan 12 19:08:31 2022 +0100
    Enable QSL tooltips also for QSO list in qslprint section
commit 91b81a0b2ba531e867f82197fe1b201e24785dd2
Author: phl0 <florian@florian-wolters.de>
Date:   Tue Jan 11 17:46:38 2022 +0100
    Prevent display of empty date values
commit a66be2dab1d23b15fa41df0a2c9a0c41f455afff
Author: phl0 <florian@florian-wolters.de>
Date:   Tue Jan 11 17:12:43 2022 +0100
    Make tooltip work also for gridsquares section
    Tnx @AndreasK79
commit 92c13483b9c71d55fa3d863d426b300cf008dd31
Author: phl0 <florian@florian-wolters.de>
Date:   Tue Jan 11 15:37:21 2022 +0100
    Implement tooltip hints also for other awards sections
commit 625c0e73c5dd5823301d888be4d0b3419a76f1db
Author: phl0 <florian@florian-wolters.de>
Date:   Mon Jan 10 19:28:47 2022 +0100
    Implement tooltip for awards section
commit 0fe9061ecf3e4b8d9826dee62779e2493124d8a5
Author: phl0 <florian@florian-wolters.de>
Date:   Mon Jan 10 16:57:35 2022 +0100
    Fix bug with extra quotes if manager defined
commit cb8e4d1e4343670a60bc93ac3e87d54d45d0a9fd
Author: phl0 <florian@florian-wolters.de>
Date:   Mon Jan 10 16:18:44 2022 +0100
    Small bugix
commit 5bca33b7a1dca1b89d0921a8e0890fc1aebccedd
Author: phl0 <florian@florian-wolters.de>
Date:   Mon Jan 10 15:42:31 2022 +0100
    Add missing translations for electronic QSL
commit 617f58a6217aa385225eab27bfe577ad55b7ff37
Author: phl0 <florian@florian-wolters.de>
Date:   Mon Jan 10 00:40:32 2022 +0100
    Enable tooltips also for search results
commit 432a1b283a19196618d4c809545d01cef4f630d3
Author: phl0 <florian@florian-wolters.de>
Date:   Mon Jan 10 00:18:33 2022 +0100
    Also QSL method/manager info
commit b43e7a1419c75a199c0a28c9849f2b09e0c62288
Author: phl0 <florian@florian-wolters.de>
Date:   Sun Jan 9 23:28:54 2022 +0100
    Show details for paper QSLs
commit 1759d94d8af7299684265700cec51fe0591623dc
Author: phl0 <florian@florian-wolters.de>
Date:   Fri Jan 7 17:51:17 2022 +0100
    Add tooltip hints for QSL sent/rcvd dates
		
	
			
		
			
				
	
	
		
			119 行
		
	
	
	
		
			4.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			119 行
		
	
	
	
		
			4.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
defined('BASEPATH') OR exit('No direct script access allowed');
 | 
						|
 | 
						|
$lang['error_no_active_station_profile'] = 'Attention: you need to set an active station location.';
 | 
						|
 | 
						|
$lang['notice_turn_the_radio_on'] = 'You have made no QSOs today; time to turn on the radio!';
 | 
						|
 | 
						|
$lang['general_word_important'] = 'Important';
 | 
						|
$lang['general_word_info'] = 'Info';
 | 
						|
$lang['general_word_choose_file'] = 'Choose file';
 | 
						|
 | 
						|
$lang['general_word_date'] = 'Date';
 | 
						|
$lang['general_word_time'] = 'Time';
 | 
						|
$lang['general_word_datetime'] = 'Date/Time';
 | 
						|
$lang['general_word_none'] = 'None';
 | 
						|
$lang['general_word_name'] = 'Name';
 | 
						|
$lang['general_word_location'] = 'Location';
 | 
						|
$lang['general_word_comment'] = 'Comment';
 | 
						|
$lang['general_word_general'] = 'General';
 | 
						|
$lang['general_word_satellite'] = 'Satellite';
 | 
						|
$lang['general_word_satellite_short'] = 'Sat';
 | 
						|
$lang['general_word_notes'] = 'Notes';
 | 
						|
$lang['general_word_country'] = 'Country';
 | 
						|
 | 
						|
$lang['general_word_total'] = 'Total';
 | 
						|
$lang['general_word_year'] = 'Year';
 | 
						|
$lang['general_word_month'] = 'Month';
 | 
						|
 | 
						|
$lang['general_word_worked'] = 'Worked';
 | 
						|
$lang['general_word_confirmed'] = 'Confirmed';
 | 
						|
$lang['general_word_needed'] = 'Needed';
 | 
						|
 | 
						|
$lang['general_word_no'] = 'No';
 | 
						|
$lang['general_word_yes'] = 'Yes';
 | 
						|
$lang['general_word_method'] = 'Method';
 | 
						|
 | 
						|
$lang['general_word_sent'] = 'Sent';
 | 
						|
$lang['general_word_received'] = 'Received';
 | 
						|
$lang['general_word_requested'] = 'Requested';
 | 
						|
$lang['general_word_queued'] = 'Queued';
 | 
						|
$lang['general_word_invalid_ignore'] = 'Invalid (Ignore)';
 | 
						|
$lang['general_word_qslcard'] = 'QSL Card';
 | 
						|
$lang['general_word_qslcard_management'] = 'QSL Management';
 | 
						|
$lang['general_word_qslcards'] = 'QSL Cards';
 | 
						|
$lang['general_word_qslcard_direct'] = 'Direct';
 | 
						|
$lang['general_word_qslcard_bureau'] = 'Bureau';
 | 
						|
$lang['general_word_qslcard_electronic'] = 'Electronic';
 | 
						|
$lang['general_word_qslcard_via'] = 'Via';
 | 
						|
$lang['general_word_eqslcards'] = 'eQSL Cards';
 | 
						|
$lang['general_word_lotw'] = 'Logbook of the World';
 | 
						|
 | 
						|
$lang['general_edit_qso'] = 'Edit QSO';
 | 
						|
$lang['general_mark_qsl_rx_bureau'] = 'Mark QSL Received (Bureau)';
 | 
						|
$lang['general_mark_qsl_rx_direct'] = 'Mark QSL Received (Direct)';
 | 
						|
$lang['general_mark_qsl_tx_bureau'] = 'Mark QSL Sent (Bureau)';
 | 
						|
$lang['general_mark_qsl_tx_direct'] = 'Mark QSL Sent (Direct)';
 | 
						|
 | 
						|
$lang['general_delete_qso'] = 'Delete QSO';
 | 
						|
 | 
						|
$lang['general_total_distance'] = 'Total Distance';
 | 
						|
 | 
						|
// Cloudlog Terms
 | 
						|
$lang['cloudlog_station_profile'] = 'Station Location';
 | 
						|
 | 
						|
// ham radio terms
 | 
						|
$lang['gen_hamradio_qso'] = 'QSO';
 | 
						|
$lang['gen_hamradio_station'] = 'Station';
 | 
						|
 | 
						|
$lang['gen_hamradio_call'] = 'Call';
 | 
						|
$lang['gen_hamradio_callsign'] = 'Callsign';
 | 
						|
$lang['gen_hamradio_mode'] = 'Mode';
 | 
						|
$lang['gen_hamradio_rst_sent'] = 'Sent';
 | 
						|
$lang['gen_hamradio_rst_recv'] = 'Recv\'d';
 | 
						|
$lang['gen_hamradio_band'] = 'Band';
 | 
						|
$lang['gen_hamradio_band_rx'] = 'Band (RX)';
 | 
						|
$lang['gen_hamradio_frequency'] = 'Frequency';
 | 
						|
$lang['gen_hamradio_frequency_rx'] = 'Frequency (RX)';
 | 
						|
$lang['gen_hamradio_radio'] = 'Radio';
 | 
						|
$lang['gen_hamradio_rsts'] = 'RST (S)';
 | 
						|
$lang['gen_hamradio_rstr'] = 'RST (R)';
 | 
						|
$lang['gen_hamradio_exchange_sent_short'] = 'Exch (S)';
 | 
						|
$lang['gen_hamradio_exchange_recv_short'] = 'Exch (R)';
 | 
						|
$lang['gen_hamradio_qsl'] = 'QSL';
 | 
						|
$lang['gen_hamradio_locator'] = 'Locator';
 | 
						|
$lang['gen_hamradio_transmit_power'] = 'Transmit Power (W)';
 | 
						|
$lang['gen_hamradio_propagation_mode'] = 'Propagation Mode';
 | 
						|
 | 
						|
$lang['gen_hamradio_satellite_name'] = 'Satellite Name';
 | 
						|
$lang['gen_hamradio_satellite_mode'] = 'Satellite Mode';
 | 
						|
 | 
						|
$lang['gen_hamradio_logbook'] = 'Logbook';
 | 
						|
 | 
						|
$lang['gen_hamradio_cq_zone'] = 'CQ Zone';
 | 
						|
$lang['gen_hamradio_dxcc'] = 'DXCC';
 | 
						|
$lang['gen_hamradio_usa_state'] = 'USA State';
 | 
						|
$lang['gen_hamradio_county_reference'] = 'USA County';
 | 
						|
$lang['gen_hamradio_iota_reference'] = 'IOTA Reference';
 | 
						|
$lang['gen_hamradio_sota_reference'] = 'SOTA Reference';
 | 
						|
$lang['gen_hamradio_wwff_reference'] = 'WWFF Reference';
 | 
						|
$lang['gen_hamradio_dok'] = 'DOK';
 | 
						|
$lang['gen_hamradio_state'] = 'State';
 | 
						|
$lang['gen_hamradio_iota'] = 'IOTA';
 | 
						|
$lang['gen_hamradio_sota'] = 'SOTA';
 | 
						|
$lang['gen_hamradio_gridsquare'] = 'Gridsquare';
 | 
						|
$lang['gen_hamradio_operator'] = 'Operator';
 | 
						|
 | 
						|
$lang['gen_hamradio_sig'] = 'Sig';
 | 
						|
$lang['gen_hamradio_sig_info'] = 'Sig Info';
 | 
						|
 | 
						|
// Dashboard Words
 | 
						|
$lang['dashboard_you_have_had'] = 'You have had';
 | 
						|
$lang['dashboard_qsos_today'] = 'QSOs Today!';
 | 
						|
$lang['dashboard_qso_breakdown'] = 'QSOs Breakdown';
 | 
						|
$lang['dashboard_countries_breakdown'] = 'Countries Breakdown';
 | 
						|
 | 
						|
$lang['gen_from_date'] = 'From date';
 | 
						|
 | 
						|
$lang['gen_this_qso_was_confirmed_on'] = 'This QSO was confirmed on';
 |