diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index f07f094a2..dbae02e1c 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,4 +1,4 @@ # These are supported funding model platforms -# github: mot defined -# patreon: mot defined -# custom: mot defined +# github: not defined +# patreon: not defined +# custom: not defined diff --git a/LICENSE b/LICENSE index 22b6a30c3..083ff38b2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 Peter Goodhall +Copyright (c) 2024 by DF2ET, DJ7NT, HB9HIL, LA8AJA Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SECURITY.md b/SECURITY.md index 8c4207703..e3e48a14c 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -2,6 +2,6 @@ ## Reporting a Vulnerability -If you discover a security vulnerability within Cloudlog, please send an e-mail to Peter Goodhall, 2M0SQL via [peter@magicbug.co.uk](mailto:peter@magicbug.co.uk). +If you discover a security vulnerability within Wavelog, please send an e-mail to us via [support@wavelog.org](mailto:support@wavelog.org). All security vulnerabilities will be promptly addressed. diff --git a/CloudLog_logo.png b/WaveLog_logo.png similarity index 100% rename from CloudLog_logo.png rename to WaveLog_logo.png diff --git a/application/config/autoload.php b/application/config/autoload.php index 3db179fd3..282830d21 100644 --- a/application/config/autoload.php +++ b/application/config/autoload.php @@ -80,7 +80,7 @@ $autoload['helper'] = array('url', 'security', 'language'); | */ -$autoload['config'] = array('cloudlog', 'bands', 'lotw'); +$autoload['config'] = array('wavelog', 'bands', 'lotw'); /* diff --git a/application/config/config.sample.php b/application/config/config.sample.php index 4f1c93714..18c67e9c7 100644 --- a/application/config/config.sample.php +++ b/application/config/config.sample.php @@ -7,14 +7,12 @@ defined('BASEPATH') OR exit('No direct script access allowed'); | Install Options |-------------------------------------------------------------------------- | -| 'app_name' Name of the App 'Cloudlog' -| 'app_version' Set by the dev team. -| 'directory' directory where cloudlog is installed eg "logger" +| 'app_name' Name of the App 'Wavelog' +| 'directory' directory where wavelog is installed eg "logger" | 'callbook' Selects which Callbook lookup to use defaults "hamqth" but supports "qrz" */ -$config['app_name'] = "Cloudlog"; -$config['app_version'] = "2.4.5"; +$config['app_name'] = "Wavelog"; $config['directory'] = "logbook"; $config['callbook'] = "hamqth"; // Options are hamqth or qrz $config['datadir'] = null; // default to install directory @@ -508,7 +506,7 @@ $config['encryption_key'] = 'flossie1234555541'; | */ $config['sess_driver'] = 'files'; -$config['sess_cookie_name'] = 'ci_cloudlog'; +$config['sess_cookie_name'] = 'ci_wavelog'; $config['sess_expiration'] = 0; $config['sess_save_path'] = '/tmp'; $config['sess_match_ip'] = FALSE; diff --git a/application/config/cloudlog.php b/application/config/wavelog.php similarity index 100% rename from application/config/cloudlog.php rename to application/config/wavelog.php diff --git a/application/config/cloudlog_data_lists.php b/application/config/wavelog_data_lists.php similarity index 100% rename from application/config/cloudlog_data_lists.php rename to application/config/wavelog_data_lists.php diff --git a/application/controllers/Activatorsmap.php b/application/controllers/Activatorsmap.php index 4d0dcfdb7..c6be538cf 100644 --- a/application/controllers/Activatorsmap.php +++ b/application/controllers/Activatorsmap.php @@ -1,7 +1,7 @@ load->model('api_model'); $this->load->model('stations'); header("Content-type: application/json"); - if(substr($this->api_model->access($key),0,1) == 'r') { /* Checkpermission for _r_eading */ + if(substr($this->api_model->access($key),0,1) == 'r') { /* Check permission for reading */ $this->api_model->update_last_used($key); $userid = $this->api_model->key_userid($key); - $station_ids = array(); + $station_ids = array(); $stations=$this->stations->all_of_user($userid); - foreach ($stations->result() as $row) { + foreach ($stations->result() as $row) { $result['station_id']=$row->station_id; $result['station_profile_name']=$row->station_profile_name; $result['station_gridsquare']=$row->station_gridsquare; $result['station_callsign']=$row->station_callsign;; $result['station_active']=$row->station_active; - array_push($station_ids, $result); - } + array_push($station_ids, $result); + } echo json_encode($station_ids); } else { http_response_code(401); @@ -153,10 +153,10 @@ class API extends CI_Controller { } - /* + /* * * Function: QSO - * Task: allows passing of ADIF data to Cloudlog + * Task: allows passing of ADIF data to Wavelog */ function qso($dryrun = false) { header('Content-type: application/json'); @@ -287,7 +287,7 @@ class API extends CI_Controller { { // Get associated station locations for mysql queries $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($logbook_id); - + if (!$logbooks_locations_array) { // Logbook not found http_response_code(404); @@ -366,7 +366,7 @@ class API extends CI_Controller { { // Get associated station locations for mysql queries $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($logbook_id); - + if (!$logbooks_locations_array) { // Logbook not found http_response_code(404); @@ -471,7 +471,7 @@ class API extends CI_Controller { $this->output->enable_profiler(TRUE); /* * - * Callsign lookup function for Cloudlogs logging page or thirdparty systems + * Callsign lookup function for Wavelogs logging page or thirdparty systems * which want to show previous QSO data on their system. * * TODO diff --git a/application/controllers/Awards.php b/application/controllers/Awards.php index 71147af9a..de4fb8dd9 100644 --- a/application/controllers/Awards.php +++ b/application/controllers/Awards.php @@ -298,7 +298,7 @@ class Awards extends CI_Controller { $searchmode = $this->input->post('searchmode') == null ? '' : $this->security->xss_clean($this->input->post('searchmode')); $data['results'] = $this->logbook_model->qso_details($searchphrase, $band, $mode, $type, $qsl, $searchmode); - // This is done because we have two different ways to get dxcc info in Cloudlog. Once is using the name (in awards), and the other one is using the ADIF DXCC. + // This is done because we have two different ways to get dxcc info in Wavelog. Once is using the name (in awards), and the other one is using the ADIF DXCC. // We replace the values to make it look a bit nicer if ($type == 'DXCC2') { $type = 'DXCC'; diff --git a/application/controllers/Bandmap.php b/application/controllers/Bandmap.php index 182ddefe3..2e1ab3590 100644 --- a/application/controllers/Bandmap.php +++ b/application/controllers/Bandmap.php @@ -50,7 +50,7 @@ class Bandmap extends CI_Controller { // If Logged in and session exists $pageData['custom_date_format'] = $CI->session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $pageData['custom_date_format'] = $CI->config->item('qso_date_format'); } diff --git a/application/controllers/Calltester.php b/application/controllers/Calltester.php index 10cf96d0e..84afaa8b3 100644 --- a/application/controllers/Calltester.php +++ b/application/controllers/Calltester.php @@ -1,5 +1,5 @@ load->view('interface_assets/header', $data); $this->load->view('setup/check_list'); diff --git a/application/controllers/Eqsl.php b/application/controllers/Eqsl.php index 76c266b6f..c6a34bc8b 100644 --- a/application/controllers/Eqsl.php +++ b/application/controllers/Eqsl.php @@ -285,7 +285,7 @@ class eqsl extends CI_Controller { # Set up the single record file $adif = "https://www.eqsl.cc/qslcard/importADIF.cfm?"; - $adif .= "ADIFData=CloudlogUpload%20"; + $adif .= "ADIFData=WavelogUpload%20"; /* Handy reference of escaping chars "<" = 3C @@ -750,7 +750,7 @@ class eqsl extends CI_Controller { } } -// Functions for storage, these need shifted to a libary to use across Cloudlog +// Functions for storage, these need shifted to a libary to use across Wavelog function folderSize($dir){ $count_size = 0; $count = 0; diff --git a/application/controllers/Hrdlog.php b/application/controllers/Hrdlog.php index 547458da0..e1544c0ae 100644 --- a/application/controllers/Hrdlog.php +++ b/application/controllers/Hrdlog.php @@ -8,7 +8,7 @@ class Hrdlog extends CI_Controller { /* * Upload QSO to hrdlog.net - * When called from the url cloudlog/hrdlog/upload, the function loops through all station_id's with a hrdlog code defined. + * When called from the url wavelog/hrdlog/upload, the function loops through all station_id's with a hrdlog code defined. * All QSOs not previously uploaded, will then be uploaded, one at a time */ public function upload() { diff --git a/application/controllers/Labels.php b/application/controllers/Labels.php index cf0b966c3..a4b789457 100644 --- a/application/controllers/Labels.php +++ b/application/controllers/Labels.php @@ -1,9 +1,9 @@ session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } diff --git a/application/controllers/Logbookadvanced.php b/application/controllers/Logbookadvanced.php index 19c60a604..72f913e36 100644 --- a/application/controllers/Logbookadvanced.php +++ b/application/controllers/Logbookadvanced.php @@ -1,6 +1,6 @@ session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $pageData['custom_date_format'] = $CI->config->item('qso_date_format'); } @@ -348,7 +348,7 @@ class Logbookadvanced extends CI_Controller { // If Logged in and session exists $custom_date_format = $CI->session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $CI->config->item('qso_date_format'); } diff --git a/application/controllers/Lookup.php b/application/controllers/Lookup.php index 714c1acf9..933fa4ff7 100644 --- a/application/controllers/Lookup.php +++ b/application/controllers/Lookup.php @@ -2,7 +2,7 @@ /* - Data lookup functions used within Cloudlog + Data lookup functions used within Wavelog */ diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index a328824a9..fffdeac3b 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -11,7 +11,7 @@ class Lotw extends CI_Controller { | | Note: | If you plan on using any of the code within this class please credit - | Cloudlog or Peter, 2M0SQL, a lot of hard work went into building the + | Peter, 2M0SQL. A lot of hard work went into building the | signing of files. | | Big Thanks to Rodrigo PY2RAF for all the help and information about OpenSSL @@ -269,7 +269,7 @@ class Lotw extends CI_Controller { } // Build Filename - $filename_for_saving = './uploads/lotw/'.preg_replace('/[^a-z0-9]+/', '-', strtolower($data['lotw_cert_info']->callsign))."-".date("Y-m-d-H-i-s")."-cloudlog.tq8"; + $filename_for_saving = './uploads/lotw/'.preg_replace('/[^a-z0-9]+/', '-', strtolower($data['lotw_cert_info']->callsign))."-".date("Y-m-d-H-i-s")."-wavelog.tq8"; $gzdata = gzencode($adif_to_save, 9); $fp = fopen($filename_for_saving, "w"); @@ -409,7 +409,7 @@ class Lotw extends CI_Controller { if($worked) { // Reading p12 successful - $new_password = "cloudlog"; // set default password + $new_password = "wavelog"; // set default password $result = null; $worked = openssl_pkey_export($results['pkey'], $result, $new_password); @@ -957,7 +957,7 @@ class Lotw extends CI_Controller { $key = $sign_key; - $pkeyid = openssl_pkey_get_private($key, 'cloudlog'); + $pkeyid = openssl_pkey_get_private($key, 'wavelog'); //openssl_sign($plaintext, $signature, $pkeyid, OPENSSL_ALGO_SHA1 ); //openssl_free_key($pkeyid); diff --git a/application/controllers/Options.php b/application/controllers/Options.php index a81a8865a..e476a7ea8 100644 --- a/application/controllers/Options.php +++ b/application/controllers/Options.php @@ -33,7 +33,7 @@ class Options extends CI_Controller { //echo $this->optionslib->get_option('theme'); - $data['page_title'] = $this->lang->line('options_cloudlog_options'); + $data['page_title'] = $this->lang->line('options_wavelog_options'); $this->load->view('interface_assets/header', $data); $this->load->view('options/index'); @@ -47,7 +47,7 @@ class Options extends CI_Controller { $directory = 'application/language'; $data['language_options'] = array_diff(scandir($directory), array('..', '.')); - $data['page_title'] = $this->lang->line('options_cloudlog_options'); + $data['page_title'] = $this->lang->line('options_wavelog_options'); $data['sub_heading'] = $this->lang->line('options_appearance'); $this->load->model('Themes_model'); @@ -66,7 +66,7 @@ class Options extends CI_Controller { $directory = 'application/language'; $data['language_options'] = array_diff(scandir($directory), array('..', '.')); - $data['page_title'] = $this->lang->line('options_cloudlog_options'); + $data['page_title'] = $this->lang->line('options_wavelog_options'); $data['sub_heading'] = $this->lang->line('options_appearance'); $this->load->helper(array('form', 'url')); @@ -138,7 +138,7 @@ class Options extends CI_Controller { // function used to display the /dxcluster url function dxcluster() { - $data['page_title'] = $this->lang->line('options_cloudlog_options'); + $data['page_title'] = $this->lang->line('options_wavelog_options'); $data['sub_heading'] = $this->lang->line('options_dxcluster_settings'); $this->load->view('interface_assets/header', $data); @@ -151,7 +151,7 @@ class Options extends CI_Controller { // Get Language Options - $data['page_title'] = $this->lang->line('options_cloudlog_options'); + $data['page_title'] = $this->lang->line('options_wavelog_options'); $data['sub_heading'] = $this->lang->line('options_dxcluster_settings'); $this->load->helper(array('form', 'url')); @@ -188,7 +188,7 @@ class Options extends CI_Controller { // function used to display the /radio url function radio() { - $data['page_title'] = $this->lang->line('options_cloudlog_options'); + $data['page_title'] = $this->lang->line('options_wavelog_options'); $data['sub_heading'] = $this->lang->line('options_radio_settings'); $this->load->view('interface_assets/header', $data); @@ -201,7 +201,7 @@ class Options extends CI_Controller { // Get Language Options - $data['page_title'] = $this->lang->line('options_cloudlog_options'); + $data['page_title'] = $this->lang->line('options_wavelog_options'); $data['sub_heading'] = $this->lang->line('options_radio_settings'); $this->load->helper(array('form', 'url')); @@ -234,7 +234,7 @@ class Options extends CI_Controller { // function used to display the /appearance url function email() { - $data['page_title'] = $this->lang->line('options_cloudlog_options'); + $data['page_title'] = $this->lang->line('options_wavelog_options'); $data['sub_heading'] = $this->lang->line('options_email'); $this->load->view('interface_assets/header', $data); @@ -247,7 +247,7 @@ class Options extends CI_Controller { // Get Language Options - $data['page_title'] = $this->lang->line('options_cloudlog_options'); + $data['page_title'] = $this->lang->line('options_wavelog_options'); $data['sub_heading'] = $this->lang->line('options_email'); $this->load->helper(array('form', 'url')); @@ -274,7 +274,7 @@ class Options extends CI_Controller { // Update email sender name within the options system $emailSenderName_value = $this->input->post('emailSenderName'); if (empty($emailSenderName_value)) { - $emailSenderName_value = 'Cloudlog'; + $emailSenderName_value = 'Wavelog'; } $emailSenderNameupdate = $this->optionslib->update('emailSenderName', $emailSenderName_value, 'yes'); @@ -317,7 +317,7 @@ class Options extends CI_Controller { function oqrs() { - $data['page_title'] = $this->lang->line('options_cloudlog_options'); + $data['page_title'] = $this->lang->line('options_wavelog_options'); $data['sub_heading'] = $this->lang->line('options_oqrs'); $this->load->view('interface_assets/header', $data); @@ -327,7 +327,7 @@ class Options extends CI_Controller { function oqrs_save() { - $data['page_title'] = $this->lang->line('options_cloudlog_options'); + $data['page_title'] = $this->lang->line('options_wavelog_options'); $data['sub_heading'] = $this->lang->line('options_oqrs'); $this->load->helper(array('form', 'url')); @@ -377,7 +377,7 @@ class Options extends CI_Controller { $this->email->from($this->optionslib->get_option('emailAddress'), $this->optionslib->get_option('emailSenderName')); $this->email->to($email); - $this->email->subject('Cloudlog Test-Mail'); + $this->email->subject('Wavelog Test-Mail'); $this->email->message($message); if (! $this->email->send()){ @@ -395,7 +395,7 @@ class Options extends CI_Controller { // function used to display the /version_dialog url function version_dialog() { - $data['page_title'] = $this->lang->line('options_cloudlog_options'); + $data['page_title'] = $this->lang->line('options_wavelog_options'); $data['sub_heading'] = $this->lang->line('options_version_dialog_settings'); $this->load->view('interface_assets/header', $data); @@ -407,7 +407,7 @@ class Options extends CI_Controller { // Get Language Options - $data['page_title'] = $this->lang->line('options_cloudlog_options'); + $data['page_title'] = $this->lang->line('options_wavelog_options'); $data['sub_heading'] = $this->lang->line('options_version_dialog_settings'); $this->load->helper(array('form', 'url')); diff --git a/application/controllers/Oqrs.php b/application/controllers/Oqrs.php index d559cb076..d1539cd03 100644 --- a/application/controllers/Oqrs.php +++ b/application/controllers/Oqrs.php @@ -190,7 +190,7 @@ class Oqrs extends CI_Controller { $this->email->to($email); $this->email->reply_to($this->security->xss_clean($postdata['email']), strtoupper($data['callsign'])); - $this->email->subject('Cloudlog OQRS from ' . strtoupper($data['callsign'])); + $this->email->subject('Wavelog OQRS from ' . strtoupper($data['callsign'])); $this->email->message($message); if (! $this->email->send()) { diff --git a/application/controllers/Qrbcalc.php b/application/controllers/Qrbcalc.php index ed5d3e4bc..71f4e6715 100644 --- a/application/controllers/Qrbcalc.php +++ b/application/controllers/Qrbcalc.php @@ -1,7 +1,7 @@ email->from($this->optionslib->get_option('emailAddress'), $this->optionslib->get_option('emailSenderName')); $this->email->to($this->input->post('email', true)); - $this->email->subject('Cloudlog Account Password Reset'); + $this->email->subject('Wavelog Account Password Reset'); $this->email->message($message); if (! $this->email->send()) @@ -869,7 +869,7 @@ class User extends CI_Controller { $this->email->from($this->optionslib->get_option('emailAddress'), $this->optionslib->get_option('emailSenderName')); $this->email->to($data->user_email); - $this->email->subject('Cloudlog Account Password Reset'); + $this->email->subject('Wavelog Account Password Reset'); $this->email->message($message); if (! $this->email->send()) diff --git a/application/controllers/Webadif.php b/application/controllers/Webadif.php index 7a98b0f90..4a81f797a 100644 --- a/application/controllers/Webadif.php +++ b/application/controllers/Webadif.php @@ -5,7 +5,7 @@ class Webadif extends CI_Controller { /* * Upload QSO to webADIF - * When called from the url cloudlog/webadif/upload, the function loops through all station_id's with a webADIF + * When called from the url wavelog/webadif/upload, the function loops through all station_id's with a webADIF * api key defined. * All QSOs not previously uploaded, will then be uploaded, one at a time */ diff --git a/application/controllers/Welcome.php b/application/controllers/Welcome.php index 893be3e9a..077a97338 100644 --- a/application/controllers/Welcome.php +++ b/application/controllers/Welcome.php @@ -3,7 +3,7 @@ /* Path: application\controllers\Welcome.php - Displays the welcome to Cloudlog version 2.0 view to help users with migration from version 1.0 + Displays the welcome to Wavelog version 2.0 view to help users with migration from version 1.0 */ @@ -17,7 +17,7 @@ class Welcome extends CI_Controller { public function index() { if($this->optionslib->get_option('version2_trigger') == "false") { - $data['page_title'] = "Welcome to Cloudlog Version 2.0"; + $data['page_title'] = "Welcome to Wavelog Version 2.0"; // load stations model $this->load->model('stations'); diff --git a/application/helpers/psr4_autoloader_helper.php b/application/helpers/psr4_autoloader_helper.php index 74a00521d..5f8a3259b 100644 --- a/application/helpers/psr4_autoloader_helper.php +++ b/application/helpers/psr4_autoloader_helper.php @@ -7,10 +7,10 @@ defined('BASEPATH') OR exit('No direct script access allowed'); * Extremely simple autoloader helper, has lots of shortcomings */ spl_autoload_register(function ($class) { - if (mb_substr($class, 0, 9) !== 'Cloudlog\\') { + if (mb_substr($class, 0, 8) !== 'Wavelog\\') { return false; } - $class=substr($class,9); + $class=substr($class,8); $file = str_replace('\\', DIRECTORY_SEPARATOR, $class).'.php'; $file = __DIR__ . "/../../src/" . $file; if (file_exists($file)) { diff --git a/application/language/bulgarian/account_lang.php b/application/language/bulgarian/account_lang.php index e71da6d1b..0d445da85 100644 --- a/application/language/bulgarian/account_lang.php +++ b/application/language/bulgarian/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Callsign'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences'; +$lang['account_wavelog_preferences'] = 'Wavelog Preferences'; $lang['account_timezone'] = 'Timezone'; $lang['account_date_format'] = 'Date Format'; $lang['account_log_end_time'] = 'Log End Times for QSOs Separately'; @@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign"; $lang['account_measurement_preferences'] = 'Measurement preference'; $lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Select how you would like dates shown when logged into your account.'; $lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Choose which unit distances will be shown in'; -$lang['account_cloudlog_language'] = 'Cloudlog Language'; -$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.'; +$lang['account_wavelog_language'] = 'Wavelog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.'; $lang['account_main_menu'] = 'Menu Options'; $lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.'; @@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirm Password'; $lang['account_forgot_your_password'] = 'Forgot your password?'; -$lang['account_login_to_cloudlog'] = 'Login to Cloudlog'; +$lang['account_login_to_wavelog'] = 'Login to Wavelog'; $lang['account_login'] = 'Login'; $lang['account_mastodon'] = 'Mastodonserver'; @@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Default Band'; $lang['account_qsl_settings'] = 'Default QSL-Methods'; $lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/bulgarian/adif_lang.php b/application/language/bulgarian/adif_lang.php index 4000ec252..f2eddfeb6 100644 --- a/application/language/bulgarian/adif_lang.php +++ b/application/language/bulgarian/adif_lang.php @@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook $lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; $lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Cloudlog will attempt to determine DXCC information automatically."; +$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; $lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; $lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Cloudlog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; +$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; $lang['adif_upload'] = "Upload"; @@ -94,10 +94,10 @@ $lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL. $lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; $lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)"; -$lang['overwrite_by_dcl_hint'] = "If checked Cloudlog will forcibly overwrite existing DOK with DOK from DCL log."; +$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; $lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched"; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Cloudlog will be displayed."; +$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; /* ___________________________________________________________________________________________ diff --git a/application/language/bulgarian/admin_lang.php b/application/language/bulgarian/admin_lang.php index 3306fe274..80a923504 100644 --- a/application/language/bulgarian/admin_lang.php +++ b/application/language/bulgarian/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта'); -$lang['admin_user_line1'] = 'Cloudlog needs at least one user configured in order to operate.'; -$lang['admin_user_line2'] = 'Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Cloudlog APIs.'; +$lang['admin_user_line1'] = 'Wavelog needs at least one user configured in order to operate.'; +$lang['admin_user_line2'] = 'Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Wavelog APIs.'; $lang['admin_user_line3'] = 'The currently logged-in user is displayed at the upper-right of each page.'; $lang['admin_user_line4'] = "With the password reset button, you can send a user an email containing a link to reset their password. To achieve this, ensure that the email settings in the global options are configured correctly."; diff --git a/application/language/bulgarian/awards_lang.php b/application/language/bulgarian/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/bulgarian/awards_lang.php +++ b/application/language/bulgarian/awards_lang.php @@ -49,7 +49,7 @@ ________________________________________________________________________________ $lang['awards_dxcc_description_ln1'] = "DXCC Award"; $lang['awards_dxcc_description_ln2'] = "DXCC stands for 'DX Century Club,' an award based on worked countries. The DXCC List is based on an article created in 1935 by Clinton B. DeSoto, W1CBD, titled 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Cloudlog. Be aware that these DXCC entities are outdated and no longer valid."; +$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Wavelog. Be aware that these DXCC entities are outdated and no longer valid."; /* @@ -95,7 +95,7 @@ ________________________________________________________________________________ */ $lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Cloudlog."; +$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; $lang['awards_sig_description_ln3'] = "The reason for this is that the common ADIF format provides only a few dedicated fields for certain awards. SIG still makes it possible to use and evaluate all other types of signature markers."; $lang['awards_sig_description_ln4'] = "In the QSO processing, you will find two fields: 'SIG' contains the actual marker, which is also visible in the award evaluation, and 'SIG INFO,' which contains a description of the signature. Both fields are freely customizable."; diff --git a/application/language/bulgarian/general_words_lang.php b/application/language/bulgarian/general_words_lang.php index a05f3b1d0..3f6bcd7f4 100644 --- a/application/language/bulgarian/general_words_lang.php +++ b/application/language/bulgarian/general_words_lang.php @@ -110,8 +110,8 @@ $lang['general_total_distance'] = 'Общо разстояние'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Местоположение на станцията'; +// Wavelog Terms +$lang['wavelog_station_profile'] = 'Местоположение на станцията'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/bulgarian/lotw_lang.php b/application/language/bulgarian/lotw_lang.php index feb31524d..8a96496f5 100644 --- a/application/language/bulgarian/lotw_lang.php +++ b/application/language/bulgarian/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Log files must have the file type .adi' $lang['lotw_pull_lotw_data_for_me'] = 'Pull LoTW data for me'; $lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; -$lang['lotw_report_download_overview_helptext'] = 'Cloudlog will use the LoTW username and password stored in your user profile to download a report from LoTW for you. The report Cloudlog downloads will have all confirmations since chosen date, or since your last LoTW confirmation (fetched from your log), up until now.'; +$lang['lotw_report_download_overview_helptext'] = 'Wavelog will use the LoTW username and password stored in your user profile to download a report from LoTW for you. The report Wavelog downloads will have all confirmations since chosen date, or since your last LoTW confirmation (fetched from your log), up until now.'; // Buttons $lang['lotw_btn_lotw_import'] = 'LoTW импорт'; diff --git a/application/language/bulgarian/options_lang.php b/application/language/bulgarian/options_lang.php index 837fe329d..f6b7091a5 100644 --- a/application/language/bulgarian/options_lang.php +++ b/application/language/bulgarian/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта'); -$lang['options_cloudlog_options'] = 'Cloudlog Options'; -$lang['options_message1'] = 'Cloudlog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.'; +$lang['options_wavelog_options'] = 'Wavelog Options'; +$lang['options_message1'] = 'Wavelog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.'; $lang['options_appearance'] = 'Appearance'; $lang['options_theme'] = 'Theme'; @@ -42,8 +42,8 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully."; $lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again."; $lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails."; $lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL."; -$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'"; +$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'"; $lang['options_smtp_host_hint'] = "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')"; $lang['options_smtp_port_hint'] = "The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is used -> '465'"; $lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; diff --git a/application/language/bulgarian/qso_lang.php b/application/language/bulgarian/qso_lang.php index 5ff7b23eb..375685f8d 100644 --- a/application/language/bulgarian/qso_lang.php +++ b/application/language/bulgarian/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Например: DA/NW-357'; $lang['qso_dok_helptext'] = 'Например: Q03'; -$lang['qso_notes_helptext'] = 'Съдържанието на бележката се използва само в Cloudlog и не се експортира в други услуги.'; +$lang['qso_notes_helptext'] = 'Съдържанието на бележката се използва само в Wavelog и не се експортира в други услуги.'; $lang['qsl_notes_helptext'] = 'This note content is exported to QSL services like eqsl.cc.'; $lang['qso_eqsl_qslmsg_helptext'] = "Get the default message for eQSL, for this station."; @@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "What is that?"; $lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)"; $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and efficiently. Due to its syntax, only a minimum of input is required to log many QSOs with as little effort as possible."; $lang['qso_simplefle_info_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs."; -$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found here."; +$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Wavelog. Information about the syntax and how FLE works can be found here."; $lang['qso_simplefle_qso_data'] = "QSO Data"; $lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; $lang['qso_simplefle_qso_list'] = "QSO List"; @@ -67,7 +67,7 @@ $lang['qso_simplefle_utc_time'] = "Current UTC Time"; $lang['qso_simplefle_enter_the_data'] = "Enter the Data"; $lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; $lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Cloudlog"; +$lang['qso_simplefle_save'] = "Save in Wavelog"; $lang['qso_simplefle_clear'] = "Clear Logging Session"; $lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; @@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please n $lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; $lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; $lang['qso_simplefle_syntax_help_ln4'] = "To begin, ensure you have already filled in the form on the left with the date, station call, and operator's call. The main data includes the band (or QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the first QSO, which is essentially the callsign."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 2M0SQL on 20m SSB."; +$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; $lang['qso_simplefle_syntax_help_ln6'] = "If you don't provide any RST information, the syntax will use 59 (599 for data). Our next QSO wasn't 59 on both sides, so we provide the information with the sent RST first. It was 2 minutes later than the first QSO."; $lang['qso_simplefle_syntax_help_ln7'] = "The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We write down 6 because this is the only data that changed here. The information about band and mode didn't change, so this data is omitted."; $lang['qso_simplefle_syntax_help_ln8'] = "For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but still on SSB. If no RST information is given, the syntax will use 59 for every new QSO. Therefore we can add another QSO which took place at the exact same time two days later. The date must be in format YYYY-MM-DD."; diff --git a/application/language/bulgarian/station_lang.php b/application/language/bulgarian/station_lang.php index 01acd54b3..1d80fedb1 100644 --- a/application/language/bulgarian/station_lang.php +++ b/application/language/bulgarian/station_lang.php @@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the $lang['station_logbooks_view_public'] = "View Public Page for Logbook: "; $lang['station_logbooks_create_name'] = "Station Logbook Name"; $lang['station_logbooks_create_name_hint'] = "You can call a station logbook anything."; -$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (IO87IP)"; +$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (HM54ip)"; $lang['station_logbooks_edit_name_update'] = "Update Station Logbook Name"; $lang['station_logbooks_public_slug'] = "Public Slug"; $lang['station_logbooks_public_slug_hint'] = "Setting a public slug allows you to share your logbook with anyone via a custom website address, this slug can contain letters & numbers only."; @@ -57,11 +57,11 @@ $lang['station_location_edit'] = 'Edit Station Location: '; $lang['station_location_updated_suff'] = ' Updated.'; $lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.'; $lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.'; +$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; $lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)'; +$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; $lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P'; +$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; $lang['station_location_power'] = 'Station Power (W)'; $lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; $lang['station_location_emptylog'] = 'Empty Log'; @@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr $lang['station_location_county'] = 'Station County'; $lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; $lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: IO87IP. If you don't know your grid square then click here!"; +$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; $lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; $lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; $lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; diff --git a/application/language/chinese_simplified/account_lang.php b/application/language/chinese_simplified/account_lang.php index 13a72ea9f..d1f57277c 100644 --- a/application/language/chinese_simplified/account_lang.php +++ b/application/language/chinese_simplified/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "HAM信息"; $lang['account_callsign'] = '呼号'; $lang['account_gridsquare'] = '网格坐标'; -$lang['account_cloudlog_preferences'] = '偏好'; +$lang['account_wavelog_preferences'] = '偏好'; $lang['account_timezone'] = '时区'; $lang['account_date_format'] = '日期格式'; $lang['account_log_end_time'] = '单独记录QSO结束时间'; @@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "查询呼号"; $lang['account_measurement_preferences'] = '距离单位选择'; $lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = '选择您登录账户时显示偏好的日期格式'; $lang['account_choose_which_unit_distances_will_be_shown_in'] = '选择距离单位'; -$lang['account_cloudlog_language'] = 'Cloudlog语言'; -$lang['account_choose_cloudlog_language'] = '选择Cloudlog语言'; +$lang['account_wavelog_language'] = 'Wavelog语言'; +$lang['account_choose_wavelog_language'] = '选择Wavelog语言'; $lang['account_main_menu'] = '主菜单'; $lang['account_show_notes_in_the_main_menu'] = '在主菜单显示便签'; @@ -102,7 +102,7 @@ $lang['account_confirm_password'] = '确认密码'; $lang['account_forgot_your_password'] = '忘记密码?'; -$lang['account_login_to_cloudlog'] = '登录Cloudlog'; +$lang['account_login_to_wavelog'] = '登录Wavelog'; $lang['account_login'] = '登录'; $lang['account_mastodon'] = 'Mastodon服务器'; @@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = '默认波段'; $lang['account_qsl_settings'] = '默认QSL方式'; $lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Cloudlog 中对 Winkeyer 的支持是实验性的,请在使用前先阅读 https://github.com/magicbug/Cloudlog/wiki/Winkey"; +$lang['account_winkeyer_hint'] = "Wavelog 中对 Winkeyer 的支持是实验性的,请在使用前先阅读 https://github.com/wavelog/wavelog/wiki/Winkey"; $lang['account_winkeyer_enabled'] = "启用 Winkeyer 功能"; $lang['account_map_params'] = "地图设置"; diff --git a/application/language/chinese_simplified/adif_lang.php b/application/language/chinese_simplified/adif_lang.php index 3ec7ed04e..515ad589c 100644 --- a/application/language/chinese_simplified/adif_lang.php +++ b/application/language/chinese_simplified/adif_lang.php @@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "标记导入的QSO为已上传至 QRZ Logbook $lang['adif_mark_imported_clublog'] = "标记导入的QSO为已上传至 Clublog Logbook"; $lang['adif_dxcc_from_adif'] = "使用ADIF文件中的DXCC信息"; -$lang['adif_dxcc_from_adif_hint'] = "如果不选择,Cloudlog将会自动判断QSO的DXCC"; +$lang['adif_dxcc_from_adif_hint'] = "如果不选择,Wavelog将会自动判断QSO的DXCC"; $lang['adif_always_use_login_call_as_op'] = "总是在导入时使用登录的呼号作为操作者名称"; $lang['adif_ignore_station_call'] = "导入时忽略台站的呼号"; -$lang['adif_ignore_station_call_hint'] = "如果选择,Cloudlog会尝试导入ADIF文件中的 所有 QSO,而不判断是否与所选台站位置匹配"; +$lang['adif_ignore_station_call_hint'] = "如果选择,Wavelog会尝试导入ADIF文件中的 所有 QSO,而不判断是否与所选台站位置匹配"; $lang['adif_upload'] = "上传"; @@ -94,10 +94,10 @@ $lang['only_confirmed_qsos'] = "仅导入在 DCL 上确认的 QSO 的 DOK 数据 $lang['only_confirmed_qsos_hint'] = "如果您还想使用 DCL 中未经确认的 QSO 的数据更新 DOK,请取消选中"; $lang['overwrite_by_dcl'] = "用 DCL 覆盖日志中现有的 DOC(如果不同)"; -$lang['overwrite_by_dcl_hint'] = "如果选中,Cloudlog 将使用 DCL 日志中的 DOK 强制覆盖现有的 DOK 信息。"; +$lang['overwrite_by_dcl_hint'] = "如果选中,Wavelog 将使用 DCL 日志中的 DOK 强制覆盖现有的 DOK 信息。"; $lang['ignore_ambiguous'] = "忽略无法匹配的 QSO"; -$lang['ignore_ambiguous_hint'] = "如果不勾选,会显示 Cloudlog 中无法匹配的 QSO 信息"; +$lang['ignore_ambiguous_hint'] = "如果不勾选,会显示 Wavelog 中无法匹配的 QSO 信息"; /* ___________________________________________________________________________________________ diff --git a/application/language/chinese_simplified/admin_lang.php b/application/language/chinese_simplified/admin_lang.php index 010233a4e..cf1e0b567 100644 --- a/application/language/chinese_simplified/admin_lang.php +++ b/application/language/chinese_simplified/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['admin_user_line1'] = 'Cloudlog至少需要配置一个用户才能运行。'; -$lang['admin_user_line2'] = '用户可以被分配不同的角色,这些角色赋予他们不同的权限,例如向日志簿添加 QSO 和访问Cloudlog API。'; +$lang['admin_user_line1'] = 'Wavelog至少需要配置一个用户才能运行。'; +$lang['admin_user_line2'] = '用户可以被分配不同的角色,这些角色赋予他们不同的权限,例如向日志簿添加 QSO 和访问Wavelog API。'; $lang['admin_user_line3'] = '页面右上方显示当前登录的用户。'; $lang['admin_user_line4'] = "通过'重置密码'按钮,你可以向用户发送一封带有重置密码链接的邮件。您需要确保全局设定中的邮件设置配置正确"; diff --git a/application/language/chinese_simplified/awards_lang.php b/application/language/chinese_simplified/awards_lang.php index 75f393d1a..2097c1d2f 100644 --- a/application/language/chinese_simplified/awards_lang.php +++ b/application/language/chinese_simplified/awards_lang.php @@ -49,7 +49,7 @@ ________________________________________________________________________________ $lang['awards_dxcc_description_ln1'] = "DXCC 奖状"; $lang['awards_dxcc_description_ln2'] = "DXCC 代表“DX Century Club”,这是一个基于通联国家/地区的奖项 DXCC 列表基于 W1CBD 的 Clinton B. DeSoto 于 1935 编写的一篇文章,标题为“如何计算通联过的国家/地区, 新的 DX 评分系统'"; $lang['awards_dxcc_description_ln3'] = "您可以在 ARRL 网站上找到有关 DXCC 奖的所有信息"; -$lang['awards_dxcc_description_ln4'] = "重要提示:随着时间的推移,DXCC 列表的标准已经发生变化 该列表将保持不变,直到实体不再满足添加该实体时所依据的标准,此时该实体将被移至“已删除列表” 您还会在 Cloudlog 的列表中找到已删除的 DXCC 实体 请注意,这些 DXCC 实体已过时且不再有效(如 伪满洲国曾经也是一个合法的DXCC实体)"; +$lang['awards_dxcc_description_ln4'] = "重要提示:随着时间的推移,DXCC 列表的标准已经发生变化 该列表将保持不变,直到实体不再满足添加该实体时所依据的标准,此时该实体将被移至“已删除列表” 您还会在 Wavelog 的列表中找到已删除的 DXCC 实体 请注意,这些 DXCC 实体已过时且不再有效(如 伪满洲国曾经也是一个合法的DXCC实体)"; /* @@ -95,7 +95,7 @@ ________________________________________________________________________________ */ $lang['awards_sig_description_ln1'] = "SIG 信息"; -$lang['awards_sig_description_ln2'] = "SIG 或签名类别提供了对 Cloudlog 中未实施的奖励使用任何类型的“奖励签名”的可能"; +$lang['awards_sig_description_ln2'] = "SIG 或签名类别提供了对 Wavelog 中未实施的奖励使用任何类型的“奖励签名”的可能"; $lang['awards_sig_description_ln3'] = "其原因是常见的 ADIF 格式仅为某些奖项提供了几个专用字段 SIG 仍然可以使用和评估所有其他类型的签名标记"; $lang['awards_sig_description_ln4'] = "在 QSO 处理中,您会发现两个字段:“SIG”包含实际标记,在奖励评估中也可见,“SIG INFO”包含签名的描述 这两个字段都可以自由定制"; diff --git a/application/language/chinese_simplified/general_words_lang.php b/application/language/chinese_simplified/general_words_lang.php index 2ef1d9c17..0726eed2c 100644 --- a/application/language/chinese_simplified/general_words_lang.php +++ b/application/language/chinese_simplified/general_words_lang.php @@ -110,8 +110,8 @@ $lang['general_total_distance'] = '总计距离'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = '最大上传文件大小是'; -// Cloudlog Terms -$lang['cloudlog_station_profile'] = '电台站地址'; +// Wavelog Terms +$lang['wavelog_station_profile'] = '电台站地址'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/chinese_simplified/lotw_lang.php b/application/language/chinese_simplified/lotw_lang.php index db7a78bc9..5b53957dc 100644 --- a/application/language/chinese_simplified/lotw_lang.php +++ b/application/language/chinese_simplified/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = '日志文件的类型必须为 .adi'; $lang['lotw_pull_lotw_data_for_me'] = '为我拉取 LoTW 数据'; $lang['lotw_select_callsign'] = '选择呼号以获取 LoTW 确认'; -$lang['lotw_report_download_overview_helptext'] ='Cloudlog 将会使用储存在你个人用户信息当中的 LoTW 用户名和密码从 LoTW 上为你下载报告Cloudlog 下载的这份报告将会包括自你所选之日以来的或者你最后的 LoTW 确认信息(目前日志当中)以来的所有确认'; +$lang['lotw_report_download_overview_helptext'] ='Wavelog 将会使用储存在你个人用户信息当中的 LoTW 用户名和密码从 LoTW 上为你下载报告Wavelog 下载的这份报告将会包括自你所选之日以来的或者你最后的 LoTW 确认信息(目前日志当中)以来的所有确认'; // Buttons $lang['lotw_btn_lotw_import'] = 'LoTW 导入'; diff --git a/application/language/chinese_simplified/options_lang.php b/application/language/chinese_simplified/options_lang.php index 49989c024..9014eca83 100644 --- a/application/language/chinese_simplified/options_lang.php +++ b/application/language/chinese_simplified/options_lang.php @@ -2,7 +2,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Cloudlog 设置'; +$lang['options_wavelog_options'] = 'Wavelog 设置'; $lang['options_message1'] = '本设置是针对所有用户的全局设置,会覆盖对于单个用户的设置。'; $lang['options_appearance'] = '外观'; @@ -42,8 +42,8 @@ $lang['options_mail_settings_saved'] = "设置已保存"; $lang['options_mail_settings_failed'] = "保存时出现问题,请重试"; $lang['options_outgoing_protocol_hint'] = "发送邮件时使用的协议"; $lang['options_smtp_encryption_hint'] = "选择邮件将会通过TLS还是SSL发送"; -$lang['options_email_address_hint'] = "发送邮件的邮箱地址,例如:'cloudlog@example.com'"; -$lang['options_email_sender_name_hint'] = "发送者的名字,例如:'Cloudlog'"; +$lang['options_email_address_hint'] = "发送邮件的邮箱地址,例如:'wavelog@example.com'"; +$lang['options_email_sender_name_hint'] = "发送者的名字,例如:'Wavelog'"; $lang['options_smtp_host_hint'] = "邮件服务器的域名,例如:'mail.example.com' (不带'ssl://'或'tls://')"; $lang['options_smtp_port_hint'] = "邮件服务器的SMTP端口,例如:如果使用了TLS -> '587',如果使用了SSL -> '465'"; $lang['options_smtp_username_hint'] = "登录邮件服务器的用户名,通常情况下,这和发送邮件的邮箱地址相同"; diff --git a/application/language/chinese_simplified/qso_lang.php b/application/language/chinese_simplified/qso_lang.php index 6c978228a..6983b3966 100644 --- a/application/language/chinese_simplified/qso_lang.php +++ b/application/language/chinese_simplified/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = '例如: DA/NW-357'; $lang['qso_dok_helptext'] = '例如: Q03'; -$lang['qso_notes_helptext'] = '仅在 Cloudlog 使用而不上传到其他的服务的笔记。'; +$lang['qso_notes_helptext'] = '仅在 Wavelog 使用而不上传到其他的服务的笔记。'; $lang['qsl_notes_helptext'] = '此笔记内容被导出到QSL服务,如 eqsl.cc。'; $lang['qso_eqsl_qslmsg_helptext'] = "获取该站的 eQSL 默认消息。"; @@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "这是什么?"; $lang['qso_simplefle_info_ln1'] = "简单快速日志输入 (FLE)"; $lang['qso_simplefle_info_ln2'] = "“快速日志输入”,或简称“FLE”,是一个非常快速、高效地记录 QSO 的系统。 由于其语法,只需最少的输入即可以尽可能少的努力记录许多 QSO。"; $lang['qso_simplefle_info_ln3'] = "FLE 最初由 DF3CB 编写。 他在他的网站上提供了一个适用于 Windows 的程序。 Simple FLE 是 OK2CQR 基于 DF3CB 的 FLE 编写的,并提供了一个 Web 界面来记录 QSO。"; -$lang['qso_simplefle_info_ln4'] = "一个常见的用例是,如果您必须野架之后将纸质日志导入电脑,现在 Cloudlog 中也提供了 SimpleFLE。 有关语法和 FLE 工作原理的信息可以在此处找到。"; +$lang['qso_simplefle_info_ln4'] = "一个常见的用例是,如果您必须野架之后将纸质日志导入电脑,现在 Wavelog 中也提供了 SimpleFLE。 有关语法和 FLE 工作原理的信息可以在此处找到。"; $lang['qso_simplefle_qso_data'] = "QSO 数据"; $lang['qso_simplefle_qso_date_hint'] = "如果您不选择日期,则将使用今天的日期。"; $lang['qso_simplefle_qso_list'] = "QSO 列表"; diff --git a/application/language/chinese_simplified/station_lang.php b/application/language/chinese_simplified/station_lang.php index e8b4def39..0ca448355 100644 --- a/application/language/chinese_simplified/station_lang.php +++ b/application/language/chinese_simplified/station_lang.php @@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "确定删除此台站日志?你可 $lang['station_logbooks_view_public'] = "浏览日志公开页: "; $lang['station_logbooks_create_name'] = "台站日志名称"; $lang['station_logbooks_create_name_hint'] = "你可以随意称呼你的台站日志"; -$lang['station_logbooks_edit_name_hint'] = "台站位置简称,例如:Home Log (IO87IP)"; +$lang['station_logbooks_edit_name_hint'] = "台站位置简称,例如:Home Log (HM54ip)"; $lang['station_logbooks_edit_name_update'] = "更新台站日志名称"; $lang['station_logbooks_public_slug'] = "自定义日志链接"; $lang['station_logbooks_public_slug_hint'] = "通过自定义日志链接,你可以通过此链接让别人访问你的日志"; @@ -57,11 +57,11 @@ $lang['station_location_edit'] = 'Edit Station Location: '; $lang['station_location_updated_suff'] = ' Updated.'; $lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.'; $lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.'; +$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; $lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)'; +$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; $lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P'; +$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; $lang['station_location_power'] = 'Station Power (W)'; $lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; $lang['station_location_emptylog'] = 'Empty Log'; @@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr $lang['station_location_county'] = 'Station County'; $lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; $lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: IO87IP. If you don't know your grid square then click here!"; +$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; $lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; $lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; $lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; diff --git a/application/language/czech/account_lang.php b/application/language/czech/account_lang.php index b524c7f2c..1bbaf5e23 100644 --- a/application/language/czech/account_lang.php +++ b/application/language/czech/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Značka'; $lang['account_gridsquare'] = 'Locátor'; -$lang['account_cloudlog_preferences'] = 'Nastavení Cloudlogu'; +$lang['account_wavelog_preferences'] = 'Nastavení Wavelogu'; $lang['account_timezone'] = 'Časové pásmo'; $lang['account_date_format'] = 'Formát data'; $lang['account_log_end_time'] = 'Log End Times for QSOs Separately'; @@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign"; $lang['account_measurement_preferences'] = 'Nastavení měření'; $lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Vyberte, jak chcete, aby byla data zobrazena při přihlášení do vašeho účtu.'; $lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Vyberte, v jakých jednotkách se budou zobrazovat vzdálenosti.'; -$lang['account_cloudlog_language'] = 'Cloudlog Language'; -$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.'; +$lang['account_wavelog_language'] = 'Wavelog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.'; $lang['account_main_menu'] = 'Hlavní menu'; $lang['account_show_notes_in_the_main_menu'] = 'Zobrazovat poznámky v hlavním menu.'; @@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Potvrzení hesla'; $lang['account_forgot_your_password'] = 'Zapomněli jste heslo?'; -$lang['account_login_to_cloudlog'] = 'Přihlásit se do Cloudlogu'; +$lang['account_login_to_wavelog'] = 'Přihlásit se do Wavelogu'; $lang['account_login'] = 'Přihlásit se'; $lang['account_mastodon'] = 'Mastodon server'; @@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Výchozí pásma'; $lang['account_qsl_settings'] = 'Default QSL-Methods'; $lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/czech/adif_lang.php b/application/language/czech/adif_lang.php index 4000ec252..f2eddfeb6 100644 --- a/application/language/czech/adif_lang.php +++ b/application/language/czech/adif_lang.php @@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook $lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; $lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Cloudlog will attempt to determine DXCC information automatically."; +$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; $lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; $lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Cloudlog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; +$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; $lang['adif_upload'] = "Upload"; @@ -94,10 +94,10 @@ $lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL. $lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; $lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)"; -$lang['overwrite_by_dcl_hint'] = "If checked Cloudlog will forcibly overwrite existing DOK with DOK from DCL log."; +$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; $lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched"; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Cloudlog will be displayed."; +$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; /* ___________________________________________________________________________________________ diff --git a/application/language/czech/admin_lang.php b/application/language/czech/admin_lang.php index 827efb946..c1ec50375 100644 --- a/application/language/czech/admin_lang.php +++ b/application/language/czech/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['admin_user_line1'] = 'Cloudlog potřebuje alespoň jednoho uživatele nastaveného pro svůj provoz.'; -$lang['admin_user_line2'] = 'Uživatelům mohou být přiděleny role, které jim udělují různá oprávnění, jako je přidávání QSO do logu a přístup k Cloudlog API.'; +$lang['admin_user_line1'] = 'Wavelog potřebuje alespoň jednoho uživatele nastaveného pro svůj provoz.'; +$lang['admin_user_line2'] = 'Uživatelům mohou být přiděleny role, které jim udělují různá oprávnění, jako je přidávání QSO do logu a přístup k Wavelog API.'; $lang['admin_user_line3'] = 'Nyní přihlášený uživatel je zobrazen v pravém horním rohu každé stránky.'; $lang['admin_user_line4'] = "With the password reset button, you can send a user an email containing a link to reset their password. To achieve this, ensure that the email settings in the global options are configured correctly."; diff --git a/application/language/czech/awards_lang.php b/application/language/czech/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/czech/awards_lang.php +++ b/application/language/czech/awards_lang.php @@ -49,7 +49,7 @@ ________________________________________________________________________________ $lang['awards_dxcc_description_ln1'] = "DXCC Award"; $lang['awards_dxcc_description_ln2'] = "DXCC stands for 'DX Century Club,' an award based on worked countries. The DXCC List is based on an article created in 1935 by Clinton B. DeSoto, W1CBD, titled 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Cloudlog. Be aware that these DXCC entities are outdated and no longer valid."; +$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Wavelog. Be aware that these DXCC entities are outdated and no longer valid."; /* @@ -95,7 +95,7 @@ ________________________________________________________________________________ */ $lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Cloudlog."; +$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; $lang['awards_sig_description_ln3'] = "The reason for this is that the common ADIF format provides only a few dedicated fields for certain awards. SIG still makes it possible to use and evaluate all other types of signature markers."; $lang['awards_sig_description_ln4'] = "In the QSO processing, you will find two fields: 'SIG' contains the actual marker, which is also visible in the award evaluation, and 'SIG INFO,' which contains a description of the signature. Both fields are freely customizable."; diff --git a/application/language/czech/general_words_lang.php b/application/language/czech/general_words_lang.php index 46cb6d959..3be8b5faa 100644 --- a/application/language/czech/general_words_lang.php +++ b/application/language/czech/general_words_lang.php @@ -110,8 +110,8 @@ $lang['general_total_distance'] = 'Celková vzdálenost'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Umístění stanice'; +// Wavelog Terms +$lang['wavelog_station_profile'] = 'Umístění stanice'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/czech/lotw_lang.php b/application/language/czech/lotw_lang.php index b0d860946..8ddc26ea2 100644 --- a/application/language/czech/lotw_lang.php +++ b/application/language/czech/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Deník musí být ve formátu .adi'; $lang['lotw_pull_lotw_data_for_me'] = 'Stáhni data z LoTW'; $lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; -$lang['lotw_report_download_overview_helptext'] ='Cloudlog použije uživatelské jméno a heslo LoTW uložené ve vašem uživatelském profilu, aby vám stáhl datz LoTW.Stažen budu data od nastaveného datumu nebo od posledního stažení až do teď.'; +$lang['lotw_report_download_overview_helptext'] ='Wavelog použije uživatelské jméno a heslo LoTW uložené ve vašem uživatelském profilu, aby vám stáhl datz LoTW.Stažen budu data od nastaveného datumu nebo od posledního stažení až do teď.'; // Buttons $lang['lotw_btn_lotw_import'] = 'Import z LoTW'; diff --git a/application/language/czech/options_lang.php b/application/language/czech/options_lang.php index b1bde5033..29062629a 100644 --- a/application/language/czech/options_lang.php +++ b/application/language/czech/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Možnosti Cloudlogu'; -$lang['options_message1'] = 'Možnosti Cloudlogu jsou globální nastavení používaná pro všechny uživatele instalace, která jsou přepsána, pokud je nastavení na úrovni uživatele.'; +$lang['options_wavelog_options'] = 'Možnosti Wavelogu'; +$lang['options_message1'] = 'Možnosti Wavelogu jsou globální nastavení používaná pro všechny uživatele instalace, která jsou přepsána, pokud je nastavení na úrovni uživatele.'; $lang['options_appearance'] = 'Vzhled'; $lang['options_theme'] = 'Téma'; @@ -42,8 +42,8 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully."; $lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again."; $lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails."; $lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL."; -$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'"; +$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'"; $lang['options_smtp_host_hint'] = "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')"; $lang['options_smtp_port_hint'] = "The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is used -> '465'"; $lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; diff --git a/application/language/czech/qso_lang.php b/application/language/czech/qso_lang.php index 67eddeed9..a32da0ab3 100644 --- a/application/language/czech/qso_lang.php +++ b/application/language/czech/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Příklad: DA/NW-357'; $lang['qso_dok_helptext'] = 'Příklad: Q03'; -$lang['qso_notes_helptext'] = 'Obsah je užíván pouze Cloudlogu a není exportován do dalších služeb.'; +$lang['qso_notes_helptext'] = 'Obsah je užíván pouze Wavelogu a není exportován do dalších služeb.'; $lang['qsl_notes_helptext'] = 'This note content is exported to QSL services like eqsl.cc.'; $lang['qso_eqsl_qslmsg_helptext'] = "Get the default message for eQSL, for this station."; @@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "What is that?"; $lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)"; $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and efficiently. Due to its syntax, only a minimum of input is required to log many QSOs with as little effort as possible."; $lang['qso_simplefle_info_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs."; -$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found here."; +$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Wavelog. Information about the syntax and how FLE works can be found here."; $lang['qso_simplefle_qso_data'] = "QSO Data"; $lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; $lang['qso_simplefle_qso_list'] = "QSO List"; @@ -67,7 +67,7 @@ $lang['qso_simplefle_utc_time'] = "Current UTC Time"; $lang['qso_simplefle_enter_the_data'] = "Enter the Data"; $lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; $lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Cloudlog"; +$lang['qso_simplefle_save'] = "Save in Wavelog"; $lang['qso_simplefle_clear'] = "Clear Logging Session"; $lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; @@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please n $lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; $lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; $lang['qso_simplefle_syntax_help_ln4'] = "To begin, ensure you have already filled in the form on the left with the date, station call, and operator's call. The main data includes the band (or QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the first QSO, which is essentially the callsign."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 2M0SQL on 20m SSB."; +$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; $lang['qso_simplefle_syntax_help_ln6'] = "If you don't provide any RST information, the syntax will use 59 (599 for data). Our next QSO wasn't 59 on both sides, so we provide the information with the sent RST first. It was 2 minutes later than the first QSO."; $lang['qso_simplefle_syntax_help_ln7'] = "The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We write down 6 because this is the only data that changed here. The information about band and mode didn't change, so this data is omitted."; $lang['qso_simplefle_syntax_help_ln8'] = "For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but still on SSB. If no RST information is given, the syntax will use 59 for every new QSO. Therefore we can add another QSO which took place at the exact same time two days later. The date must be in format YYYY-MM-DD."; diff --git a/application/language/czech/station_lang.php b/application/language/czech/station_lang.php index 01acd54b3..1d80fedb1 100644 --- a/application/language/czech/station_lang.php +++ b/application/language/czech/station_lang.php @@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the $lang['station_logbooks_view_public'] = "View Public Page for Logbook: "; $lang['station_logbooks_create_name'] = "Station Logbook Name"; $lang['station_logbooks_create_name_hint'] = "You can call a station logbook anything."; -$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (IO87IP)"; +$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (HM54ip)"; $lang['station_logbooks_edit_name_update'] = "Update Station Logbook Name"; $lang['station_logbooks_public_slug'] = "Public Slug"; $lang['station_logbooks_public_slug_hint'] = "Setting a public slug allows you to share your logbook with anyone via a custom website address, this slug can contain letters & numbers only."; @@ -57,11 +57,11 @@ $lang['station_location_edit'] = 'Edit Station Location: '; $lang['station_location_updated_suff'] = ' Updated.'; $lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.'; $lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.'; +$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; $lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)'; +$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; $lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P'; +$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; $lang['station_location_power'] = 'Station Power (W)'; $lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; $lang['station_location_emptylog'] = 'Empty Log'; @@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr $lang['station_location_county'] = 'Station County'; $lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; $lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: IO87IP. If you don't know your grid square then click here!"; +$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; $lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; $lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; $lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; diff --git a/application/language/dutch/account_lang.php b/application/language/dutch/account_lang.php index 72491743f..20f409929 100644 --- a/application/language/dutch/account_lang.php +++ b/application/language/dutch/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Callsign'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences'; +$lang['account_wavelog_preferences'] = 'Wavelog Preferences'; $lang['account_timezone'] = 'Timezone'; $lang['account_date_format'] = 'Date Format'; $lang['account_log_end_time'] = 'Log End Times for QSOs Separately'; @@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign"; $lang['account_measurement_preferences'] = 'Measurement preference'; $lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Select how you would like dates shown when logged into your account.'; $lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Choose which unit distances will be shown in'; -$lang['account_cloudlog_language'] = 'Cloudlog Language'; -$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.'; +$lang['account_wavelog_language'] = 'Wavelog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.'; $lang['account_main_menu'] = 'Menu Options'; $lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.'; @@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirm Password'; $lang['account_forgot_your_password'] = 'Forgot your password?'; -$lang['account_login_to_cloudlog'] = 'Login to Cloudlog'; +$lang['account_login_to_wavelog'] = 'Login to Wavelog'; $lang['account_login'] = 'Login'; $lang['account_mastodon'] = 'Mastodonserver'; @@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Default Band'; $lang['account_qsl_settings'] = 'Default QSL-Methods'; $lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/dutch/adif_lang.php b/application/language/dutch/adif_lang.php index 4000ec252..f2eddfeb6 100644 --- a/application/language/dutch/adif_lang.php +++ b/application/language/dutch/adif_lang.php @@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook $lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; $lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Cloudlog will attempt to determine DXCC information automatically."; +$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; $lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; $lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Cloudlog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; +$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; $lang['adif_upload'] = "Upload"; @@ -94,10 +94,10 @@ $lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL. $lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; $lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)"; -$lang['overwrite_by_dcl_hint'] = "If checked Cloudlog will forcibly overwrite existing DOK with DOK from DCL log."; +$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; $lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched"; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Cloudlog will be displayed."; +$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; /* ___________________________________________________________________________________________ diff --git a/application/language/dutch/admin_lang.php b/application/language/dutch/admin_lang.php index 95df556fd..798c21056 100644 --- a/application/language/dutch/admin_lang.php +++ b/application/language/dutch/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan'); -$lang['admin_user_line1'] = 'Cloudlog needs at least one user configured in order to operate.'; -$lang['admin_user_line2'] = 'Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Cloudlog APIs.'; +$lang['admin_user_line1'] = 'Wavelog needs at least one user configured in order to operate.'; +$lang['admin_user_line2'] = 'Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Wavelog APIs.'; $lang['admin_user_line3'] = 'The currently logged-in user is displayed at the upper-right of each page.'; $lang['admin_user_line4'] = "With the password reset button, you can send a user an email containing a link to reset their password. To achieve this, ensure that the email settings in the global options are configured correctly."; diff --git a/application/language/dutch/awards_lang.php b/application/language/dutch/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/dutch/awards_lang.php +++ b/application/language/dutch/awards_lang.php @@ -49,7 +49,7 @@ ________________________________________________________________________________ $lang['awards_dxcc_description_ln1'] = "DXCC Award"; $lang['awards_dxcc_description_ln2'] = "DXCC stands for 'DX Century Club,' an award based on worked countries. The DXCC List is based on an article created in 1935 by Clinton B. DeSoto, W1CBD, titled 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Cloudlog. Be aware that these DXCC entities are outdated and no longer valid."; +$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Wavelog. Be aware that these DXCC entities are outdated and no longer valid."; /* @@ -95,7 +95,7 @@ ________________________________________________________________________________ */ $lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Cloudlog."; +$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; $lang['awards_sig_description_ln3'] = "The reason for this is that the common ADIF format provides only a few dedicated fields for certain awards. SIG still makes it possible to use and evaluate all other types of signature markers."; $lang['awards_sig_description_ln4'] = "In the QSO processing, you will find two fields: 'SIG' contains the actual marker, which is also visible in the award evaluation, and 'SIG INFO,' which contains a description of the signature. Both fields are freely customizable."; diff --git a/application/language/dutch/general_words_lang.php b/application/language/dutch/general_words_lang.php index de05c57a3..88457f533 100644 --- a/application/language/dutch/general_words_lang.php +++ b/application/language/dutch/general_words_lang.php @@ -110,8 +110,8 @@ $lang['general_total_distance'] = 'Total Distance'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Station Profiel'; +// Wavelog Terms +$lang['wavelog_station_profile'] = 'Station Profiel'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/dutch/lotw_lang.php b/application/language/dutch/lotw_lang.php index e8f15ca10..1f151d667 100644 --- a/application/language/dutch/lotw_lang.php +++ b/application/language/dutch/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Log files must have the file type .adi' $lang['lotw_pull_lotw_data_for_me'] = 'Pull LoTW data for me'; $lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; -$lang['lotw_report_download_overview_helptext'] = 'Cloudlog will use the LoTW username and password stored in your user profile to download a report from LoTW for you. The report Cloudlog downloads will have all confirmations since chosen date, or since your last LoTW confirmation (fetched from your log), up until now.'; +$lang['lotw_report_download_overview_helptext'] = 'Wavelog will use the LoTW username and password stored in your user profile to download a report from LoTW for you. The report Wavelog downloads will have all confirmations since chosen date, or since your last LoTW confirmation (fetched from your log), up until now.'; // Buttons $lang['lotw_btn_lotw_import'] = 'LoTW Import'; diff --git a/application/language/dutch/options_lang.php b/application/language/dutch/options_lang.php index c26ac382c..0bb4a7818 100644 --- a/application/language/dutch/options_lang.php +++ b/application/language/dutch/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan'); -$lang['options_cloudlog_options'] = 'Cloudlog Options'; -$lang['options_message1'] = 'Cloudlog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.'; +$lang['options_wavelog_options'] = 'Wavelog Options'; +$lang['options_message1'] = 'Wavelog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.'; $lang['options_appearance'] = 'Appearance'; $lang['options_theme'] = 'Theme'; @@ -42,8 +42,8 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully."; $lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again."; $lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails."; $lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL."; -$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'"; +$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'"; $lang['options_smtp_host_hint'] = "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')"; $lang['options_smtp_port_hint'] = "The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is used -> '465'"; $lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; diff --git a/application/language/dutch/qso_lang.php b/application/language/dutch/qso_lang.php index 9d099f7a3..de649580c 100644 --- a/application/language/dutch/qso_lang.php +++ b/application/language/dutch/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Bijvoorbeeld: DA/NW-357'; $lang['qso_dok_helptext'] = 'Bijvoorbeeld: Q03'; -$lang['qso_notes_helptext'] = 'Notities worden alleen in Cloudlog gebruikt en worden niet geexporteerd naar andere diensten.'; +$lang['qso_notes_helptext'] = 'Notities worden alleen in Wavelog gebruikt en worden niet geexporteerd naar andere diensten.'; $lang['qsl_notes_helptext'] = 'This note content is exported to QSL services like eqsl.cc.'; $lang['qso_eqsl_qslmsg_helptext'] = "Get the default message for eQSL, for this station."; @@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "What is that?"; $lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)"; $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and efficiently. Due to its syntax, only a minimum of input is required to log many QSOs with as little effort as possible."; $lang['qso_simplefle_info_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs."; -$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found here."; +$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Wavelog. Information about the syntax and how FLE works can be found here."; $lang['qso_simplefle_qso_data'] = "QSO Data"; $lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; $lang['qso_simplefle_qso_list'] = "QSO List"; @@ -67,7 +67,7 @@ $lang['qso_simplefle_utc_time'] = "Current UTC Time"; $lang['qso_simplefle_enter_the_data'] = "Enter the Data"; $lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; $lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Cloudlog"; +$lang['qso_simplefle_save'] = "Save in Wavelog"; $lang['qso_simplefle_clear'] = "Clear Logging Session"; $lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; @@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please n $lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; $lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; $lang['qso_simplefle_syntax_help_ln4'] = "To begin, ensure you have already filled in the form on the left with the date, station call, and operator's call. The main data includes the band (or QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the first QSO, which is essentially the callsign."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 2M0SQL on 20m SSB."; +$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; $lang['qso_simplefle_syntax_help_ln6'] = "If you don't provide any RST information, the syntax will use 59 (599 for data). Our next QSO wasn't 59 on both sides, so we provide the information with the sent RST first. It was 2 minutes later than the first QSO."; $lang['qso_simplefle_syntax_help_ln7'] = "The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We write down 6 because this is the only data that changed here. The information about band and mode didn't change, so this data is omitted."; $lang['qso_simplefle_syntax_help_ln8'] = "For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but still on SSB. If no RST information is given, the syntax will use 59 for every new QSO. Therefore we can add another QSO which took place at the exact same time two days later. The date must be in format YYYY-MM-DD."; diff --git a/application/language/dutch/station_lang.php b/application/language/dutch/station_lang.php index 01acd54b3..1d80fedb1 100644 --- a/application/language/dutch/station_lang.php +++ b/application/language/dutch/station_lang.php @@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the $lang['station_logbooks_view_public'] = "View Public Page for Logbook: "; $lang['station_logbooks_create_name'] = "Station Logbook Name"; $lang['station_logbooks_create_name_hint'] = "You can call a station logbook anything."; -$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (IO87IP)"; +$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (HM54ip)"; $lang['station_logbooks_edit_name_update'] = "Update Station Logbook Name"; $lang['station_logbooks_public_slug'] = "Public Slug"; $lang['station_logbooks_public_slug_hint'] = "Setting a public slug allows you to share your logbook with anyone via a custom website address, this slug can contain letters & numbers only."; @@ -57,11 +57,11 @@ $lang['station_location_edit'] = 'Edit Station Location: '; $lang['station_location_updated_suff'] = ' Updated.'; $lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.'; $lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.'; +$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; $lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)'; +$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; $lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P'; +$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; $lang['station_location_power'] = 'Station Power (W)'; $lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; $lang['station_location_emptylog'] = 'Empty Log'; @@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr $lang['station_location_county'] = 'Station County'; $lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; $lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: IO87IP. If you don't know your grid square then click here!"; +$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; $lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; $lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; $lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; diff --git a/application/language/english/account_lang.php b/application/language/english/account_lang.php index a461e07e2..4f17ea748 100644 --- a/application/language/english/account_lang.php +++ b/application/language/english/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Callsign'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences'; +$lang['account_wavelog_preferences'] = 'Wavelog Preferences'; $lang['account_timezone'] = 'Timezone'; $lang['account_date_format'] = 'Date Format'; $lang['account_log_end_time'] = 'Log End Times for QSOs Separately'; @@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign"; $lang['account_measurement_preferences'] = 'Measurement preference'; $lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Select how you would like dates shown when logged into your account.'; $lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Choose which unit distances will be shown in'; -$lang['account_cloudlog_language'] = 'Cloudlog Language'; -$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.'; +$lang['account_wavelog_language'] = 'Wavelog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.'; $lang['account_main_menu'] = 'Menu Options'; $lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.'; @@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirm Password'; $lang['account_forgot_your_password'] = 'Forgot your password?'; -$lang['account_login_to_cloudlog'] = 'Login to Cloudlog'; +$lang['account_login_to_wavelog'] = 'Login to Wavelog'; $lang['account_login'] = 'Login'; $lang['account_mastodon'] = 'Mastodonserver'; @@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Default Band'; $lang['account_qsl_settings'] = 'Default QSL-Methods'; $lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/english/adif_lang.php b/application/language/english/adif_lang.php index 4bc6753cc..70e223d9c 100644 --- a/application/language/english/adif_lang.php +++ b/application/language/english/adif_lang.php @@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook $lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; $lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Cloudlog will attempt to determine DXCC information automatically."; +$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; $lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; $lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Cloudlog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; +$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; $lang['adif_upload'] = "Upload"; @@ -94,10 +94,10 @@ $lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL. $lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; $lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)."; -$lang['overwrite_by_dcl_hint'] = "If checked Cloudlog will forcibly overwrite existing DOK with DOK from DCL log."; +$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; $lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched."; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Cloudlog will be displayed."; +$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; /* ___________________________________________________________________________________________ diff --git a/application/language/english/admin_lang.php b/application/language/english/admin_lang.php index 3b43a6fee..f0510df7e 100644 --- a/application/language/english/admin_lang.php +++ b/application/language/english/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['admin_user_line1'] = 'Cloudlog needs at least one user configured in order to operate.'; -$lang['admin_user_line2'] = 'Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Cloudlog APIs.'; +$lang['admin_user_line1'] = 'Wavelog needs at least one user configured in order to operate.'; +$lang['admin_user_line2'] = 'Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Wavelog APIs.'; $lang['admin_user_line3'] = 'The currently logged-in user is displayed at the upper-right of each page.'; $lang['admin_user_line4'] = "With the password reset button, you can send a user an email containing a link to reset their password. To achieve this, ensure that the email settings in the global options are configured correctly."; diff --git a/application/language/english/awards_lang.php b/application/language/english/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/english/awards_lang.php +++ b/application/language/english/awards_lang.php @@ -49,7 +49,7 @@ ________________________________________________________________________________ $lang['awards_dxcc_description_ln1'] = "DXCC Award"; $lang['awards_dxcc_description_ln2'] = "DXCC stands for 'DX Century Club,' an award based on worked countries. The DXCC List is based on an article created in 1935 by Clinton B. DeSoto, W1CBD, titled 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Cloudlog. Be aware that these DXCC entities are outdated and no longer valid."; +$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Wavelog. Be aware that these DXCC entities are outdated and no longer valid."; /* @@ -95,7 +95,7 @@ ________________________________________________________________________________ */ $lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Cloudlog."; +$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; $lang['awards_sig_description_ln3'] = "The reason for this is that the common ADIF format provides only a few dedicated fields for certain awards. SIG still makes it possible to use and evaluate all other types of signature markers."; $lang['awards_sig_description_ln4'] = "In the QSO processing, you will find two fields: 'SIG' contains the actual marker, which is also visible in the award evaluation, and 'SIG INFO,' which contains a description of the signature. Both fields are freely customizable."; diff --git a/application/language/english/general_words_lang.php b/application/language/english/general_words_lang.php index 680b8b33e..60340fc9f 100644 --- a/application/language/english/general_words_lang.php +++ b/application/language/english/general_words_lang.php @@ -110,8 +110,8 @@ $lang['general_total_distance'] = 'Total Distance'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Station Location'; +// Wavelog Terms +$lang['wavelog_station_profile'] = 'Station Location'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/english/lotw_lang.php b/application/language/english/lotw_lang.php index 788274b12..abaeacddf 100644 --- a/application/language/english/lotw_lang.php +++ b/application/language/english/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Log files must have the file type .adi' $lang['lotw_pull_lotw_data_for_me'] = 'Pull LoTW data for me'; $lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; -$lang['lotw_report_download_overview_helptext'] = 'Cloudlog will use the LoTW username and password stored in your user profile to download a report from LoTW for you. The report Cloudlog downloads will have all confirmations since chosen date, or since your last LoTW confirmation (fetched from your log), up until now.'; +$lang['lotw_report_download_overview_helptext'] = 'Wavelog will use the LoTW username and password stored in your user profile to download a report from LoTW for you. The report Wavelog downloads will have all confirmations since chosen date, or since your last LoTW confirmation (fetched from your log), up until now.'; // Buttons $lang['lotw_btn_lotw_import'] = 'LoTW Import'; diff --git a/application/language/english/options_lang.php b/application/language/english/options_lang.php index a4f8b3cd0..c72f036d7 100644 --- a/application/language/english/options_lang.php +++ b/application/language/english/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Cloudlog Options'; -$lang['options_message1'] = 'Cloudlog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.'; +$lang['options_wavelog_options'] = 'Wavelog Options'; +$lang['options_message1'] = 'Wavelog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.'; $lang['options_appearance'] = 'Appearance'; $lang['options_theme'] = 'Theme'; @@ -42,8 +42,8 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully."; $lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again."; $lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails."; $lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL."; -$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'"; +$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'"; $lang['options_smtp_host_hint'] = "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')"; $lang['options_smtp_port_hint'] = "The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is used -> '465'"; $lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; diff --git a/application/language/english/qso_lang.php b/application/language/english/qso_lang.php index 74e05456b..f88a9b7cb 100644 --- a/application/language/english/qso_lang.php +++ b/application/language/english/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'For example: DA/NW-357'; $lang['qso_dok_helptext'] = 'For example: Q03'; -$lang['qso_notes_helptext'] = 'Note content is used within Cloudlog only and is not exported to other services.'; +$lang['qso_notes_helptext'] = 'Note content is used within Wavelog only and is not exported to other services.'; $lang['qsl_notes_helptext'] = 'This note content is exported to QSL services like eqsl.cc.'; $lang['qso_eqsl_qslmsg_helptext'] = "Get the default message for eQSL, for this station."; @@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "What is that?"; $lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)"; $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and efficiently. Due to its syntax, only a minimum of input is required to log many QSOs with as little effort as possible."; $lang['qso_simplefle_info_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs."; -$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found here."; +$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Wavelog. Information about the syntax and how FLE works can be found here."; $lang['qso_simplefle_qso_data'] = "QSO Data"; $lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; $lang['qso_simplefle_qso_list'] = "QSO List"; @@ -67,7 +67,7 @@ $lang['qso_simplefle_utc_time'] = "Current UTC Time"; $lang['qso_simplefle_enter_the_data'] = "Enter the Data"; $lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; $lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Cloudlog"; +$lang['qso_simplefle_save'] = "Save in Wavelog"; $lang['qso_simplefle_clear'] = "Clear Logging Session"; $lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; @@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please n $lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; $lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; $lang['qso_simplefle_syntax_help_ln4'] = "To begin, ensure you have already filled in the form on the left with the date, station call, and operator's call. The main data includes the band (or QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the first QSO, which is essentially the callsign."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 2M0SQL on 20m SSB."; +$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; $lang['qso_simplefle_syntax_help_ln6'] = "If you don't provide any RST information, the syntax will use 59 (599 for data). Our next QSO wasn't 59 on both sides, so we provide the information with the sent RST first. It was 2 minutes later than the first QSO."; $lang['qso_simplefle_syntax_help_ln7'] = "The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We write down 6 because this is the only data that changed here. The information about band and mode didn't change, so this data is omitted."; $lang['qso_simplefle_syntax_help_ln8'] = "For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but still on SSB. If no RST information is given, the syntax will use 59 for every new QSO. Therefore we can add another QSO which took place at the exact same time two days later. The date must be in format YYYY-MM-DD."; diff --git a/application/language/english/station_lang.php b/application/language/english/station_lang.php index 1191b82db..342aab554 100644 --- a/application/language/english/station_lang.php +++ b/application/language/english/station_lang.php @@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the $lang['station_logbooks_view_public'] = "View Public Page for Logbook: "; $lang['station_logbooks_create_name'] = "Station Logbook Name"; $lang['station_logbooks_create_name_hint'] = "You can call a station logbook anything."; -$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (IO87IP)"; +$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (HM54ip)"; $lang['station_logbooks_edit_name_update'] = "Update Station Logbook Name"; $lang['station_logbooks_public_slug'] = "Public Slug"; $lang['station_logbooks_public_slug_hint'] = "Setting a public slug allows you to share your logbook with anyone via a custom website address, this slug can contain letters & numbers only."; @@ -57,11 +57,11 @@ $lang['station_location_edit'] = 'Edit Station Location: '; $lang['station_location_updated_suff'] = ' Updated.'; $lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.'; $lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.'; +$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; $lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)'; +$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; $lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P'; +$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; $lang['station_location_power'] = 'Station Power (W)'; $lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; $lang['station_location_emptylog'] = 'Empty Log'; @@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr $lang['station_location_county'] = 'Station County'; $lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; $lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: IO87IP. If you don't know your grid square then click here!"; +$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; $lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; $lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; $lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; diff --git a/application/language/finnish/account_lang.php b/application/language/finnish/account_lang.php index 217044f23..3afe5b50d 100644 --- a/application/language/finnish/account_lang.php +++ b/application/language/finnish/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Radioamatöörikutsu'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_cloudlog_preferences'] = 'Cloudlog Asetukset'; +$lang['account_wavelog_preferences'] = 'Wavelog Asetukset'; $lang['account_timezone'] = 'Aikavyöhyke'; $lang['account_date_format'] = 'Päivämäärämuoto'; $lang['account_log_end_time'] = 'Log End Times for QSOs Separately'; @@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign"; $lang['account_measurement_preferences'] = 'Mittayksikkömuoto'; $lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Valitse, miten haluat päivämäärät näkyvän, kun olet kirjautunut tilillesi.'; $lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Valitse, mitä mittayksikkömuotoa käytetään'; -$lang['account_cloudlog_language'] = 'Cloudlog Language'; -$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.'; +$lang['account_wavelog_language'] = 'Wavelog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.'; $lang['account_main_menu'] = 'Menu Options'; $lang['account_show_notes_in_the_main_menu'] = 'Näytä "Muistio" päävalikossa.'; @@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Vahvista salasana'; $lang['account_forgot_your_password'] = 'Salasana unohtunut?'; -$lang['account_login_to_cloudlog'] = 'Kirjaudu Cloudlogiin'; +$lang['account_login_to_wavelog'] = 'Kirjaudu Wavelogiin'; $lang['account_login'] = 'Kirjaudu'; $lang['account_mastodon'] = 'Mastodonserver'; @@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Oletusbandi'; $lang['account_qsl_settings'] = 'Default QSL-Methods'; $lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/finnish/adif_lang.php b/application/language/finnish/adif_lang.php index ae21746c9..0e1c72815 100644 --- a/application/language/finnish/adif_lang.php +++ b/application/language/finnish/adif_lang.php @@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook $lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; $lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Cloudlog will attempt to determine DXCC information automatically."; +$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; $lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; $lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Cloudlog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; +$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; $lang['adif_upload'] = "Upload"; @@ -94,10 +94,10 @@ $lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL. $lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; $lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)"; -$lang['overwrite_by_dcl_hint'] = "If checked Cloudlog will forcibly overwrite existing DOK with DOK from DCL log."; +$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; $lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched"; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Cloudlog will be displayed."; +$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; /* ___________________________________________________________________________________________ diff --git a/application/language/finnish/admin_lang.php b/application/language/finnish/admin_lang.php index 9db3390e5..8acdceb0e 100644 --- a/application/language/finnish/admin_lang.php +++ b/application/language/finnish/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['admin_user_line1'] = 'Cloudlog tarvitsee toimiakseen vähintään yhden luodun käyttäjän.'; -$lang['admin_user_line2'] = 'Käyttäjille voidaan määrittää rooleja, jotka antavat heille erilaisia käyttöoikeuksia, kuten QSO:n lisääminen lokikirjaan ja pääsy Cloudlog-sovellusliittymiin (API).'; +$lang['admin_user_line1'] = 'Wavelog tarvitsee toimiakseen vähintään yhden luodun käyttäjän.'; +$lang['admin_user_line2'] = 'Käyttäjille voidaan määrittää rooleja, jotka antavat heille erilaisia käyttöoikeuksia, kuten QSO:n lisääminen lokikirjaan ja pääsy Wavelog-sovellusliittymiin (API).'; $lang['admin_user_line3'] = 'Tällä hetkellä kirjautunut käyttäjä näkyy jokaisen sivun oikeassa yläkulmassa.'; $lang['admin_user_line4'] = "With the password reset button, you can send a user an email containing a link to reset their password. To achieve this, ensure that the email settings in the global options are configured correctly."; diff --git a/application/language/finnish/awards_lang.php b/application/language/finnish/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/finnish/awards_lang.php +++ b/application/language/finnish/awards_lang.php @@ -49,7 +49,7 @@ ________________________________________________________________________________ $lang['awards_dxcc_description_ln1'] = "DXCC Award"; $lang['awards_dxcc_description_ln2'] = "DXCC stands for 'DX Century Club,' an award based on worked countries. The DXCC List is based on an article created in 1935 by Clinton B. DeSoto, W1CBD, titled 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Cloudlog. Be aware that these DXCC entities are outdated and no longer valid."; +$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Wavelog. Be aware that these DXCC entities are outdated and no longer valid."; /* @@ -95,7 +95,7 @@ ________________________________________________________________________________ */ $lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Cloudlog."; +$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; $lang['awards_sig_description_ln3'] = "The reason for this is that the common ADIF format provides only a few dedicated fields for certain awards. SIG still makes it possible to use and evaluate all other types of signature markers."; $lang['awards_sig_description_ln4'] = "In the QSO processing, you will find two fields: 'SIG' contains the actual marker, which is also visible in the award evaluation, and 'SIG INFO,' which contains a description of the signature. Both fields are freely customizable."; diff --git a/application/language/finnish/general_words_lang.php b/application/language/finnish/general_words_lang.php index 4021a0d93..54934250d 100644 --- a/application/language/finnish/general_words_lang.php +++ b/application/language/finnish/general_words_lang.php @@ -110,8 +110,8 @@ $lang['general_total_distance'] = 'Kokonaismatka'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Asemaprofiili'; +// Wavelog Terms +$lang['wavelog_station_profile'] = 'Asemaprofiili'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/finnish/lotw_lang.php b/application/language/finnish/lotw_lang.php index 668d99087..e8b8853da 100644 --- a/application/language/finnish/lotw_lang.php +++ b/application/language/finnish/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Lokitiedoston pitää olla ADI-tiedosto $lang['lotw_pull_lotw_data_for_me'] = 'Lataa ja tuo LoTW:n data'; $lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; -$lang['lotw_report_download_overview_helptext'] ='Cloudlog käyttää profiiliisi tallennettuja LoTW:n käyttäjätietoja lokikoosteen lataamiseen. Lokikooste sisältää tähän päivään asti kaikki kuitatut yhteydet, alkaen valitsemastasi päivästä tai siitä päivästä kun olet viimeksi ne palvelusta ladannut .'; +$lang['lotw_report_download_overview_helptext'] ='Wavelog käyttää profiiliisi tallennettuja LoTW:n käyttäjätietoja lokikoosteen lataamiseen. Lokikooste sisältää tähän päivään asti kaikki kuitatut yhteydet, alkaen valitsemastasi päivästä tai siitä päivästä kun olet viimeksi ne palvelusta ladannut .'; // Buttons $lang['lotw_btn_lotw_import'] = 'LoTW Tuonti'; diff --git a/application/language/finnish/notes_lang.php b/application/language/finnish/notes_lang.php index ce2511e48..e28b2e801 100644 --- a/application/language/finnish/notes_lang.php +++ b/application/language/finnish/notes_lang.php @@ -6,7 +6,7 @@ $lang['notes_menu_notes'] = 'Muistiinpanot'; $lang['notes_edit_note'] = 'Muokkaa muistiinpanoa'; $lang['notes_your_notes'] = 'Muistiinpanosi'; -$lang['notes_welcome'] = "Näyttää siltä, ettei sinulla ole vielä yhtään muistiinpanoa. Tämä Cloudlogin muistio ovat kätevä tapa tallentaa vaikka ATU:n asetukset, taajuudet. Muistiinpanosi säilyvät täällä tallessa, eikä sinun tarvitse etsiä niitä paperipinojesi alta. Näin aika säästyy workkimiseen --... ...-- "; +$lang['notes_welcome'] = "Näyttää siltä, ettei sinulla ole vielä yhtään muistiinpanoa. Tämä Wavelogin muistio ovat kätevä tapa tallentaa vaikka ATU:n asetukset, taajuudet. Muistiinpanosi säilyvät täällä tallessa, eikä sinun tarvitse etsiä niitä paperipinojesi alta. Näin aika säästyy workkimiseen --... ...-- "; $lang['notes_create_note'] = 'Luo uusi muistiinpano'; diff --git a/application/language/finnish/options_lang.php b/application/language/finnish/options_lang.php index ce1763c6f..e87cbdb08 100644 --- a/application/language/finnish/options_lang.php +++ b/application/language/finnish/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Cloudlog Options'; -$lang['options_message1'] = 'Cloudlog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.'; +$lang['options_wavelog_options'] = 'Wavelog Options'; +$lang['options_message1'] = 'Wavelog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.'; $lang['options_appearance'] = 'Ulkoasu'; $lang['options_theme'] = 'Teema'; @@ -42,8 +42,8 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully."; $lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again."; $lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails."; $lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL."; -$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'"; +$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'"; $lang['options_smtp_host_hint'] = "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')"; $lang['options_smtp_port_hint'] = "The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is used -> '465'"; $lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; diff --git a/application/language/finnish/qso_lang.php b/application/language/finnish/qso_lang.php index 10124af85..cec8f87ef 100644 --- a/application/language/finnish/qso_lang.php +++ b/application/language/finnish/qso_lang.php @@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "What is that?"; $lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)"; $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and efficiently. Due to its syntax, only a minimum of input is required to log many QSOs with as little effort as possible."; $lang['qso_simplefle_info_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs."; -$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found here."; +$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Wavelog. Information about the syntax and how FLE works can be found here."; $lang['qso_simplefle_qso_data'] = "QSO Data"; $lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; $lang['qso_simplefle_qso_list'] = "QSO List"; @@ -67,7 +67,7 @@ $lang['qso_simplefle_utc_time'] = "Current UTC Time"; $lang['qso_simplefle_enter_the_data'] = "Enter the Data"; $lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; $lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Cloudlog"; +$lang['qso_simplefle_save'] = "Save in Wavelog"; $lang['qso_simplefle_clear'] = "Clear Logging Session"; $lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; @@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please n $lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; $lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; $lang['qso_simplefle_syntax_help_ln4'] = "To begin, ensure you have already filled in the form on the left with the date, station call, and operator's call. The main data includes the band (or QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the first QSO, which is essentially the callsign."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 2M0SQL on 20m SSB."; +$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; $lang['qso_simplefle_syntax_help_ln6'] = "If you don't provide any RST information, the syntax will use 59 (599 for data). Our next QSO wasn't 59 on both sides, so we provide the information with the sent RST first. It was 2 minutes later than the first QSO."; $lang['qso_simplefle_syntax_help_ln7'] = "The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We write down 6 because this is the only data that changed here. The information about band and mode didn't change, so this data is omitted."; $lang['qso_simplefle_syntax_help_ln8'] = "For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but still on SSB. If no RST information is given, the syntax will use 59 for every new QSO. Therefore we can add another QSO which took place at the exact same time two days later. The date must be in format YYYY-MM-DD."; diff --git a/application/language/finnish/station_lang.php b/application/language/finnish/station_lang.php index 01acd54b3..1d80fedb1 100644 --- a/application/language/finnish/station_lang.php +++ b/application/language/finnish/station_lang.php @@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the $lang['station_logbooks_view_public'] = "View Public Page for Logbook: "; $lang['station_logbooks_create_name'] = "Station Logbook Name"; $lang['station_logbooks_create_name_hint'] = "You can call a station logbook anything."; -$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (IO87IP)"; +$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (HM54ip)"; $lang['station_logbooks_edit_name_update'] = "Update Station Logbook Name"; $lang['station_logbooks_public_slug'] = "Public Slug"; $lang['station_logbooks_public_slug_hint'] = "Setting a public slug allows you to share your logbook with anyone via a custom website address, this slug can contain letters & numbers only."; @@ -57,11 +57,11 @@ $lang['station_location_edit'] = 'Edit Station Location: '; $lang['station_location_updated_suff'] = ' Updated.'; $lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.'; $lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.'; +$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; $lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)'; +$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; $lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P'; +$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; $lang['station_location_power'] = 'Station Power (W)'; $lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; $lang['station_location_emptylog'] = 'Empty Log'; @@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr $lang['station_location_county'] = 'Station County'; $lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; $lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: IO87IP. If you don't know your grid square then click here!"; +$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; $lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; $lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; $lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; diff --git a/application/language/french/account_lang.php b/application/language/french/account_lang.php index 9f5dd6a33..c559846ee 100644 --- a/application/language/french/account_lang.php +++ b/application/language/french/account_lang.php @@ -32,7 +32,7 @@ $lang['account_last_name'] = "Prénom"; $lang['account_callsign'] = "Indicatif"; $lang['account_gridsquare'] = "Locator"; -$lang['account_cloudlog_preferences'] = "Préférences Cloudlog"; +$lang['account_wavelog_preferences'] = "Préférences Wavelog"; $lang['account_timezone'] = "Fuseau horaire"; $lang['account_date_format'] = "Format de la date"; $lang['account_log_end_time'] = "Enregistrer les heures de fin des QSO séparément"; @@ -46,8 +46,8 @@ $lang['account_quicklog_enter_search'] = "Recherche l'indicatif"; $lang['account_measurement_preferences'] = "Unité de mesure"; $lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = "(Sélectionnez le format de date à afficher)"; $lang['account_choose_which_unit_distances_will_be_shown_in'] = "(Sélectionner l'unité de mesure à afficher)"; -$lang['account_cloudlog_language'] = "Langue utilisée par Cloudlog"; -$lang['account_choose_cloudlog_language'] = "(Sélectionner la langue à utiliser)"; +$lang['account_wavelog_language'] = "Langue utilisée par Wavelog"; +$lang['account_choose_wavelog_language'] = "(Sélectionner la langue à utiliser)"; $lang['account_main_menu'] = "Menu principal"; $lang['account_show_notes_in_the_main_menu'] = "Voir les notes dans le main principal"; @@ -100,7 +100,7 @@ $lang['account_confirm_password'] = "Mot de passe confirmé"; $lang['account_forgot_your_password'] = "Mot de passe oublié ?"; -$lang['account_login_to_cloudlog'] = "Connexion à Cloudlog"; +$lang['account_login_to_wavelog'] = "Connexion à Wavelog"; $lang['account_login'] = "Login"; $lang['account_mastodon'] = "Mastodon Serveur"; @@ -112,7 +112,7 @@ $lang['account_gridmap_default_band'] = "Bandes"; $lang['account_qsl_settings'] = "Méthode QSL"; $lang['account_winkeyer'] = "Winkeyer"; -$lang['account_winkeyer_hint'] = "REMARQUE : La prise en charge de Winkeyer dans Cloudlog est très expérimentale, lisez d'abord le wiki avant de l'activer https://github.com/magicbug/Cloudlog/wiki/Winkey"; +$lang['account_winkeyer_hint'] = "REMARQUE : La prise en charge de Winkeyer dans Wavelog est très expérimentale, lisez d'abord le wiki avant de l'activer https://github.com/wavelog/wavelog/wiki/Winkey"; $lang['account_winkeyer_enabled'] = "Activer Winkeyer"; $lang['account_map_params'] = "Paramètre de la carte"; diff --git a/application/language/french/adif_lang.php b/application/language/french/adif_lang.php index d603eed3d..7dc534640 100644 --- a/application/language/french/adif_lang.php +++ b/application/language/french/adif_lang.php @@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "Indiquer que les QSO importés ont été tél $lang['adif_mark_imported_clublog'] = "Indiquer que les QSO importés ont été téléchargés dans le journal Clublog"; $lang['adif_dxcc_from_adif'] = "Utiliser l'information du DXCC issue du fichier ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "(Si cochée, Cloudlog tentera de déterminer automatiquement les informations DXCC.)"; +$lang['adif_dxcc_from_adif_hint'] = "(Si cochée, Wavelog tentera de déterminer automatiquement les informations DXCC.)"; $lang['adif_always_use_login_call_as_op'] = "Toujours utiliser l'indicatif de connexion comme nom d'opérateur lors de l'import"; $lang['adif_ignore_station_call'] = "Ignorer l'indicatif de la station lors de l'import"; -$lang['adif_ignore_station_call_hint'] = "(Si cochée, Cloudlog tentera d'importer TOUS les QSO de l'ADIF, qu'ils correspondent ou non à l'emplacement de la station choisie)"; +$lang['adif_ignore_station_call_hint'] = "(Si cochée, Wavelog tentera d'importer TOUS les QSO de l'ADIF, qu'ils correspondent ou non à l'emplacement de la station choisie)"; $lang['adif_upload'] = "Importer"; @@ -94,10 +94,10 @@ $lang['only_confirmed_qsos'] = "Importez uniquement les données DOK des QSO con $lang['only_confirmed_qsos_hint'] = "(Décoché, si vous souhaitez également mettre à jour DOK, avec les données des QSO non confirmés dans DCL)"; $lang['overwrite_by_dcl'] = "Remplacer le DOC existant dans le journal par DCL (si différent)"; -$lang['overwrite_by_dcl_hint'] = "(Si cochée, Cloudlog écrasera de force le DOK existant par le DOK du journal DCL)"; +$lang['overwrite_by_dcl_hint'] = "(Si cochée, Wavelog écrasera de force le DOK existant par le DOK du journal DCL)"; $lang['ignore_ambiguous'] = "Ignorer les QSO qui ne correspondent pas"; -$lang['ignore_ambiguous_hint'] = "(Si non cochée, les informations sur les QSO qui n'ont pas pu être trouvées dans Cloudlog seront affichées)"; +$lang['ignore_ambiguous_hint'] = "(Si non cochée, les informations sur les QSO qui n'ont pas pu être trouvées dans Wavelog seront affichées)"; /* ___________________________________________________________________________________________ diff --git a/application/language/french/admin_lang.php b/application/language/french/admin_lang.php index ab27cde86..bae3d9433 100644 --- a/application/language/french/admin_lang.php +++ b/application/language/french/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['admin_user_line1'] = "Cloudlog a besoin d'au moins un utilisateur configuré pour fonctionner."; -$lang['admin_user_line2'] = "Les utilisateurs peuvent se voir attribuer des rôles qui leur donnent différentes autorisations, telles que l'ajout de QSO au journal de trafic et l'accès aux API Cloudlog."; +$lang['admin_user_line1'] = "Wavelog a besoin d'au moins un utilisateur configuré pour fonctionner."; +$lang['admin_user_line2'] = "Les utilisateurs peuvent se voir attribuer des rôles qui leur donnent différentes autorisations, telles que l'ajout de QSO au journal de trafic et l'accès aux API Wavelog."; $lang['admin_user_line3'] = "L'utilisateur actuellement connecté est affiché en haut à droite de chaque page."; $lang['admin_user_line4'] = "With the password reset button, you can send a user an email containing a link to reset their password. To achieve this, ensure that the email settings in the global options are configured correctly."; diff --git a/application/language/french/awards_lang.php b/application/language/french/awards_lang.php index 208a52726..764b82408 100644 --- a/application/language/french/awards_lang.php +++ b/application/language/french/awards_lang.php @@ -49,7 +49,7 @@ ________________________________________________________________________________ $lang['awards_dxcc_description_ln1'] = "DXCC Award"; $lang['awards_dxcc_description_ln2'] = "DXCC stands for 'DX Century Club,' an award based on worked countries. The DXCC List is based on an article created in 1935 by Clinton B. DeSoto, W1CBD, titled 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Cloudlog. Be aware that these DXCC entities are outdated and no longer valid."; +$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Wavelog. Be aware that these DXCC entities are outdated and no longer valid."; /* @@ -95,7 +95,7 @@ ________________________________________________________________________________ */ $lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Cloudlog."; +$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; $lang['awards_sig_description_ln3'] = "The reason for this is that the common ADIF format provides only a few dedicated fields for certain awards. SIG still makes it possible to use and evaluate all other types of signature markers."; $lang['awards_sig_description_ln4'] = "In the QSO processing, you will find two fields: 'SIG' contains the actual marker, which is also visible in the award evaluation, and 'SIG INFO,' which contains a description of the signature. Both fields are freely customizable."; diff --git a/application/language/french/general_words_lang.php b/application/language/french/general_words_lang.php index 59ce6705d..d85e944eb 100644 --- a/application/language/french/general_words_lang.php +++ b/application/language/french/general_words_lang.php @@ -110,8 +110,8 @@ $lang['general_total_distance'] = "Distance Totale"; // PHP Upload Warning $lang['gen_max_file_upload_size'] = "La taille maximum d'un fichier à télécharger est"; -// Cloudlog Terms -$lang['cloudlog_station_profile'] = "Profil de la Station"; +// Wavelog Terms +$lang['wavelog_station_profile'] = "Profil de la Station"; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/french/lotw_lang.php b/application/language/french/lotw_lang.php index 58ba91335..de9de8fc8 100644 --- a/application/language/french/lotw_lang.php +++ b/application/language/french/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = "Les fichiers de log doivent être au fo $lang['lotw_pull_lotw_data_for_me'] = "Récuperer mes données LoTW"; $lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; -$lang['lotw_report_download_overview_helptext'] = "Cloudlog utilisera le nom d'utilisateur et le mot de passe LoTW stockés dans votre profil utilisateur pour télécharger le journal vers LoTW.
Les téléchargements du journal Cloudlog auront toutes les confirmations depuis la date choisie, ou depuis votre dernière confirmation LoTW (récupérée de votre journal), jusqu'à présent."; +$lang['lotw_report_download_overview_helptext'] = "Wavelog utilisera le nom d'utilisateur et le mot de passe LoTW stockés dans votre profil utilisateur pour télécharger le journal vers LoTW.
Les téléchargements du journal Wavelog auront toutes les confirmations depuis la date choisie, ou depuis votre dernière confirmation LoTW (récupérée de votre journal), jusqu'à présent."; // Buttons $lang['lotw_btn_lotw_import'] = "Import LoTW"; diff --git a/application/language/french/options_lang.php b/application/language/french/options_lang.php index a4f8b3cd0..c72f036d7 100644 --- a/application/language/french/options_lang.php +++ b/application/language/french/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Cloudlog Options'; -$lang['options_message1'] = 'Cloudlog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.'; +$lang['options_wavelog_options'] = 'Wavelog Options'; +$lang['options_message1'] = 'Wavelog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.'; $lang['options_appearance'] = 'Appearance'; $lang['options_theme'] = 'Theme'; @@ -42,8 +42,8 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully."; $lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again."; $lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails."; $lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL."; -$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'"; +$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'"; $lang['options_smtp_host_hint'] = "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')"; $lang['options_smtp_port_hint'] = "The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is used -> '465'"; $lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; diff --git a/application/language/french/qso_lang.php b/application/language/french/qso_lang.php index 567fde91b..0af6ead3f 100644 --- a/application/language/french/qso_lang.php +++ b/application/language/french/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Par exemple: DA/NW-357'; $lang['qso_dok_helptext'] = 'Par exemple: Q03'; -$lang['qso_notes_helptext'] = 'A noter : le contenu est utilisé par Cloudlog uniquement et n\'est pas exporté vers d\'autre services'; +$lang['qso_notes_helptext'] = 'A noter : le contenu est utilisé par Wavelog uniquement et n\'est pas exporté vers d\'autre services'; $lang['qsl_notes_helptext'] = 'This note content is exported to QSL services like eqsl.cc.'; $lang['qso_eqsl_qslmsg_helptext'] = "Récupérer le message par défaut pour ce lieu de station."; @@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "What is that?"; $lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)"; $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and efficiently. Due to its syntax, only a minimum of input is required to log many QSOs with as little effort as possible."; $lang['qso_simplefle_info_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs."; -$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found here."; +$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Wavelog. Information about the syntax and how FLE works can be found here."; $lang['qso_simplefle_qso_data'] = "QSO Data"; $lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; $lang['qso_simplefle_qso_list'] = "QSO List"; @@ -67,7 +67,7 @@ $lang['qso_simplefle_utc_time'] = "Current UTC Time"; $lang['qso_simplefle_enter_the_data'] = "Enter the Data"; $lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; $lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Cloudlog"; +$lang['qso_simplefle_save'] = "Save in Wavelog"; $lang['qso_simplefle_clear'] = "Clear Logging Session"; $lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; @@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please n $lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; $lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; $lang['qso_simplefle_syntax_help_ln4'] = "To begin, ensure you have already filled in the form on the left with the date, station call, and operator's call. The main data includes the band (or QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the first QSO, which is essentially the callsign."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 2M0SQL on 20m SSB."; +$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; $lang['qso_simplefle_syntax_help_ln6'] = "If you don't provide any RST information, the syntax will use 59 (599 for data). Our next QSO wasn't 59 on both sides, so we provide the information with the sent RST first. It was 2 minutes later than the first QSO."; $lang['qso_simplefle_syntax_help_ln7'] = "The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We write down 6 because this is the only data that changed here. The information about band and mode didn't change, so this data is omitted."; $lang['qso_simplefle_syntax_help_ln8'] = "For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but still on SSB. If no RST information is given, the syntax will use 59 for every new QSO. Therefore we can add another QSO which took place at the exact same time two days later. The date must be in format YYYY-MM-DD."; diff --git a/application/language/french/station_lang.php b/application/language/french/station_lang.php index 6fe0fbe60..ee5145d5f 100644 --- a/application/language/french/station_lang.php +++ b/application/language/french/station_lang.php @@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the $lang['station_logbooks_view_public'] = "View Public Page for Logbook: "; $lang['station_logbooks_create_name'] = "Station Logbook Name"; $lang['station_logbooks_create_name_hint'] = "You can call a station logbook anything."; -$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (IO87IP)"; +$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (HM54ip)"; $lang['station_logbooks_edit_name_update'] = "Update Station Logbook Name"; $lang['station_logbooks_public_slug'] = "Public Slug"; $lang['station_logbooks_public_slug_hint'] = "Setting a public slug allows you to share your logbook with anyone via a custom website address, this slug can contain letters & numbers only."; @@ -57,11 +57,11 @@ $lang['station_location_edit'] = 'Edit Station Location: '; $lang['station_location_updated_suff'] = "mis à jour."; $lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.'; $lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.'; +$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; $lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)'; +$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; $lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P'; +$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; $lang['station_location_power'] = 'Station Power (W)'; $lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; $lang['station_location_emptylog'] = 'Empty Log'; @@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr $lang['station_location_county'] = 'Station County'; $lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; $lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: IO87IP. If you don't know your grid square then click here!"; +$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; $lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; $lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; $lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; diff --git a/application/language/german/account_lang.php b/application/language/german/account_lang.php index e9e4cac61..7874653d2 100644 --- a/application/language/german/account_lang.php +++ b/application/language/german/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Rufzeichen'; $lang['account_gridsquare'] = 'Planquadrat'; -$lang['account_cloudlog_preferences'] = 'Cloudlog Einstellungen'; +$lang['account_wavelog_preferences'] = 'Wavelog Einstellungen'; $lang['account_timezone'] = 'Zeitzone'; $lang['account_date_format'] = 'Datumsformat'; $lang['account_log_end_time'] = 'Logge Endzeiten für QSOs separat'; @@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Suche Rufzeichen"; $lang['account_measurement_preferences'] = 'Entfernungsformat'; $lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Wähle, wie Datumsfelder angezeigt werden sollen, wenn du eingeloggt bist.'; $lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Wähle, in welcher Einheit Entfernungen angezeigt werden sollen.'; -$lang['account_cloudlog_language'] = 'Cloudlog Sprache'; -$lang['account_choose_cloudlog_language'] = 'Wähle eine Sprache für Cloudlog.'; +$lang['account_wavelog_language'] = 'Wavelog Sprache'; +$lang['account_choose_wavelog_language'] = 'Wähle eine Sprache für Wavelog.'; $lang['account_main_menu'] = 'Menü Optionen'; $lang['account_show_notes_in_the_main_menu'] = 'Zeige Notizen im Hauptmenü'; @@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Bestätige Passwort'; $lang['account_forgot_your_password'] = 'Passwort vergessen?'; -$lang['account_login_to_cloudlog'] = 'Anmeldung bei Cloudlog'; +$lang['account_login_to_wavelog'] = 'Anmeldung bei Wavelog'; $lang['account_login'] = 'Anmeldung'; $lang['account_mastodon'] = 'Mastodonserver'; @@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Standardband'; $lang['account_qsl_settings'] = 'Standard QSL-Methoden'; $lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Die Winkeyer Unterstützung in Cloudlog ist sehr experimentell. Lese zuerst den Wikieintrag auf https://github.com/magicbug/Cloudlog/wiki/Winkey bevor du ihn einschaltest."; +$lang['account_winkeyer_hint'] = "Die Winkeyer Unterstützung in Wavelog ist sehr experimentell. Lese zuerst den Wikieintrag auf https://github.com/wavelog/wavelog/wiki/Winkey bevor du ihn einschaltest."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Eingeschaltet"; $lang['account_map_params'] = "Karten Einstellungen"; diff --git a/application/language/german/adif_lang.php b/application/language/german/adif_lang.php index 55ef8feeb..b976f019d 100644 --- a/application/language/german/adif_lang.php +++ b/application/language/german/adif_lang.php @@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "Markiere hochgeladene QSO als bereits zu QRZ. $lang['adif_mark_imported_clublog'] = "Markiere hochgeladene QSO als bereits zu Clublog hochgeladen"; $lang['adif_dxcc_from_adif'] = "Benutze die DXCC Informationen aus der ADIF Datei"; -$lang['adif_dxcc_from_adif_hint'] = "Wenn diese Option nicht ausgewählt ist, wird Cloudlog versuchen die DXCC Informationen automatisch zu ermitteln."; +$lang['adif_dxcc_from_adif_hint'] = "Wenn diese Option nicht ausgewählt ist, wird Wavelog versuchen die DXCC Informationen automatisch zu ermitteln."; $lang['adif_always_use_login_call_as_op'] = "Nutze während des Import immer das eingeloggte Rufzeichen als Operator-Name"; $lang['adif_ignore_station_call'] = "Ignoriere das Stations Rufzeichen beim Import"; -$lang['adif_ignore_station_call_hint'] = "Wenn diese Option ausgewählt ist, wirdCloudlog versuchen alle QSO hochzuladen, unabhängig davon, ob sie mit dem aktiven Stationsstandort zusammenpassen."; +$lang['adif_ignore_station_call_hint'] = "Wenn diese Option ausgewählt ist, wirdWavelog versuchen alle QSO hochzuladen, unabhängig davon, ob sie mit dem aktiven Stationsstandort zusammenpassen."; $lang['adif_upload'] = "Hochladen"; @@ -94,7 +94,7 @@ $lang['only_confirmed_qsos'] = "Importiere nur DOK Informationen von QSOs, die a $lang['only_confirmed_qsos_hint'] = "Deaktiviere diese Option, um auch DOK Infos von QSOS zu importieren, die auf DCL nicht bestätig sind."; $lang['overwrite_by_dcl'] = "Überschreibe existierende DOK im Logbuch durch DCL (wenn unterschiedlich)."; -$lang['overwrite_by_dcl_hint'] = "Wenn aktiviert, wird Cloudlog den existierenden DOK mit dem DOK aus dem DCL überschreiben."; +$lang['overwrite_by_dcl_hint'] = "Wenn aktiviert, wird Wavelog den existierenden DOK mit dem DOK aus dem DCL überschreiben."; $lang['ignore_ambiguous'] = "Ignoriere QSOs, die nicht eindeutig zugeordnet werden können."; $lang['ignore_ambiguous_hint'] = "Wenn deaktiviert, werden auch Infos zu QSOs angezeigt, die im Logbuch nicht gefunden werden konnten."; diff --git a/application/language/german/admin_lang.php b/application/language/german/admin_lang.php index f56b36d3b..a659eb5c1 100644 --- a/application/language/german/admin_lang.php +++ b/application/language/german/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('Direkter Zugriff auf Skripte ist nicht erlaubt'); -$lang['admin_user_line1'] = 'Es muss mindestens ein Benutzer konfiguriert sein, damit Cloudlog funktioniert.'; -$lang['admin_user_line2'] = 'Benutzer können verschiedene Rollen zugewiesen bekommen, die ihnen unterschiedliche Rechte geben wie QSOs zum Logbuch hinzuzufügen und die APIs von Cloudlog zu benutzen'; +$lang['admin_user_line1'] = 'Es muss mindestens ein Benutzer konfiguriert sein, damit Wavelog funktioniert.'; +$lang['admin_user_line2'] = 'Benutzer können verschiedene Rollen zugewiesen bekommen, die ihnen unterschiedliche Rechte geben wie QSOs zum Logbuch hinzuzufügen und die APIs von Wavelog zu benutzen'; $lang['admin_user_line3'] = 'Der aktuell angemeldete Benutzer wird oben rechts auf jeder Seite angezeigt.'; $lang['admin_user_line4'] = "Mit dem Passwort Reset Knopf kannst du dem Benutzer eine E-Mail mit einem Passwort-Reset Link zuschicken. Dafür müssen die E-Mail Einstellungen in den globalen Optionen korrekt eingerichtet sein."; diff --git a/application/language/german/awards_lang.php b/application/language/german/awards_lang.php index 54f1b3c9a..a6d340702 100644 --- a/application/language/german/awards_lang.php +++ b/application/language/german/awards_lang.php @@ -49,7 +49,7 @@ ________________________________________________________________________________ $lang['awards_dxcc_description_ln1'] = "DXCC Diplom"; $lang['awards_dxcc_description_ln2'] = "DXCC steht für 'DX Century Club', eine Auszeichnung, die auf gearbeiteten Ländern basiert. Die DXCC-Liste basiert auf einem Artikel, der 1935 von Clinton B. DeSoto, W1CBD, mit dem Titel 'How to Count Countries Worked, A New DX Scoring System' erstellt wurde."; $lang['awards_dxcc_description_ln3'] = "Sie finden alle Informationen zum DXCC Diplom auf der ARRL-Website."; -$lang['awards_dxcc_description_ln4'] = "Wichtiger Hinweis: Im Laufe der Zeit haben sich die Kriterien für die DXCC-Liste geändert. Die Liste bleibt unverändert, bis eine Einheit die Kriterien nicht mehr erfüllt, woraufhin sie in die Gelöschte Liste verschoben wird. Sie finden gelöschte DXCC-Einheiten auch in den Listen in Cloudlog. Beachten Sie, dass diese DXCC-Einheiten veraltet und nicht mehr gültig sind."; +$lang['awards_dxcc_description_ln4'] = "Wichtiger Hinweis: Im Laufe der Zeit haben sich die Kriterien für die DXCC-Liste geändert. Die Liste bleibt unverändert, bis eine Einheit die Kriterien nicht mehr erfüllt, woraufhin sie in die Gelöschte Liste verschoben wird. Sie finden gelöschte DXCC-Einheiten auch in den Listen in Wavelog. Beachten Sie, dass diese DXCC-Einheiten veraltet und nicht mehr gültig sind."; /* @@ -95,7 +95,7 @@ ________________________________________________________________________________ */ $lang['awards_sig_description_ln1'] = "SIG-Information"; -$lang['awards_sig_description_ln2'] = "Die SIG- oder Signature-Kategorie ermöglicht die Verwendung beliebiger 'Diplom-Identifikationen' für Diplome, die nicht in Cloudlog implementiert sind."; +$lang['awards_sig_description_ln2'] = "Die SIG- oder Signature-Kategorie ermöglicht die Verwendung beliebiger 'Diplom-Identifikationen' für Diplome, die nicht in Wavelog implementiert sind."; $lang['awards_sig_description_ln3'] = "Der Grund dafür ist, dass das gängige ADIF-Format nur wenige dedizierte Felder für bestimmte Diplome bietet. SIG ermöglicht es dennoch, alle anderen Arten von Signaturmarkierungen zu verwenden und auszuwerten."; $lang['awards_sig_description_ln4'] = "Im QSO-Verarbeitung finden Sie zwei Felder: 'SIG' enthält die tatsächliche Markierung, die auch in der Auswertung der Auszeichnung sichtbar ist, und 'SIG INFO', das eine Beschreibung der Signatur enthält. Beide Felder sind frei anpassbar."; diff --git a/application/language/german/general_words_lang.php b/application/language/german/general_words_lang.php index 19a1c1967..58d8c9ba7 100644 --- a/application/language/german/general_words_lang.php +++ b/application/language/german/general_words_lang.php @@ -110,8 +110,8 @@ $lang['general_total_distance'] = 'Entfernung'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Die max. Dateigrösse für Uploads beträgt '; -// Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Stationsprofil'; +// Wavelog Terms +$lang['wavelog_station_profile'] = 'Stationsprofil'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/german/lotw_lang.php b/application/language/german/lotw_lang.php index 52f985b6e..fde758d20 100644 --- a/application/language/german/lotw_lang.php +++ b/application/language/german/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Logdateien müssen den Dateityp .adi ha $lang['lotw_pull_lotw_data_for_me'] = 'Lade LoTW-Daten für mich'; $lang['lotw_select_callsign'] = 'Rufzeichen, für das LoTW Bestätigungen geladen werden sollen'; -$lang['lotw_report_download_overview_helptext'] = 'Cloudlog nutzt Benutzername und Passwort, welche in Deinem Benutzerprofil gespeichert sind, um einen Report vom LoTW zu laden. Der Report, den Cloudlog lädt, enthält alle Bestätigungen seit dem gewählten Datum oder seit der letzen LoTW-Bestätigung (wird aus Deinem Log extrahiert) bis jetzt.'; +$lang['lotw_report_download_overview_helptext'] = 'Wavelog nutzt Benutzername und Passwort, welche in Deinem Benutzerprofil gespeichert sind, um einen Report vom LoTW zu laden. Der Report, den Wavelog lädt, enthält alle Bestätigungen seit dem gewählten Datum oder seit der letzen LoTW-Bestätigung (wird aus Deinem Log extrahiert) bis jetzt.'; // Buttons $lang['lotw_btn_lotw_import'] = 'LoTW-Import'; diff --git a/application/language/german/options_lang.php b/application/language/german/options_lang.php index c6055f53b..3ccc84e55 100644 --- a/application/language/german/options_lang.php +++ b/application/language/german/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('Direkter Zugriff auf Skripte ist nicht erlaubt'); -$lang['options_cloudlog_options'] = 'Cloudlog Optionen'; -$lang['options_message1'] = 'Cloudlog Optionen sind globe Einstellungen, die für alle Benutzer der Installation genutzt werden. Sie können auf Benutzerebene überschrieben werden, wenn eine entsprechende Option auf Benutzerebene vorhanden ist.'; +$lang['options_wavelog_options'] = 'Wavelog Optionen'; +$lang['options_message1'] = 'Wavelog Optionen sind globe Einstellungen, die für alle Benutzer der Installation genutzt werden. Sie können auf Benutzerebene überschrieben werden, wenn eine entsprechende Option auf Benutzerebene vorhanden ist.'; $lang['options_appearance'] = 'Erscheinungsbild'; $lang['options_theme'] = 'Thema'; @@ -42,8 +42,8 @@ $lang['options_mail_settings_saved'] = "Die Einstellungen wurden erfolgreich ges $lang['options_mail_settings_failed'] = "Beim Speichern ist was schief gelaufen. Probiere es erneut."; $lang['options_outgoing_protocol_hint'] = "Das Protokoll, mit dem E-Mails versendet werden."; $lang['options_smtp_encryption_hint'] = "Wähle ob E-Mails mit TLS oder SSL versendet werden sollen."; -$lang['options_email_address_hint'] = "Die E-Mail Adresse von der die Mails versendet werden, z.B. 'cloudlog@example.com'"; -$lang['options_email_sender_name_hint'] = "Der Name des Absenders, z.B. 'Cloudlog'"; +$lang['options_email_address_hint'] = "Die E-Mail Adresse von der die Mails versendet werden, z.B. 'wavelog@example.com'"; +$lang['options_email_sender_name_hint'] = "Der Name des Absenders, z.B. 'Wavelog'"; $lang['options_smtp_host_hint'] = "Der Hostname des Mailservers, z.B. 'mail.example.com' (ohne 'ssl://' or 'tls://')"; $lang['options_smtp_port_hint'] = "Der SMTP Port des Mailservers, z.B. für TLS -> '587', für SSL -> '465'"; $lang['options_smtp_username_hint'] = "Der Benutzername um sich am Mailserver anzumelden. Normalerweise ist dies die E-Mail Adresse."; diff --git a/application/language/german/qso_lang.php b/application/language/german/qso_lang.php index 6224b7213..d46748abc 100644 --- a/application/language/german/qso_lang.php +++ b/application/language/german/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Zum Beispiel: DA/NW-357'; $lang['qso_dok_helptext'] = 'Zum Beispiel: Q03'; -$lang['qso_notes_helptext'] = 'Notizeninhalt wird nur innerhalb von Cloudlog genutzt und nicht an andere Dienste weitergegeben.'; +$lang['qso_notes_helptext'] = 'Notizeninhalt wird nur innerhalb von Wavelog genutzt und nicht an andere Dienste weitergegeben.'; $lang['qsl_notes_helptext'] = 'Dieser Notizeninhalt wird an QSL Services wie eqsl.cc exportiert.'; $lang['qso_eqsl_qslmsg_helptext'] = "Setze die eQSL Nachricht auf den Standardtext zurück."; @@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "Was ist das?"; $lang['qso_simplefle_info_ln1'] = "Einfaches Fast Log Entry (FLE)"; $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry' oder einfach 'FLE' ist ein System um QSO sehr schnell und effizient zu loggen. Aufgrund seiner Syntax sind nur minimale Eingaben erforderlich, um mit möglichst geringem Aufwand viele QSOs zu erfassen."; $lang['qso_simplefle_info_ln3'] = "FLE wurde ursprünglich von DF3CB geschrieben. Auf seiner Website bietet er ein Programm für Windows an. Simple FLE wurde von OK2CQR auf Basis des FLE von DF3CB geschrieben und bietet eine Webapplikation zum Erfassen von QSOs."; -$lang['qso_simplefle_info_ln4'] = "Ein üblicher Anwendungsfall ist, wenn Sie Ihre Papier-Logbücher von einer Outdoor-Aktion erfassen müssen und SimpleFLE nun auch in Cloudlog verfügbar. Informationen über die allgemeine Syntax und Handhabung gibt es hier."; +$lang['qso_simplefle_info_ln4'] = "Ein üblicher Anwendungsfall ist, wenn Sie Ihre Papier-Logbücher von einer Outdoor-Aktion erfassen müssen und SimpleFLE nun auch in Wavelog verfügbar. Informationen über die allgemeine Syntax und Handhabung gibt es hier."; $lang['qso_simplefle_qso_data'] = "QSO Daten"; $lang['qso_simplefle_qso_date_hint'] = "Wenn du kein Datum auswählst, wird das heutige Datum verwendet."; $lang['qso_simplefle_qso_list'] = "QSO Liste"; @@ -67,7 +67,7 @@ $lang['qso_simplefle_utc_time'] = "Aktuelle UTC Zeit"; $lang['qso_simplefle_enter_the_data'] = "Gibt hier die Daten ein"; $lang['qso_simplefle_syntax_help_close_w_sample'] = "Schliesse und Lade Beispiel Daten"; $lang['qso_simplefle_reload'] = "Aktualisiere QSO Liste"; -$lang['qso_simplefle_save'] = "Speichere in Cloudlog"; +$lang['qso_simplefle_save'] = "Speichere in Wavelog"; $lang['qso_simplefle_clear'] = "Lösche QSO Daten"; $lang['qso_simplefle_refs_hint'] = "Die Ref. kann entweder SOTA, IOTA, POTA oder WWFF sein."; @@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Bevor du ein QSO loggst, beachte bitte $lang['qso_simplefle_syntax_help_ln2'] = "- Jedes neue QSO sollte in einer neuen Zeile stehen."; $lang['qso_simplefle_syntax_help_ln3'] = "- In jeder neuen Zeile schreibst du nur Daten, die sich vom vorherigen QSO geändert haben."; $lang['qso_simplefle_syntax_help_ln4'] = "Um zu beginnen, stelle sicher, dass du die Felder auf der linken Seite bereits mit Datum, Stationsrufzeichen/-standort und Rufzeichen des Operators ausgefüllt hast. Die wichtigsten Daten umfassen das Band (oder QRG in MHz, z.B. '7.145'), Mode und Zeit. Nach der Zeit gibst du das erste QSO an, was im wesentlichen das Rufzeichen ist."; -$lang['qso_simplefle_syntax_help_ln5'] = "Zum Beispiel ein QSO um 21:34 Uhr (UTC) mit 2M0SQL auf 20m SSB."; +$lang['qso_simplefle_syntax_help_ln5'] = "Zum Beispiel ein QSO um 21:34 Uhr (UTC) mit 4W7EST auf 20m SSB."; $lang['qso_simplefle_syntax_help_ln6'] = "Wenn du keine RST-Informationen angibst, verwendet die Syntax 59 (599 für Daten). Unser nächstes QSO war nicht auf beiden Seiten 59, also geben wir die Informationen zuerst mit gesendeter RST an. Es war 2 Minuten später als das erste QSO."; $lang['qso_simplefle_syntax_help_ln7'] = "Das erste QSO war um 21:34 Uhr, und das zweite 2 Minuten später um 21:36 Uhr. Wir schreiben '6' für die geänderte Minute, da dies die einzige geänderte Information ist. Die Eingaben zum Band und Mode haben sich nicht geändert, daher entfallen diese Daten hier."; $lang['qso_simplefle_syntax_help_ln8'] = "Für unser nächstes QSO um 21:40 Uhr am 14.05.2021 haben wir das Band auf 40m geändert, sind aber immer noch auf SSB. Wenn keine RST-Informationen angegeben sind, verwendet die Syntax bei jedem neuen QSO 59. Daher können wir ein weiteres QSO hinzufügen welches um die exakt selbe Zeit zwei Tage später stattfand. Das Datum muss im Format YYYY-MM-DD eingegeben werden."; diff --git a/application/language/german/station_lang.php b/application/language/german/station_lang.php index 86846e851..bd9f6bad7 100644 --- a/application/language/german/station_lang.php +++ b/application/language/german/station_lang.php @@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Bist du sicher, dass du das folgende $lang['station_logbooks_view_public'] = "Zeige die öffentl. Seite für das Logbuch: "; $lang['station_logbooks_create_name'] = "Stationslogbuch Name"; $lang['station_logbooks_create_name_hint'] = "Du kannst das Stationslogbuch völlig frei benennen."; -$lang['station_logbooks_edit_name_hint'] = "Kurzname für das Stationslogbuch. Zum Beispiel: Home Log (IO87IP)"; +$lang['station_logbooks_edit_name_hint'] = "Kurzname für das Stationslogbuch. Zum Beispiel: Home Log (HM54ip)"; $lang['station_logbooks_edit_name_update'] = "Aktualisiere Stationslogbuch Name"; $lang['station_logbooks_public_slug'] = "Öffentlicher Link"; $lang['station_logbooks_public_slug_hint'] = "Mit einem öffentlichen Link kannst du dieses Logbuch mit jedem über eine eigene Seite teilen. Dieser Linkzusatz darf jedoch nur Buchstaben & Zahlen enthalten."; @@ -57,9 +57,9 @@ $lang['station_location_edit'] = 'Bearbeite Stationsstandort: '; $lang['station_location_updated_suff'] = ' aktualisiert.'; // nur letztes Wort im Satz "XYZ wurde aktualisiert" $lang['station_location_warning'] = 'Achtung: Du musst einen aktiven Stationsstandort auswählen. Gehe zu Rufzeichen -> Stationsstandorte um einen zu aktivieren.'; $lang['station_location_reassign_at'] = 'Bitte mache die Zuordnung in '; -$lang['station_location_warning_reassign'] = 'Aufgrund von Änderungen in Cloudlog musst du QSOs wieder einem Stationsstandort zuordnen.'; +$lang['station_location_warning_reassign'] = 'Aufgrund von Änderungen in Wavelog musst du QSOs wieder einem Stationsstandort zuordnen.'; $lang['station_location_name'] = 'Station Name'; -$lang['station_location_name_hint'] = 'Kurzname für den Stationsstandort. Zum Beispiel: Home (IO87IP)'; +$lang['station_location_name_hint'] = 'Kurzname für den Stationsstandort. Zum Beispiel: Home (HM54ip)'; $lang['station_location_callsign'] = 'Station Rufzeichen'; $lang['station_location_callsign_hint'] = 'Station Rufzeichen. Zum Beispiel: HB9HIL/P'; $lang['station_location_power'] = 'Station Sendeleistung (W)'; diff --git a/application/language/greek/account_lang.php b/application/language/greek/account_lang.php index d832b6ccd..0c7d59b80 100644 --- a/application/language/greek/account_lang.php +++ b/application/language/greek/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Callsign'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences'; +$lang['account_wavelog_preferences'] = 'Wavelog Preferences'; $lang['account_timezone'] = 'Timezone'; $lang['account_date_format'] = 'Date Format'; $lang['account_log_end_time'] = 'Log End Times for QSOs Separately'; @@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign"; $lang['account_measurement_preferences'] = 'Measurement preference'; $lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Select how you would like dates shown when logged into your account.'; $lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Choose which unit distances will be shown in'; -$lang['account_cloudlog_language'] = 'Cloudlog Language'; -$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.'; +$lang['account_wavelog_language'] = 'Wavelog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.'; $lang['account_main_menu'] = 'Menu Options'; $lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.'; @@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirm Password'; $lang['account_forgot_your_password'] = 'Forgot your password?'; -$lang['account_login_to_cloudlog'] = 'Login to Cloudlog'; +$lang['account_login_to_wavelog'] = 'Login to Wavelog'; $lang['account_login'] = 'Login'; $lang['account_mastodon'] = 'Mastodonserver'; @@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Default Band'; $lang['account_qsl_settings'] = 'Default QSL-Methods'; $lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/greek/adif_lang.php b/application/language/greek/adif_lang.php index 4000ec252..f2eddfeb6 100644 --- a/application/language/greek/adif_lang.php +++ b/application/language/greek/adif_lang.php @@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook $lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; $lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Cloudlog will attempt to determine DXCC information automatically."; +$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; $lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; $lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Cloudlog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; +$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; $lang['adif_upload'] = "Upload"; @@ -94,10 +94,10 @@ $lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL. $lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; $lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)"; -$lang['overwrite_by_dcl_hint'] = "If checked Cloudlog will forcibly overwrite existing DOK with DOK from DCL log."; +$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; $lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched"; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Cloudlog will be displayed."; +$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; /* ___________________________________________________________________________________________ diff --git a/application/language/greek/admin_lang.php b/application/language/greek/admin_lang.php index 3b43a6fee..f0510df7e 100644 --- a/application/language/greek/admin_lang.php +++ b/application/language/greek/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['admin_user_line1'] = 'Cloudlog needs at least one user configured in order to operate.'; -$lang['admin_user_line2'] = 'Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Cloudlog APIs.'; +$lang['admin_user_line1'] = 'Wavelog needs at least one user configured in order to operate.'; +$lang['admin_user_line2'] = 'Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Wavelog APIs.'; $lang['admin_user_line3'] = 'The currently logged-in user is displayed at the upper-right of each page.'; $lang['admin_user_line4'] = "With the password reset button, you can send a user an email containing a link to reset their password. To achieve this, ensure that the email settings in the global options are configured correctly."; diff --git a/application/language/greek/awards_lang.php b/application/language/greek/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/greek/awards_lang.php +++ b/application/language/greek/awards_lang.php @@ -49,7 +49,7 @@ ________________________________________________________________________________ $lang['awards_dxcc_description_ln1'] = "DXCC Award"; $lang['awards_dxcc_description_ln2'] = "DXCC stands for 'DX Century Club,' an award based on worked countries. The DXCC List is based on an article created in 1935 by Clinton B. DeSoto, W1CBD, titled 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Cloudlog. Be aware that these DXCC entities are outdated and no longer valid."; +$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Wavelog. Be aware that these DXCC entities are outdated and no longer valid."; /* @@ -95,7 +95,7 @@ ________________________________________________________________________________ */ $lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Cloudlog."; +$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; $lang['awards_sig_description_ln3'] = "The reason for this is that the common ADIF format provides only a few dedicated fields for certain awards. SIG still makes it possible to use and evaluate all other types of signature markers."; $lang['awards_sig_description_ln4'] = "In the QSO processing, you will find two fields: 'SIG' contains the actual marker, which is also visible in the award evaluation, and 'SIG INFO,' which contains a description of the signature. Both fields are freely customizable."; diff --git a/application/language/greek/general_words_lang.php b/application/language/greek/general_words_lang.php index f8094920c..d8338ed90 100644 --- a/application/language/greek/general_words_lang.php +++ b/application/language/greek/general_words_lang.php @@ -110,8 +110,8 @@ $lang['general_total_distance'] = 'Συνολική Απόσταση'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Τοποθεσία Σταθμού'; +// Wavelog Terms +$lang['wavelog_station_profile'] = 'Τοποθεσία Σταθμού'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/greek/lotw_lang.php b/application/language/greek/lotw_lang.php index ec4cf4fee..fb052d09f 100644 --- a/application/language/greek/lotw_lang.php +++ b/application/language/greek/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Τα αρχεία καταγραφής $lang['lotw_pull_lotw_data_for_me'] = 'Τραβήξτε δεδομένα LoTW για μένα'; $lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; -$lang['lotw_report_download_overview_helptext'] = 'Το Cloudlog θα χρησιμοποιήσει το όνομα χρήστη και τον κωδικό πρόσβασης LoTW που είναι αποθηκευμένα στο προφίλ χρήστη σας για να πραγματοποιήσει λήψη μιας αναφοράς από το LoTW για εσάς. Οι λήψεις αναφοράς Cloudlog θα έχουν όλες τις επιβεβαιώσεις από την επιλεγμένη ημερομηνία ή από την τελευταία επιβεβαίωση LoTW (που ελήφθη από το αρχείο καταγραφής σας), μέχρι τώρα.'; +$lang['lotw_report_download_overview_helptext'] = 'Το Wavelog θα χρησιμοποιήσει το όνομα χρήστη και τον κωδικό πρόσβασης LoTW που είναι αποθηκευμένα στο προφίλ χρήστη σας για να πραγματοποιήσει λήψη μιας αναφοράς από το LoTW για εσάς. Οι λήψεις αναφοράς Wavelog θα έχουν όλες τις επιβεβαιώσεις από την επιλεγμένη ημερομηνία ή από την τελευταία επιβεβαίωση LoTW (που ελήφθη από το αρχείο καταγραφής σας), μέχρι τώρα.'; // Buttons $lang['lotw_btn_lotw_import'] = 'Εισαγωγή LoTW'; diff --git a/application/language/greek/options_lang.php b/application/language/greek/options_lang.php index a4f8b3cd0..c72f036d7 100644 --- a/application/language/greek/options_lang.php +++ b/application/language/greek/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Cloudlog Options'; -$lang['options_message1'] = 'Cloudlog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.'; +$lang['options_wavelog_options'] = 'Wavelog Options'; +$lang['options_message1'] = 'Wavelog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.'; $lang['options_appearance'] = 'Appearance'; $lang['options_theme'] = 'Theme'; @@ -42,8 +42,8 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully."; $lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again."; $lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails."; $lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL."; -$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'"; +$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'"; $lang['options_smtp_host_hint'] = "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')"; $lang['options_smtp_port_hint'] = "The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is used -> '465'"; $lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; diff --git a/application/language/greek/qso_lang.php b/application/language/greek/qso_lang.php index 8b94c41f5..8ced35804 100644 --- a/application/language/greek/qso_lang.php +++ b/application/language/greek/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Για παράδειγμα: DA/NW-357'; $lang['qso_dok_helptext'] = 'Για παράδειγμα: Q03'; -$lang['qso_notes_helptext'] = 'Το περιεχόμενο σημείωσης χρησιμοποιείται μόνο στο Cloudlog και δεν εξάγεται σε άλλες υπηρεσίες.'; +$lang['qso_notes_helptext'] = 'Το περιεχόμενο σημείωσης χρησιμοποιείται μόνο στο Wavelog και δεν εξάγεται σε άλλες υπηρεσίες.'; $lang['qsl_notes_helptext'] = 'Αυτό το περιεχόμενο σημείωσης εξάγεται σε υπηρεσίες QSL όπως το eqsl.cc.'; $lang['qso_eqsl_qslmsg_helptext'] = "Get the default message for eQSL, for this station."; @@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "What is that?"; $lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)"; $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and efficiently. Due to its syntax, only a minimum of input is required to log many QSOs with as little effort as possible."; $lang['qso_simplefle_info_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs."; -$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found here."; +$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Wavelog. Information about the syntax and how FLE works can be found here."; $lang['qso_simplefle_qso_data'] = "QSO Data"; $lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; $lang['qso_simplefle_qso_list'] = "QSO List"; @@ -67,7 +67,7 @@ $lang['qso_simplefle_utc_time'] = "Current UTC Time"; $lang['qso_simplefle_enter_the_data'] = "Enter the Data"; $lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; $lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Cloudlog"; +$lang['qso_simplefle_save'] = "Save in Wavelog"; $lang['qso_simplefle_clear'] = "Clear Logging Session"; $lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; @@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please n $lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; $lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; $lang['qso_simplefle_syntax_help_ln4'] = "To begin, ensure you have already filled in the form on the left with the date, station call, and operator's call. The main data includes the band (or QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the first QSO, which is essentially the callsign."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 2M0SQL on 20m SSB."; +$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; $lang['qso_simplefle_syntax_help_ln6'] = "If you don't provide any RST information, the syntax will use 59 (599 for data). Our next QSO wasn't 59 on both sides, so we provide the information with the sent RST first. It was 2 minutes later than the first QSO."; $lang['qso_simplefle_syntax_help_ln7'] = "The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We write down 6 because this is the only data that changed here. The information about band and mode didn't change, so this data is omitted."; $lang['qso_simplefle_syntax_help_ln8'] = "For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but still on SSB. If no RST information is given, the syntax will use 59 for every new QSO. Therefore we can add another QSO which took place at the exact same time two days later. The date must be in format YYYY-MM-DD."; diff --git a/application/language/greek/station_lang.php b/application/language/greek/station_lang.php index 01acd54b3..1d80fedb1 100644 --- a/application/language/greek/station_lang.php +++ b/application/language/greek/station_lang.php @@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the $lang['station_logbooks_view_public'] = "View Public Page for Logbook: "; $lang['station_logbooks_create_name'] = "Station Logbook Name"; $lang['station_logbooks_create_name_hint'] = "You can call a station logbook anything."; -$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (IO87IP)"; +$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (HM54ip)"; $lang['station_logbooks_edit_name_update'] = "Update Station Logbook Name"; $lang['station_logbooks_public_slug'] = "Public Slug"; $lang['station_logbooks_public_slug_hint'] = "Setting a public slug allows you to share your logbook with anyone via a custom website address, this slug can contain letters & numbers only."; @@ -57,11 +57,11 @@ $lang['station_location_edit'] = 'Edit Station Location: '; $lang['station_location_updated_suff'] = ' Updated.'; $lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.'; $lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.'; +$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; $lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)'; +$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; $lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P'; +$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; $lang['station_location_power'] = 'Station Power (W)'; $lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; $lang['station_location_emptylog'] = 'Empty Log'; @@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr $lang['station_location_county'] = 'Station County'; $lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; $lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: IO87IP. If you don't know your grid square then click here!"; +$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; $lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; $lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; $lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; diff --git a/application/language/italian/account_lang.php b/application/language/italian/account_lang.php index 439380ef2..904d36097 100644 --- a/application/language/italian/account_lang.php +++ b/application/language/italian/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Callsign'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences'; +$lang['account_wavelog_preferences'] = 'Wavelog Preferences'; $lang['account_timezone'] = 'Timezone'; $lang['account_date_format'] = 'Date Format'; $lang['account_log_end_time'] = 'Log End Times for QSOs Separately'; @@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign"; $lang['account_measurement_preferences'] = 'Measurement preference'; $lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Select how you would like dates shown when logged into your account.'; $lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Choose which unit distances will be shown in'; -$lang['account_cloudlog_language'] = 'Cloudlog Language'; -$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.'; +$lang['account_wavelog_language'] = 'Wavelog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.'; $lang['account_main_menu'] = 'Menu Options'; $lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.'; @@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirm Password'; $lang['account_forgot_your_password'] = 'Forgot your password?'; -$lang['account_login_to_cloudlog'] = 'Login to Cloudlog'; +$lang['account_login_to_wavelog'] = 'Login to Wavelog'; $lang['account_login'] = 'Login'; $lang['account_mastodon'] = 'Mastodonserver'; @@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Default Band'; $lang['account_qsl_settings'] = 'Default QSL-Methods'; $lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/italian/adif_lang.php b/application/language/italian/adif_lang.php index 4000ec252..f2eddfeb6 100644 --- a/application/language/italian/adif_lang.php +++ b/application/language/italian/adif_lang.php @@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook $lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; $lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Cloudlog will attempt to determine DXCC information automatically."; +$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; $lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; $lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Cloudlog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; +$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; $lang['adif_upload'] = "Upload"; @@ -94,10 +94,10 @@ $lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL. $lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; $lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)"; -$lang['overwrite_by_dcl_hint'] = "If checked Cloudlog will forcibly overwrite existing DOK with DOK from DCL log."; +$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; $lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched"; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Cloudlog will be displayed."; +$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; /* ___________________________________________________________________________________________ diff --git a/application/language/italian/admin_lang.php b/application/language/italian/admin_lang.php index 3b43a6fee..f0510df7e 100644 --- a/application/language/italian/admin_lang.php +++ b/application/language/italian/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['admin_user_line1'] = 'Cloudlog needs at least one user configured in order to operate.'; -$lang['admin_user_line2'] = 'Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Cloudlog APIs.'; +$lang['admin_user_line1'] = 'Wavelog needs at least one user configured in order to operate.'; +$lang['admin_user_line2'] = 'Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Wavelog APIs.'; $lang['admin_user_line3'] = 'The currently logged-in user is displayed at the upper-right of each page.'; $lang['admin_user_line4'] = "With the password reset button, you can send a user an email containing a link to reset their password. To achieve this, ensure that the email settings in the global options are configured correctly."; diff --git a/application/language/italian/awards_lang.php b/application/language/italian/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/italian/awards_lang.php +++ b/application/language/italian/awards_lang.php @@ -49,7 +49,7 @@ ________________________________________________________________________________ $lang['awards_dxcc_description_ln1'] = "DXCC Award"; $lang['awards_dxcc_description_ln2'] = "DXCC stands for 'DX Century Club,' an award based on worked countries. The DXCC List is based on an article created in 1935 by Clinton B. DeSoto, W1CBD, titled 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Cloudlog. Be aware that these DXCC entities are outdated and no longer valid."; +$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Wavelog. Be aware that these DXCC entities are outdated and no longer valid."; /* @@ -95,7 +95,7 @@ ________________________________________________________________________________ */ $lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Cloudlog."; +$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; $lang['awards_sig_description_ln3'] = "The reason for this is that the common ADIF format provides only a few dedicated fields for certain awards. SIG still makes it possible to use and evaluate all other types of signature markers."; $lang['awards_sig_description_ln4'] = "In the QSO processing, you will find two fields: 'SIG' contains the actual marker, which is also visible in the award evaluation, and 'SIG INFO,' which contains a description of the signature. Both fields are freely customizable."; diff --git a/application/language/italian/general_words_lang.php b/application/language/italian/general_words_lang.php index 4d253f61b..95eeba3d6 100644 --- a/application/language/italian/general_words_lang.php +++ b/application/language/italian/general_words_lang.php @@ -110,8 +110,8 @@ $lang['general_total_distance'] = 'Distanza Totale'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Luogo Stazione'; +// Wavelog Terms +$lang['wavelog_station_profile'] = 'Luogo Stazione'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/italian/lotw_lang.php b/application/language/italian/lotw_lang.php index 18e06555f..68a2a940d 100644 --- a/application/language/italian/lotw_lang.php +++ b/application/language/italian/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'I file di log devono essere di tipo .ad $lang['lotw_pull_lotw_data_for_me'] = 'Ottieni dati da LoTW per me'; $lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; -$lang['lotw_report_download_overview_helptext'] ='Cloudlog userà il nome utente e password LoTW memorizzato nel tuo profilo per scaricare un report da LoTW per te. Il report scaricato da Cloudlog avrà tutte le conferme fino alla data scelta, o fino alla ultima conferma su LoTW (recuperato dal tuo log), fino ad ora.'; +$lang['lotw_report_download_overview_helptext'] ='Wavelog userà il nome utente e password LoTW memorizzato nel tuo profilo per scaricare un report da LoTW per te. Il report scaricato da Wavelog avrà tutte le conferme fino alla data scelta, o fino alla ultima conferma su LoTW (recuperato dal tuo log), fino ad ora.'; // Buttons $lang['lotw_btn_lotw_import'] = 'Importa LoTW'; diff --git a/application/language/italian/options_lang.php b/application/language/italian/options_lang.php index a4f8b3cd0..c72f036d7 100644 --- a/application/language/italian/options_lang.php +++ b/application/language/italian/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Cloudlog Options'; -$lang['options_message1'] = 'Cloudlog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.'; +$lang['options_wavelog_options'] = 'Wavelog Options'; +$lang['options_message1'] = 'Wavelog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.'; $lang['options_appearance'] = 'Appearance'; $lang['options_theme'] = 'Theme'; @@ -42,8 +42,8 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully."; $lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again."; $lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails."; $lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL."; -$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'"; +$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'"; $lang['options_smtp_host_hint'] = "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')"; $lang['options_smtp_port_hint'] = "The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is used -> '465'"; $lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; diff --git a/application/language/italian/qso_lang.php b/application/language/italian/qso_lang.php index 01f8b0739..564bf6ab6 100644 --- a/application/language/italian/qso_lang.php +++ b/application/language/italian/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Per esempio: DA/NW-357'; $lang['qso_dok_helptext'] = 'Per esempio: Q03'; -$lang['qso_notes_helptext'] = 'Il contenuto della nota viene utilizzato solo all interno di Cloudlog e non viene esportato in altri servizi.'; +$lang['qso_notes_helptext'] = 'Il contenuto della nota viene utilizzato solo all interno di Wavelog e non viene esportato in altri servizi.'; $lang['qsl_notes_helptext'] = 'Il contenuto di questa nota è esportato a servizi QSL come eqsl.cc.'; $lang['qso_eqsl_qslmsg_helptext'] = "Get the default message for eQSL, for this station."; @@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "What is that?"; $lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)"; $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and efficiently. Due to its syntax, only a minimum of input is required to log many QSOs with as little effort as possible."; $lang['qso_simplefle_info_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs."; -$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found here."; +$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Wavelog. Information about the syntax and how FLE works can be found here."; $lang['qso_simplefle_qso_data'] = "QSO Data"; $lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; $lang['qso_simplefle_qso_list'] = "QSO List"; @@ -67,7 +67,7 @@ $lang['qso_simplefle_utc_time'] = "Current UTC Time"; $lang['qso_simplefle_enter_the_data'] = "Enter the Data"; $lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; $lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Cloudlog"; +$lang['qso_simplefle_save'] = "Save in Wavelog"; $lang['qso_simplefle_clear'] = "Clear Logging Session"; $lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; @@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please n $lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; $lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; $lang['qso_simplefle_syntax_help_ln4'] = "To begin, ensure you have already filled in the form on the left with the date, station call, and operator's call. The main data includes the band (or QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the first QSO, which is essentially the callsign."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 2M0SQL on 20m SSB."; +$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; $lang['qso_simplefle_syntax_help_ln6'] = "If you don't provide any RST information, the syntax will use 59 (599 for data). Our next QSO wasn't 59 on both sides, so we provide the information with the sent RST first. It was 2 minutes later than the first QSO."; $lang['qso_simplefle_syntax_help_ln7'] = "The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We write down 6 because this is the only data that changed here. The information about band and mode didn't change, so this data is omitted."; $lang['qso_simplefle_syntax_help_ln8'] = "For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but still on SSB. If no RST information is given, the syntax will use 59 for every new QSO. Therefore we can add another QSO which took place at the exact same time two days later. The date must be in format YYYY-MM-DD."; diff --git a/application/language/italian/station_lang.php b/application/language/italian/station_lang.php index 01acd54b3..1d80fedb1 100644 --- a/application/language/italian/station_lang.php +++ b/application/language/italian/station_lang.php @@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the $lang['station_logbooks_view_public'] = "View Public Page for Logbook: "; $lang['station_logbooks_create_name'] = "Station Logbook Name"; $lang['station_logbooks_create_name_hint'] = "You can call a station logbook anything."; -$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (IO87IP)"; +$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (HM54ip)"; $lang['station_logbooks_edit_name_update'] = "Update Station Logbook Name"; $lang['station_logbooks_public_slug'] = "Public Slug"; $lang['station_logbooks_public_slug_hint'] = "Setting a public slug allows you to share your logbook with anyone via a custom website address, this slug can contain letters & numbers only."; @@ -57,11 +57,11 @@ $lang['station_location_edit'] = 'Edit Station Location: '; $lang['station_location_updated_suff'] = ' Updated.'; $lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.'; $lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.'; +$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; $lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)'; +$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; $lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P'; +$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; $lang['station_location_power'] = 'Station Power (W)'; $lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; $lang['station_location_emptylog'] = 'Empty Log'; @@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr $lang['station_location_county'] = 'Station County'; $lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; $lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: IO87IP. If you don't know your grid square then click here!"; +$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; $lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; $lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; $lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; diff --git a/application/language/polish/account_lang.php b/application/language/polish/account_lang.php index b163ed3f7..3b67d3355 100644 --- a/application/language/polish/account_lang.php +++ b/application/language/polish/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Callsign'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences'; +$lang['account_wavelog_preferences'] = 'Wavelog Preferences'; $lang['account_timezone'] = 'Timezone'; $lang['account_date_format'] = 'Date Format'; $lang['account_log_end_time'] = 'Log End Times for QSOs Separately'; @@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign"; $lang['account_measurement_preferences'] = 'Measurement preference'; $lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Select how you would like dates shown when logged into your account.'; $lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Choose which unit distances will be shown in'; -$lang['account_cloudlog_language'] = 'Cloudlog Language'; -$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.'; +$lang['account_wavelog_language'] = 'Wavelog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.'; $lang['account_main_menu'] = 'Menu Options'; $lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.'; @@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirm Password'; $lang['account_forgot_your_password'] = 'Forgot your password?'; -$lang['account_login_to_cloudlog'] = 'Login to Cloudlog'; +$lang['account_login_to_wavelog'] = 'Login to Wavelog'; $lang['account_login'] = 'Login'; $lang['account_mastodon'] = 'Mastodonserver'; @@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Default Band'; $lang['account_qsl_settings'] = 'Default QSL-Methods'; $lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/polish/adif_lang.php b/application/language/polish/adif_lang.php index 4000ec252..f2eddfeb6 100644 --- a/application/language/polish/adif_lang.php +++ b/application/language/polish/adif_lang.php @@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook $lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; $lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Cloudlog will attempt to determine DXCC information automatically."; +$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; $lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; $lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Cloudlog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; +$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; $lang['adif_upload'] = "Upload"; @@ -94,10 +94,10 @@ $lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL. $lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; $lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)"; -$lang['overwrite_by_dcl_hint'] = "If checked Cloudlog will forcibly overwrite existing DOK with DOK from DCL log."; +$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; $lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched"; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Cloudlog will be displayed."; +$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; /* ___________________________________________________________________________________________ diff --git a/application/language/polish/admin_lang.php b/application/language/polish/admin_lang.php index 3b43a6fee..f0510df7e 100644 --- a/application/language/polish/admin_lang.php +++ b/application/language/polish/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['admin_user_line1'] = 'Cloudlog needs at least one user configured in order to operate.'; -$lang['admin_user_line2'] = 'Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Cloudlog APIs.'; +$lang['admin_user_line1'] = 'Wavelog needs at least one user configured in order to operate.'; +$lang['admin_user_line2'] = 'Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Wavelog APIs.'; $lang['admin_user_line3'] = 'The currently logged-in user is displayed at the upper-right of each page.'; $lang['admin_user_line4'] = "With the password reset button, you can send a user an email containing a link to reset their password. To achieve this, ensure that the email settings in the global options are configured correctly."; diff --git a/application/language/polish/awards_lang.php b/application/language/polish/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/polish/awards_lang.php +++ b/application/language/polish/awards_lang.php @@ -49,7 +49,7 @@ ________________________________________________________________________________ $lang['awards_dxcc_description_ln1'] = "DXCC Award"; $lang['awards_dxcc_description_ln2'] = "DXCC stands for 'DX Century Club,' an award based on worked countries. The DXCC List is based on an article created in 1935 by Clinton B. DeSoto, W1CBD, titled 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Cloudlog. Be aware that these DXCC entities are outdated and no longer valid."; +$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Wavelog. Be aware that these DXCC entities are outdated and no longer valid."; /* @@ -95,7 +95,7 @@ ________________________________________________________________________________ */ $lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Cloudlog."; +$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; $lang['awards_sig_description_ln3'] = "The reason for this is that the common ADIF format provides only a few dedicated fields for certain awards. SIG still makes it possible to use and evaluate all other types of signature markers."; $lang['awards_sig_description_ln4'] = "In the QSO processing, you will find two fields: 'SIG' contains the actual marker, which is also visible in the award evaluation, and 'SIG INFO,' which contains a description of the signature. Both fields are freely customizable."; diff --git a/application/language/polish/general_words_lang.php b/application/language/polish/general_words_lang.php index 23a436ef9..9ce44d79c 100644 --- a/application/language/polish/general_words_lang.php +++ b/application/language/polish/general_words_lang.php @@ -110,8 +110,8 @@ $lang['general_total_distance'] = 'Suma odległości'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Lokalizacja stacji'; +// Wavelog Terms +$lang['wavelog_station_profile'] = 'Lokalizacja stacji'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/polish/lotw_lang.php b/application/language/polish/lotw_lang.php index 51054880d..05e84dd89 100644 --- a/application/language/polish/lotw_lang.php +++ b/application/language/polish/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Pliki logu muszą mieć rozszerzenie .a $lang['lotw_pull_lotw_data_for_me'] = 'Pobierz dane z LoTW za mnie'; $lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; -$lang['lotw_report_download_overview_helptext'] ='Cloudlog będzie używał loginu i hasła podanego w profilu, aby pobierać raporty z LoTW.Raport będzie zawierał wszystkie potwierdzenia od wybranej daty, lub ostatniej potwierdzonej łączności z LoTW (wybranej z logiu), do teraz.'; +$lang['lotw_report_download_overview_helptext'] ='Wavelog będzie używał loginu i hasła podanego w profilu, aby pobierać raporty z LoTW.Raport będzie zawierał wszystkie potwierdzenia od wybranej daty, lub ostatniej potwierdzonej łączności z LoTW (wybranej z logiu), do teraz.'; // Buttons $lang['lotw_btn_lotw_import'] = 'LoTW Import'; diff --git a/application/language/polish/options_lang.php b/application/language/polish/options_lang.php index a4f8b3cd0..c72f036d7 100644 --- a/application/language/polish/options_lang.php +++ b/application/language/polish/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Cloudlog Options'; -$lang['options_message1'] = 'Cloudlog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.'; +$lang['options_wavelog_options'] = 'Wavelog Options'; +$lang['options_message1'] = 'Wavelog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.'; $lang['options_appearance'] = 'Appearance'; $lang['options_theme'] = 'Theme'; @@ -42,8 +42,8 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully."; $lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again."; $lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails."; $lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL."; -$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'"; +$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'"; $lang['options_smtp_host_hint'] = "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')"; $lang['options_smtp_port_hint'] = "The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is used -> '465'"; $lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; diff --git a/application/language/polish/qso_lang.php b/application/language/polish/qso_lang.php index ef8227f0b..4302fed75 100644 --- a/application/language/polish/qso_lang.php +++ b/application/language/polish/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Na przykład: DA/NW-357'; $lang['qso_dok_helptext'] = 'Na przykład: Q03'; -$lang['qso_notes_helptext'] = 'Notatka jest widoczna tylko w Cloudlog, nie jest wysyłana z potwierdzeniami.'; +$lang['qso_notes_helptext'] = 'Notatka jest widoczna tylko w Wavelog, nie jest wysyłana z potwierdzeniami.'; $lang['qsl_notes_helptext'] = 'This note content is exported to QSL services like eqsl.cc.'; $lang['qso_eqsl_qslmsg_helptext'] = "Get the default message for eQSL, for this station."; @@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "What is that?"; $lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)"; $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and efficiently. Due to its syntax, only a minimum of input is required to log many QSOs with as little effort as possible."; $lang['qso_simplefle_info_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs."; -$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found here."; +$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Wavelog. Information about the syntax and how FLE works can be found here."; $lang['qso_simplefle_qso_data'] = "QSO Data"; $lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; $lang['qso_simplefle_qso_list'] = "QSO List"; @@ -67,7 +67,7 @@ $lang['qso_simplefle_utc_time'] = "Current UTC Time"; $lang['qso_simplefle_enter_the_data'] = "Enter the Data"; $lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; $lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Cloudlog"; +$lang['qso_simplefle_save'] = "Save in Wavelog"; $lang['qso_simplefle_clear'] = "Clear Logging Session"; $lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; @@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please n $lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; $lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; $lang['qso_simplefle_syntax_help_ln4'] = "To begin, ensure you have already filled in the form on the left with the date, station call, and operator's call. The main data includes the band (or QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the first QSO, which is essentially the callsign."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 2M0SQL on 20m SSB."; +$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; $lang['qso_simplefle_syntax_help_ln6'] = "If you don't provide any RST information, the syntax will use 59 (599 for data). Our next QSO wasn't 59 on both sides, so we provide the information with the sent RST first. It was 2 minutes later than the first QSO."; $lang['qso_simplefle_syntax_help_ln7'] = "The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We write down 6 because this is the only data that changed here. The information about band and mode didn't change, so this data is omitted."; $lang['qso_simplefle_syntax_help_ln8'] = "For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but still on SSB. If no RST information is given, the syntax will use 59 for every new QSO. Therefore we can add another QSO which took place at the exact same time two days later. The date must be in format YYYY-MM-DD."; diff --git a/application/language/polish/station_lang.php b/application/language/polish/station_lang.php index 01acd54b3..1d80fedb1 100644 --- a/application/language/polish/station_lang.php +++ b/application/language/polish/station_lang.php @@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the $lang['station_logbooks_view_public'] = "View Public Page for Logbook: "; $lang['station_logbooks_create_name'] = "Station Logbook Name"; $lang['station_logbooks_create_name_hint'] = "You can call a station logbook anything."; -$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (IO87IP)"; +$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (HM54ip)"; $lang['station_logbooks_edit_name_update'] = "Update Station Logbook Name"; $lang['station_logbooks_public_slug'] = "Public Slug"; $lang['station_logbooks_public_slug_hint'] = "Setting a public slug allows you to share your logbook with anyone via a custom website address, this slug can contain letters & numbers only."; @@ -57,11 +57,11 @@ $lang['station_location_edit'] = 'Edit Station Location: '; $lang['station_location_updated_suff'] = ' Updated.'; $lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.'; $lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.'; +$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; $lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)'; +$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; $lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P'; +$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; $lang['station_location_power'] = 'Station Power (W)'; $lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; $lang['station_location_emptylog'] = 'Empty Log'; @@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr $lang['station_location_county'] = 'Station County'; $lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; $lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: IO87IP. If you don't know your grid square then click here!"; +$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; $lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; $lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; $lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; diff --git a/application/language/russian/account_lang.php b/application/language/russian/account_lang.php index fb94eb671..7847d16ab 100644 --- a/application/language/russian/account_lang.php +++ b/application/language/russian/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Позывной'; $lang['account_gridsquare'] = 'QTH локатор'; -$lang['account_cloudlog_preferences'] = 'Настройки Cloudlog'; +$lang['account_wavelog_preferences'] = 'Настройки Wavelog'; $lang['account_timezone'] = 'Часовой пояс'; $lang['account_date_format'] = 'Формат даты'; $lang['account_log_end_time'] = 'Записывать время завершения QSO отдельно'; @@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Поиск позывного"; $lang['account_measurement_preferences'] = 'Единицы измерения'; $lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Выберите представление даты для отображения в вашем аккаунте.'; $lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Выберите единицы измерения расстояния'; -$lang['account_cloudlog_language'] = 'Язык Cloudlog'; -$lang['account_choose_cloudlog_language'] = 'Выберите язык Cloudlog.'; +$lang['account_wavelog_language'] = 'Язык Wavelog'; +$lang['account_choose_wavelog_language'] = 'Выберите язык Wavelog.'; $lang['account_main_menu'] = 'Главное меню'; $lang['account_show_notes_in_the_main_menu'] = 'Показывать заметки в главном меню.'; @@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Подтвердить Пароль'; $lang['account_forgot_your_password'] = 'Забыли пароль?'; -$lang['account_login_to_cloudlog'] = 'Вход в Cloudlog'; +$lang['account_login_to_wavelog'] = 'Вход в Wavelog'; $lang['account_login'] = 'Вход'; $lang['account_mastodon'] = 'Сервер Mastodon'; @@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Диапазон по умолчани $lang['account_qsl_settings'] = 'Способы подтверждения (QSL) по умолчанию'; $lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Поддержка Winkeyer в Cloudlog в стадии эксперимента, прочитайте сначала вики (https://github.com/magicbug/Cloudlog/wiki/Winkey) перед включением."; +$lang['account_winkeyer_hint'] = "Поддержка Winkeyer в Wavelog в стадии эксперимента, прочитайте сначала вики (https://github.com/wavelog/wavelog/wiki/Winkey) перед включением."; $lang['account_winkeyer_enabled'] = "Функционал Winkeyer включен"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/russian/adif_lang.php b/application/language/russian/adif_lang.php index f00129e20..817d646b7 100644 --- a/application/language/russian/adif_lang.php +++ b/application/language/russian/adif_lang.php @@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "Отметить импортированны $lang['adif_mark_imported_clublog'] = "Отметить импортированные QSO, как загруженные в журнал Clublog"; $lang['adif_dxcc_from_adif'] = "Использовать информацию о DXCC из ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "Если не отмечено, Cloudlog будет пытаться определить информацию о DXCC автоматически."; +$lang['adif_dxcc_from_adif_hint'] = "Если не отмечено, Wavelog будет пытаться определить информацию о DXCC автоматически."; $lang['adif_always_use_login_call_as_op'] = "Всегда использовать позывной (логин) как имя оператора при импорте"; $lang['adif_ignore_station_call'] = "Игнорировать позывной станции при импорте"; -$lang['adif_ignore_station_call_hint'] = "Если отмечено, Cloudlog попытается импортировать все QSO из ADIF, независимо от соответствия из выбранному расположению станции."; +$lang['adif_ignore_station_call_hint'] = "Если отмечено, Wavelog попытается импортировать все QSO из ADIF, независимо от соответствия из выбранному расположению станции."; $lang['adif_upload'] = "Загрузить"; @@ -94,10 +94,10 @@ $lang['only_confirmed_qsos'] = "Импортировать только данн $lang['only_confirmed_qsos_hint'] = "Снисите отметку, если вы также хотите обновить данные DOK из QSO, не подтверждённых на DCL."; $lang['overwrite_by_dcl'] = "Перезаписать имеющиеся данные в журнале DOK данными из DCL (если они различны)"; -$lang['overwrite_by_dcl_hint'] = "Если отмеченно, то Cloudlog принудительно перезапишет имеющиемя данные DOK данными из журнала DCL."; +$lang['overwrite_by_dcl_hint'] = "Если отмеченно, то Wavelog принудительно перезапишет имеющиемя данные DOK данными из журнала DCL."; $lang['ignore_ambiguous'] = "Игнорировать несовпадающиe QSO"; -$lang['ignore_ambiguous_hint'] = "Если не отмечено, будет отображена информация о QSO, не найденных в Cloudlog."; +$lang['ignore_ambiguous_hint'] = "Если не отмечено, будет отображена информация о QSO, не найденных в Wavelog."; /* ___________________________________________________________________________________________ diff --git a/application/language/russian/admin_lang.php b/application/language/russian/admin_lang.php index fa0d02315..ac98e32de 100644 --- a/application/language/russian/admin_lang.php +++ b/application/language/russian/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['admin_user_line1'] = 'Для работы Cloudlog требуется хотя наличие хотя бы одного пользовательского аккаунта.'; -$lang['admin_user_line2'] = 'Пользователям могут быть назначены роли, которые предоставляют им различные права, например, добавление QSO в журнал и доступ к API Cloudlog.'; +$lang['admin_user_line1'] = 'Для работы Wavelog требуется хотя наличие хотя бы одного пользовательского аккаунта.'; +$lang['admin_user_line2'] = 'Пользователям могут быть назначены роли, которые предоставляют им различные права, например, добавление QSO в журнал и доступ к API Wavelog.'; $lang['admin_user_line3'] = 'Текущий вошедший в систему пользователь отображается в правом верхнем углу каждой страницы.'; $lang['admin_user_line4'] = "With the password reset button, you can send a user an email containing a link to reset their password. To achieve this, ensure that the email settings in the global options are configured correctly."; diff --git a/application/language/russian/awards_lang.php b/application/language/russian/awards_lang.php index 88dc4f9bc..b62c49486 100644 --- a/application/language/russian/awards_lang.php +++ b/application/language/russian/awards_lang.php @@ -49,7 +49,7 @@ ________________________________________________________________________________ $lang['awards_dxcc_description_ln1'] = "DXCC Award"; $lang['awards_dxcc_description_ln2'] = "DXCC stands for 'DX Century Club,' an award based on worked countries. The DXCC List is based on an article created in 1935 by Clinton B. DeSoto, W1CBD, titled 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Cloudlog. Be aware that these DXCC entities are outdated and no longer valid."; +$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Wavelog. Be aware that these DXCC entities are outdated and no longer valid."; /* @@ -95,7 +95,7 @@ ________________________________________________________________________________ */ $lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Cloudlog."; +$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; $lang['awards_sig_description_ln3'] = "The reason for this is that the common ADIF format provides only a few dedicated fields for certain awards. SIG still makes it possible to use and evaluate all other types of signature markers."; $lang['awards_sig_description_ln4'] = "In the QSO processing, you will find two fields: 'SIG' contains the actual marker, which is also visible in the award evaluation, and 'SIG INFO,' which contains a description of the signature. Both fields are freely customizable."; diff --git a/application/language/russian/general_words_lang.php b/application/language/russian/general_words_lang.php index cbe48368d..b8e58246f 100644 --- a/application/language/russian/general_words_lang.php +++ b/application/language/russian/general_words_lang.php @@ -111,8 +111,8 @@ $lang['general_total_distance'] = 'Суммарная дистанция'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Максимальный размер загружаемого файла '; -// Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Месторасположение станции'; +// Wavelog Terms +$lang['wavelog_station_profile'] = 'Месторасположение станции'; $lang['gen_hamradio_cq'] = "CQ"; // ham radio terms diff --git a/application/language/russian/lotw_lang.php b/application/language/russian/lotw_lang.php index c384473fe..81361366b 100644 --- a/application/language/russian/lotw_lang.php +++ b/application/language/russian/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Файлы журнала должны $lang['lotw_pull_lotw_data_for_me'] = 'Подтянуть мои данные из LoTW'; $lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; -$lang['lotw_report_download_overview_helptext'] ='Cloudlog использует логин и пароль для LoTW, сохранённые в вашем профиле, для того чтобы скачивать ваши журналы с LoTW. Журнал, скачанный в Cloudlog будет содержать все подтверждения, начиная с выбранной даты, или начиная с последнего подтверждения в LoTW (загруженного из вашего журнала), до настоящего момента.'; +$lang['lotw_report_download_overview_helptext'] ='Wavelog использует логин и пароль для LoTW, сохранённые в вашем профиле, для того чтобы скачивать ваши журналы с LoTW. Журнал, скачанный в Wavelog будет содержать все подтверждения, начиная с выбранной даты, или начиная с последнего подтверждения в LoTW (загруженного из вашего журнала), до настоящего момента.'; // Buttons $lang['lotw_btn_lotw_import'] = 'Импорт LoTW'; diff --git a/application/language/russian/options_lang.php b/application/language/russian/options_lang.php index 9c8819786..ee978f533 100644 --- a/application/language/russian/options_lang.php +++ b/application/language/russian/options_lang.php @@ -2,7 +2,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Настройки'; +$lang['options_wavelog_options'] = 'Настройки'; $lang['options_message1'] = 'Это глобальные настройки, используемые для всех пользователей, которые могут быть переопределены, если есть соответствующие настройки на уровне пользователя.'; $lang['options_appearance'] = 'Внешний вид'; @@ -42,8 +42,8 @@ $lang['options_mail_settings_saved'] = "Настройки сохранены у $lang['options_mail_settings_failed'] = "Что-то пошло не так с сохранёнными настройками. Попробуйте ещё раз."; $lang['options_outgoing_protocol_hint'] = "Протокол, который будет использоваться для отправки емэйл."; $lang['options_smtp_encryption_hint'] = "Выберите, что будет использоваться при отправке емэйл: TLS или SSL."; -$lang['options_email_address_hint'] = "Адрес, с которого будет отправляться емэйл, к примеру, 'cloudlog@example.com'"; -$lang['options_email_sender_name_hint'] = "Имя отправителя, к примеру, 'Cloudlog'"; +$lang['options_email_address_hint'] = "Адрес, с которого будет отправляться емэйл, к примеру, 'wavelog@example.com'"; +$lang['options_email_sender_name_hint'] = "Имя отправителя, к примеру, 'Wavelog'"; $lang['options_smtp_host_hint'] = "Адрес почтового сервера, к примеру, 'mail.example.com' (без 'ssl://' или 'tls://')"; $lang['options_smtp_port_hint'] = "SMTP порт почтового сервера, к примеру, при использовании TLS -> '587', при использовании SSL -> '465'"; $lang['options_smtp_username_hint'] = "Имя пользователя для входа на почтовый сервер, обычно это -- указанный выше адрес емэйл."; diff --git a/application/language/russian/qso_lang.php b/application/language/russian/qso_lang.php index e0efcc36d..5fa9f0b4c 100644 --- a/application/language/russian/qso_lang.php +++ b/application/language/russian/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Например: DA/NW-357'; $lang['qso_dok_helptext'] = 'Например: Q03'; -$lang['qso_notes_helptext'] = 'Содержание заметки используется только Cloudlog и не экспортируется на другие сервисы.'; +$lang['qso_notes_helptext'] = 'Содержание заметки используется только Wavelog и не экспортируется на другие сервисы.'; $lang['qsl_notes_helptext'] = 'СОдержимое этой заметки экспортируется в QSL сервисы, к примеру, eqsl.cc и т.п.'; $lang['qso_eqsl_qslmsg_helptext'] = "Get the default message for eQSL, for this station."; @@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "Что это?"; $lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)"; $lang['qso_simplefle_info_ln2'] = "Fast Log Entry, или просто FLE, - это система, позволяющая очень быстро и эффективно регистрировать QSO. Благодаря своему синтаксису, для регистрации большого количества QSO требуется минимум вводных данных при минимальных усилиях."; $lang['qso_simplefle_info_ln3'] = "Изначально FLE была написана DF3CB. На своем сайте он предлагает программу для Windows. Программа Simple FLE была написана OK2CQR на основе FLE от DF3CB и предоставляет веб-интерфейс для регистрации QSO."; -$lang['qso_simplefle_info_ln4'] = "Часто используется для импорта бумажных журналов из открытых сессий, и теперь SimpleFLE также доступен в Cloudlog. Информацию о синтаксисе и принципах работы FLE можно найти здесь."; +$lang['qso_simplefle_info_ln4'] = "Часто используется для импорта бумажных журналов из открытых сессий, и теперь SimpleFLE также доступен в Wavelog. Информацию о синтаксисе и принципах работы FLE можно найти здесь."; $lang['qso_simplefle_qso_data'] = "Данные QSOa"; $lang['qso_simplefle_qso_date_hint'] = "Если вы не выберете дату, будет использована сегодняшняя."; $lang['qso_simplefle_qso_list'] = "Список QSO"; @@ -67,7 +67,7 @@ $lang['qso_simplefle_utc_time'] = "Текущее время UTC"; $lang['qso_simplefle_enter_the_data'] = "Введите данные"; $lang['qso_simplefle_syntax_help_close_w_sample'] = "Закройте и загрузите образец данных"; $lang['qso_simplefle_reload'] = "Перезагрузить список QSO"; -$lang['qso_simplefle_save'] = "Сохранить в Cloudlog"; +$lang['qso_simplefle_save'] = "Сохранить в Wavelog"; $lang['qso_simplefle_clear'] = "Очистить сессию логгирования"; $lang['qso_simplefle_refs_hint'] = "Референции могут быть: SOTA, IOTA, POTA или WWFF"; @@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Прежде чем начать ре $lang['qso_simplefle_syntax_help_ln2'] = "- Каждое новое QSO должно проводиться на новой строке."; $lang['qso_simplefle_syntax_help_ln3'] = "- На каждой новой строке записывайте только те данные, которые изменились по сравнению с предыдущим QSO."; $lang['qso_simplefle_syntax_help_ln4'] = "Для начала убедитесь, что вы уже заполнили форму слева, указав дату, позывной станции и позывной оператора. Основные данные включают диапазон (или QRG в МГц, например, '7.145'), режим и время. После времени указывается первое QSO, которое, по сути, является позывным."; -$lang['qso_simplefle_syntax_help_ln5'] = "Например, QSO, начавшееся в 21:34 (UTC) с 2M0SQL на 20 м SSB."; +$lang['qso_simplefle_syntax_help_ln5'] = "Например, QSO, начавшееся в 21:34 (UTC) с 4W7EST на 20 м SSB."; $lang['qso_simplefle_syntax_help_ln6'] = "Если вы не предоставите никакой RST-информации, синтаксис будет использовать 59 (599 для данных). В нашем следующем QSO не было 59 с обеих сторон, поэтому мы предоставляем информацию с отправленным RST первыми. Это произошло на 2 минуты позже, чем первое QSO."; $lang['qso_simplefle_syntax_help_ln7'] = "Первое QSO состоялось в 21:34, а второе - на 2 минуты позже, в 21:36. Мы записываем 6, потому что это единственные данные, которые здесь изменились. Информация о диапазоне и режиме не изменилась, поэтому эти данные опущены."; $lang['qso_simplefle_syntax_help_ln8'] = "Для следующего QSO в 21:40 14 мая 2021 года мы сменили диапазон на 40 м, но по-прежнему на SSB. Если информация о RST не указана, то синтаксис будет использовать 59 для каждого нового QSO. Поэтому мы можем добавить еще одно QSO, состоявшееся точно в это же время двумя днями позже. Дата должна быть в формате YYYY-MM-DD."; diff --git a/application/language/russian/station_lang.php b/application/language/russian/station_lang.php index 00f1460ca..92f88007d 100644 --- a/application/language/russian/station_lang.php +++ b/application/language/russian/station_lang.php @@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Вы уверены, что хоти $lang['station_logbooks_view_public'] = "Просмотр публичной страницы журнала: "; $lang['station_logbooks_create_name'] = "Имя журнала"; $lang['station_logbooks_create_name_hint'] = "Вы можете назвать журнал станции как угодно."; -$lang['station_logbooks_edit_name_hint'] = "Короткое название для журнала станции, например: Home Log (IO87IP)"; +$lang['station_logbooks_edit_name_hint'] = "Короткое название для журнала станции, например: Home Log (HM54ip)"; $lang['station_logbooks_edit_name_update'] = "Обновить имя журнала станции"; $lang['station_logbooks_public_slug'] = "Публичная метка"; $lang['station_logbooks_public_slug_hint'] = "Установка публичной метки позволит вам поделиться вашим журналом, используя веб-ссылку, это имя должно содержать только буквы и цифры."; @@ -57,11 +57,11 @@ $lang['station_location_edit'] = 'Редактировать расположе $lang['station_location_updated_suff'] = ' Обновлено.'; $lang['station_location_warning'] = 'Внимание. Вам нужно установить активное расположение станции. Перейдите в меню Позывной->Расположение станции, чтобы выбрать.'; $lang['station_location_reassign_at'] = 'Пожалуйста, переназначьте их в '; -$lang['station_location_warning_reassign'] = 'Из-за недавних изменений в Cloudlog вам нужно переназначить QSO вашим профилям станции.'; +$lang['station_location_warning_reassign'] = 'Из-за недавних изменений в Wavelog вам нужно переназначить QSO вашим профилям станции.'; $lang['station_location_name'] = 'Название профиля'; -$lang['station_location_name_hint'] = 'Короткое название профиля расположения станции, к примеру: Home (IO87IP)'; +$lang['station_location_name_hint'] = 'Короткое название профиля расположения станции, к примеру: Home (HM54ip)'; $lang['station_location_callsign'] = 'Позывной станции'; -$lang['station_location_callsign_hint'] = 'Позывной станции, например: 2M0SQL/P'; +$lang['station_location_callsign_hint'] = 'Позывной станции, например: 4W7EST/P'; $lang['station_location_power'] = 'Мощность станции (Вт)'; $lang['station_location_power_hint'] = 'Мощность станции по умолчанию в Вт. Перезаписывается данными из CAT.'; $lang['station_location_emptylog'] = 'Очистить лог'; @@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Штат станции. Примени $lang['station_location_county'] = 'Графство'; $lang['station_location_county_hint'] = 'Графство станции (Используется только для США/Аляски/Гавайев).'; $lang['station_location_gridsquare'] = 'Квадрат'; -$lang['station_location_gridsquare_hint_ln1'] = "Квадрат станции, к примеру: IO87IP. Если вы не знаете свой квадрат, то кликните сюда!"; +$lang['station_location_gridsquare_hint_ln1'] = "Квадрат станции, к примеру: HM54ip. Если вы не знаете свой квадрат, то кликните сюда!"; $lang['station_location_gridsquare_hint_ln2'] = "Если вы располагаетесь на границе квадратов, то укажите квадраты через запятую, к примеру: IO77,IO78,IO87,IO88."; $lang['station_location_iota_hint_ln1'] = "Референция IOTA, к примеру: EU-005"; $lang['station_location_iota_hint_ln2'] = "Вы можете посмотреть референции IOTA на сайте IOTA World."; diff --git a/application/language/spanish/account_lang.php b/application/language/spanish/account_lang.php index c0e4eb2ae..74fb846af 100644 --- a/application/language/spanish/account_lang.php +++ b/application/language/spanish/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Información de Radioaficionado"; $lang['account_callsign'] = 'Indicativo'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_cloudlog_preferences'] = 'Preferencias de Cloudlog'; +$lang['account_wavelog_preferences'] = 'Preferencias de Wavelog'; $lang['account_timezone'] = 'Zona Horaria'; $lang['account_date_format'] = 'Formato de Fecha'; $lang['account_log_end_time'] = 'Guardar Hora de Finalización para QSOs Separadamente'; @@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Guardar Indicativo"; $lang['account_measurement_preferences'] = 'Preferencias de Medidas'; $lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Seleccione cómo le gustaría ver las fechas cuando inicie sesión en su cuenta.'; $lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Seleccione qué unidad de distancia usar y mostrar cuando inicie sesión en su cuenta.'; -$lang['account_cloudlog_language'] = 'Lenguaje de Cloudlog'; -$lang['account_choose_cloudlog_language'] = 'Seleccione el lenguaje de Cloudlog a mostrar cuando inicie sesión en su cuenta.'; +$lang['account_wavelog_language'] = 'Lenguaje de Wavelog'; +$lang['account_choose_wavelog_language'] = 'Seleccione el lenguaje de Wavelog a mostrar cuando inicie sesión en su cuenta.'; $lang['account_main_menu'] = 'Opciones de Menú'; $lang['account_show_notes_in_the_main_menu'] = 'Mostrar notas en el Menú Principal.'; @@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirmar Contraseña'; $lang['account_forgot_your_password'] = '¿Olvidó su contraseña?'; -$lang['account_login_to_cloudlog'] = 'Iniciar sesión en Cloudlog'; +$lang['account_login_to_wavelog'] = 'Iniciar sesión en Wavelog'; $lang['account_login'] = 'Iniciar Sesión'; $lang['account_mastodon'] = 'Servidor de Mastodon'; @@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Banda por Defecto'; $lang['account_qsl_settings'] = 'Métodos de QSL por Defecto'; $lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "El soporte de Winkeyer en Cloudlog es muy experimental. Lea la wiki primero en https://github.com/magicbug/Cloudlog/wiki/Winkey antes de activar."; +$lang['account_winkeyer_hint'] = "El soporte de Winkeyer en Wavelog es muy experimental. Lea la wiki primero en https://github.com/wavelog/wavelog/wiki/Winkey antes de activar."; $lang['account_winkeyer_enabled'] = "Características de Winkeyer Activadas"; $lang['account_map_params'] = "Configuración de Mapa"; diff --git a/application/language/spanish/adif_lang.php b/application/language/spanish/adif_lang.php index 03cdd7387..3e08b8e98 100644 --- a/application/language/spanish/adif_lang.php +++ b/application/language/spanish/adif_lang.php @@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "Marcar QSOs importadas como subidas al libro $lang['adif_mark_imported_clublog'] = "Marcar QSOs importadas como subidas al libro de guardia de Clublog Logbook"; $lang['adif_dxcc_from_adif'] = "Usar la información DXCC del ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "Si no se selecciona, Cloudlog intentará determinar la información DXCC automáticamente."; +$lang['adif_dxcc_from_adif_hint'] = "Si no se selecciona, Wavelog intentará determinar la información DXCC automáticamente."; $lang['adif_always_use_login_call_as_op'] = "Siempre use el indicativo usado para iniciar sesión como el nombre de operador al importar"; $lang['adif_ignore_station_call'] = "Ignorar el indicativo de la Estación al importar"; -$lang['adif_ignore_station_call_hint'] = "Si se selecciona, Cloudlog intentará importar todos los QSOs del ADIF, sin importar si concuerdan con la estación/localización seleccionada."; +$lang['adif_ignore_station_call_hint'] = "Si se selecciona, Wavelog intentará importar todos los QSOs del ADIF, sin importar si concuerdan con la estación/localización seleccionada."; $lang['adif_upload'] = "Subir"; @@ -94,10 +94,10 @@ $lang['only_confirmed_qsos'] = "Solo importar datos DOK de los QSO confirmados e $lang['only_confirmed_qsos_hint'] = "Si se deja desactivado, se actualizarán los datos DOK con datos de los QSO no confirmados en DCL."; $lang['overwrite_by_dcl'] = "Sobreescribir los DOK existentes en el registro por DCL (si son diferentes)"; -$lang['overwrite_by_dcl_hint'] = "Si está activo, Cloudlog forzará la sobreescritura de los DOK existentes con los DOK desde el libro de DCL."; +$lang['overwrite_by_dcl_hint'] = "Si está activo, Wavelog forzará la sobreescritura de los DOK existentes con los DOK desde el libro de DCL."; $lang['ignore_ambiguous'] = "Ignorar QSOs que no concuerden"; -$lang['ignore_ambiguous_hint'] = "Si se deja desactivado, se mostrará la información de QSOs que no se encuentren en Cloudlog."; +$lang['ignore_ambiguous_hint'] = "Si se deja desactivado, se mostrará la información de QSOs que no se encuentren en Wavelog."; /* ___________________________________________________________________________________________ diff --git a/application/language/spanish/admin_lang.php b/application/language/spanish/admin_lang.php index 78d6a6b02..521cdef7c 100644 --- a/application/language/spanish/admin_lang.php +++ b/application/language/spanish/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['admin_user_line1'] = 'Cloudlog necesita al menos un usuario configurado para operar.'; -$lang['admin_user_line2'] = 'Los usuarios pueden tener roles que les entregan diferentes permisos, como añadir QSOs al libro de guardia y acceder a las APIs de Cloudlog.'; +$lang['admin_user_line1'] = 'Wavelog necesita al menos un usuario configurado para operar.'; +$lang['admin_user_line2'] = 'Los usuarios pueden tener roles que les entregan diferentes permisos, como añadir QSOs al libro de guardia y acceder a las APIs de Wavelog.'; $lang['admin_user_line3'] = 'El usuario actualmente en sesión se muestra en la parte superior derecha de la página.'; $lang['admin_user_list'] = 'Lista de Usuarios'; diff --git a/application/language/spanish/awards_lang.php b/application/language/spanish/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/spanish/awards_lang.php +++ b/application/language/spanish/awards_lang.php @@ -49,7 +49,7 @@ ________________________________________________________________________________ $lang['awards_dxcc_description_ln1'] = "DXCC Award"; $lang['awards_dxcc_description_ln2'] = "DXCC stands for 'DX Century Club,' an award based on worked countries. The DXCC List is based on an article created in 1935 by Clinton B. DeSoto, W1CBD, titled 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Cloudlog. Be aware that these DXCC entities are outdated and no longer valid."; +$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Wavelog. Be aware that these DXCC entities are outdated and no longer valid."; /* @@ -95,7 +95,7 @@ ________________________________________________________________________________ */ $lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Cloudlog."; +$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; $lang['awards_sig_description_ln3'] = "The reason for this is that the common ADIF format provides only a few dedicated fields for certain awards. SIG still makes it possible to use and evaluate all other types of signature markers."; $lang['awards_sig_description_ln4'] = "In the QSO processing, you will find two fields: 'SIG' contains the actual marker, which is also visible in the award evaluation, and 'SIG INFO,' which contains a description of the signature. Both fields are freely customizable."; diff --git a/application/language/spanish/general_words_lang.php b/application/language/spanish/general_words_lang.php index 92fd5f3ab..d662499a4 100644 --- a/application/language/spanish/general_words_lang.php +++ b/application/language/spanish/general_words_lang.php @@ -111,8 +111,8 @@ $lang['general_total_distance'] = 'Distancia total'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'El tamaño máximo del archivo subido es '; -// Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Perfil de estación'; +// Wavelog Terms +$lang['wavelog_station_profile'] = 'Perfil de estación'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/spanish/lotw_lang.php b/application/language/spanish/lotw_lang.php index 916a0aa1c..d8051b65d 100644 --- a/application/language/spanish/lotw_lang.php +++ b/application/language/spanish/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Los archivos de registro deben ser del $lang['lotw_pull_lotw_data_for_me'] = 'Extraer los datos LoTW por mí'; $lang['lotw_select_callsign'] = 'Seleccione indicativo para obtener confirmaciones de LoTW'; -$lang['lotw_report_download_overview_helptext'] ='Cloudlog usará el usuario y contraseña de LoTW guardado en su perfil para descargar un informe de LoTW por usted. El informe contendrá todas las confirmaciones desde la fecha elegida o desde su última confirmación LoTW hasta ahora.'; +$lang['lotw_report_download_overview_helptext'] ='Wavelog usará el usuario y contraseña de LoTW guardado en su perfil para descargar un informe de LoTW por usted. El informe contendrá todas las confirmaciones desde la fecha elegida o desde su última confirmación LoTW hasta ahora.'; // Buttons $lang['lotw_btn_lotw_import'] = 'Importar LoTW'; diff --git a/application/language/spanish/options_lang.php b/application/language/spanish/options_lang.php index 5428c39ca..6b7f9e410 100644 --- a/application/language/spanish/options_lang.php +++ b/application/language/spanish/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Opciones de Cloudlog'; -$lang['options_message1'] = 'Las Opciones de Cloudlog son configuraciones globales, configuradas para todos los usuarios de la instalación, que se sobreescribirán si alguna configuración se activa a nivel de usuario.'; +$lang['options_wavelog_options'] = 'Opciones de Wavelog'; +$lang['options_message1'] = 'Las Opciones de Wavelog son configuraciones globales, configuradas para todos los usuarios de la instalación, que se sobreescribirán si alguna configuración se activa a nivel de usuario.'; $lang['options_appearance'] = 'Apariencia'; $lang['options_theme'] = 'Tema'; @@ -42,8 +42,8 @@ $lang['options_mail_settings_saved'] = "Las configuraciones fueron guardadas exi $lang['options_mail_settings_failed'] = "Algo salió mal guardando las configuraciones. Intente de nuevo."; $lang['options_outgoing_protocol_hint'] = "El protocolo que será usado para enviar los correos electrónicos."; $lang['options_smtp_encryption_hint'] = "Escoja si los correos electrónicos serán enviados con TLS o SSL."; -$lang['options_email_address_hint'] = "La dirección desde la cual se enviarán los correos electrónicos, ej. 'cloudlog@example.com'"; -$lang['options_email_sender_name_hint'] = "El nombre de quien envía los correos, ej. 'Cloudlog'"; +$lang['options_email_address_hint'] = "La dirección desde la cual se enviarán los correos electrónicos, ej. 'wavelog@example.com'"; +$lang['options_email_sender_name_hint'] = "El nombre de quien envía los correos, ej. 'Wavelog'"; $lang['options_smtp_host_hint'] = "El nombre de dominio del servidor de correo, ej. 'mail.example.com' (sin 'ssl://' o 'tls://')"; $lang['options_smtp_port_hint'] = "El puerto SMTP del servidor de correo, ej. si está usando TLS -> '587', si está usando SSL -> '465'"; $lang['options_smtp_username_hint'] = "El nombre de usuario para iniciar sesión en el servidor de correo, usualmente esta es la dirección de correo electrónico a usar."; diff --git a/application/language/spanish/qso_lang.php b/application/language/spanish/qso_lang.php index 960f9a43e..6ca1ff204 100644 --- a/application/language/spanish/qso_lang.php +++ b/application/language/spanish/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Por ejemplo: DA/NW-357'; $lang['qso_dok_helptext'] = 'Por ejemplo: Q03'; -$lang['qso_notes_helptext'] = 'El contenido es usado solo dentro de Cloudlog y no es exportado a otros servicios.'; +$lang['qso_notes_helptext'] = 'El contenido es usado solo dentro de Wavelog y no es exportado a otros servicios.'; $lang['qsl_notes_helptext'] = 'El contenido de esta nota es exportado a servicios QSL como eqsl.cc.'; $lang['qso_eqsl_qslmsg_helptext'] = "Obtener el mensaje por defecto para eQSL, para esta estación."; @@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "¿Qué es esto?"; $lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)"; $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', o simplemente 'FLE' es un sistema para registrar QSO muy rápida y eficientemente. Debido a su sintaxis, solo se requieren pocos campos para introducir muchos QSOs con la menor cantidad de esfuerzo posible."; $lang['qso_simplefle_info_ln3'] = "FLE fue escrito originalmente por DF3CB. Él ofreció un programa para Windows en su sitio. Simple FLE fue escrito por OK2CQR basado en el FLE de DF3CB y provee una interfaz web para registrar QSOs."; -$lang['qso_simplefle_info_ln4'] = "Un caso de uso común es si necesita importar sus registros manuales de una sesión a las afueras y ahora SimpleFLE está disponible en Cloudlog. La información acerca de la sintaxis y como funciona FLE se pueden encontrar aquí."; +$lang['qso_simplefle_info_ln4'] = "Un caso de uso común es si necesita importar sus registros manuales de una sesión a las afueras y ahora SimpleFLE está disponible en Wavelog. La información acerca de la sintaxis y como funciona FLE se pueden encontrar aquí."; $lang['qso_simplefle_qso_data'] = "Datos de QSO"; $lang['qso_simplefle_qso_date_hint'] = "Si no escoge una fecha, se usará la fecha de hoy."; $lang['qso_simplefle_qso_list'] = "Lista de QSOs"; @@ -67,7 +67,7 @@ $lang['qso_simplefle_utc_time'] = "Hora UTC Actual"; $lang['qso_simplefle_enter_the_data'] = "Introduzca los Datos"; $lang['qso_simplefle_syntax_help_close_w_sample'] = "Cerrar y Cargar Datos de Muestra"; $lang['qso_simplefle_reload'] = "Recargar Lista de QSO"; -$lang['qso_simplefle_save'] = "Guardar en Cloudlog"; +$lang['qso_simplefle_save'] = "Guardar en Wavelog"; $lang['qso_simplefle_clear'] = "Limpiar Sesión de Registro"; $lang['qso_simplefle_refs_hint'] = "Las Referencias deben ser SOTA, IOTA, POTA o WWFF"; @@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Antes de empezar a registrar un QSO, o $lang['qso_simplefle_syntax_help_ln2'] = "- Cada QSO nuevo debe estar en una línea nueva."; $lang['qso_simplefle_syntax_help_ln3'] = "- En cada nueva línea, solo escriba datos que hayan cambiado desde el QSO anterior."; $lang['qso_simplefle_syntax_help_ln4'] = "Para comenzar, asegúrese que ya ha rellenado el formulario en la izquierda con la fecha, el indicativo de la estación y el indicativo del operador. Los datos principales incluyen la banda (o QRG en MHz, ej., '7.145'), modo, y hora. Después de la hora, usted debe introducir el primer QSO, que es esencialmente el indicativo."; -$lang['qso_simplefle_syntax_help_ln5'] = "Por ejemplo, un QSO que ha iniciado a las 21:34 (UTC) con 2M0SQL en 20m SSB."; +$lang['qso_simplefle_syntax_help_ln5'] = "Por ejemplo, un QSO que ha iniciado a las 21:34 (UTC) con 4W7EST en 20m SSB."; $lang['qso_simplefle_syntax_help_ln6'] = "Si no introduce ninguna información RST, la sintaxis usará 59 (o 599 para datos). Nuestro siguiente QSO no era 59 en ambos lados, así que proveemos la información con el RST enviado primero. Fue 2 minutos después del primer QSO."; $lang['qso_simplefle_syntax_help_ln7'] = "El primer QSL fue a las 21:34, y el segundo 2 minutos después a las 21:36. Escribimos 6 porque fue el único dato que cambió. La información de banda y modo no cambió, así que estos datos se omiten."; $lang['qso_simplefle_syntax_help_ln8'] = "Para nuestro siguiente QSO a las 21:40 el 14 de mayo de 2021, cambiamos la banda a 40m pero seguimos en SSB. Si no se ingresa datos de RST, la sintaxis usará 59 para cada nuevo QSO. Por lo tanto podemos añadir un nuevo QSO que ocurrió a la misma hora dos días después. La fecha debe estar en el formato YYYY-MM-DD."; diff --git a/application/language/spanish/station_lang.php b/application/language/spanish/station_lang.php index f132ff91d..67730d57a 100644 --- a/application/language/spanish/station_lang.php +++ b/application/language/spanish/station_lang.php @@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "¿Está seguro que desea eliminar el $lang['station_logbooks_view_public'] = "Ver Página Pública para el Libro de Guardia: "; $lang['station_logbooks_create_name'] = "Nombre del Libro de Guardia de Estación"; $lang['station_logbooks_create_name_hint'] = "Puede llamar el libro de guardia de estación como desee."; -$lang['station_logbooks_edit_name_hint'] = "Nombre corto para el libro de guardia de estación. Ejemplo: Libro Casa (IO87IP)"; +$lang['station_logbooks_edit_name_hint'] = "Nombre corto para el libro de guardia de estación. Ejemplo: Libro Casa (HM54ip)"; $lang['station_logbooks_edit_name_update'] = "Actualizar el Nombre del Libro de Guardia de Estación"; $lang['station_logbooks_public_slug'] = "Abreviatura Pública"; $lang['station_logbooks_public_slug_hint'] = "El configurar una abreviatura pública le permite compartir su libro de guardia con cualquier persona usando una dirección personalizada del sitio web, esta abreviatura debe contener solo letras y números."; @@ -57,11 +57,11 @@ $lang['station_location_edit'] = 'Editar Localización de Estación: '; $lang['station_location_updated_suff'] = ' Actualizada.'; $lang['station_location_warning'] = 'Atención: Debe configurar una Localización de Estación como activa. vaya a Indicativo->Localización de Estación para seleccionar una.'; $lang['station_location_reassign_at'] = 'Por favor, reasignelas en '; -$lang['station_location_warning_reassign'] = 'Debido a cambios recientes en Cloudlog, debe reasignar sus QSO a sus perfiles de estación.'; +$lang['station_location_warning_reassign'] = 'Debido a cambios recientes en Wavelog, debe reasignar sus QSO a sus perfiles de estación.'; $lang['station_location_name'] = 'Nombre de Perfil'; -$lang['station_location_name_hint'] = 'Nombre corto para la Localización de Estación. Ejemplo: Casa (IO87IP)'; +$lang['station_location_name_hint'] = 'Nombre corto para la Localización de Estación. Ejemplo: Casa (HM54ip)'; $lang['station_location_callsign'] = 'Indicativo de la Estación'; -$lang['station_location_callsign_hint'] = 'Indicativo de llamada de la Estación. Ejemplo: 2M0SQL/P'; +$lang['station_location_callsign_hint'] = 'Indicativo de llamada de la Estación. Ejemplo: 4W7EST/P'; $lang['station_location_power'] = 'Potencia de la Estación (W)'; $lang['station_location_power_hint'] = 'Potencia de la estación por defecto en Vatios. Puede ser sobreescrito por CAT.'; $lang['station_location_emptylog'] = 'Libro Vacío'; @@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Estado/Departamento/Provincia de la esta $lang['station_location_county'] = 'Condado de la Estación'; $lang['station_location_county_hint'] = 'Condado de la Estación (Solo se usa en USA/Alaska/Hawaii).'; $lang['station_location_gridsquare'] = 'Gridsquare de la Estación'; -$lang['station_location_gridsquare_hint_ln1'] = "Gridsquare de la estación. Ejemplo: IO87IP. ¡Si no conoce su grid square haga clic aquí!"; +$lang['station_location_gridsquare_hint_ln1'] = "Gridsquare de la estación. Ejemplo: HM54ip. ¡Si no conoce su grid square haga clic aquí!"; $lang['station_location_gridsquare_hint_ln2'] = "Si está localizado justo en una línea de la malla, introduzca múltiples gridsquares separados con comas. por ejemplo: IO77,IO78,IO87,IO88."; $lang['station_location_iota_hint_ln1'] = "Referencia IOTA de la Estación. Ejemplo: EU-005"; $lang['station_location_iota_hint_ln2'] = "Puede buscar las referencias IOTA en el sitio web de IOTA World."; diff --git a/application/language/swedish/account_lang.php b/application/language/swedish/account_lang.php index 5cad692a3..f2546a4ae 100644 --- a/application/language/swedish/account_lang.php +++ b/application/language/swedish/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Callsign'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences'; +$lang['account_wavelog_preferences'] = 'Wavelog Preferences'; $lang['account_timezone'] = 'Tidszon'; $lang['account_date_format'] = 'Datumformat'; $lang['account_log_end_time'] = 'Log End Times for QSOs Separately'; @@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign"; $lang['account_measurement_preferences'] = 'Measurement preference'; $lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Välj hur du vill att datum ska visas när du är inloggad på ditt konto.'; $lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Välj i vilken enhetsavstånd som ska visas'; -$lang['account_cloudlog_language'] = 'Cloudlog Language'; -$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.'; +$lang['account_wavelog_language'] = 'Wavelog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.'; $lang['account_main_menu'] = 'Huvudmeny'; $lang['account_show_notes_in_the_main_menu'] = 'Visa anteckningar i huvudmenyn.'; @@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Bekräfta lösenord'; $lang['account_forgot_your_password'] = 'Glömt lösenord?'; -$lang['account_login_to_cloudlog'] = 'Login to Cloudlog'; +$lang['account_login_to_wavelog'] = 'Login to Wavelog'; $lang['account_login'] = 'Login'; $lang['account_mastodon'] = 'Mastodonserver'; @@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Standard Band'; $lang['account_qsl_settings'] = 'Default QSL-Methods'; $lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/swedish/adif_lang.php b/application/language/swedish/adif_lang.php index 4000ec252..f2eddfeb6 100644 --- a/application/language/swedish/adif_lang.php +++ b/application/language/swedish/adif_lang.php @@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook $lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; $lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Cloudlog will attempt to determine DXCC information automatically."; +$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; $lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; $lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Cloudlog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; +$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; $lang['adif_upload'] = "Upload"; @@ -94,10 +94,10 @@ $lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL. $lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; $lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)"; -$lang['overwrite_by_dcl_hint'] = "If checked Cloudlog will forcibly overwrite existing DOK with DOK from DCL log."; +$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; $lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched"; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Cloudlog will be displayed."; +$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; /* ___________________________________________________________________________________________ diff --git a/application/language/swedish/admin_lang.php b/application/language/swedish/admin_lang.php index fa454d069..e57c79477 100644 --- a/application/language/swedish/admin_lang.php +++ b/application/language/swedish/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['admin_user_line1'] = 'Cloudlog behöver minst en användare konfigurerad för att fungera.'; -$lang['admin_user_line2'] = 'Användare kan tilldelas roller som ger dem olika behörigheter, som att lägga till QSO:er i loggboken och komma åt Cloudlog API:er.'; +$lang['admin_user_line1'] = 'Wavelog behöver minst en användare konfigurerad för att fungera.'; +$lang['admin_user_line2'] = 'Användare kan tilldelas roller som ger dem olika behörigheter, som att lägga till QSO:er i loggboken och komma åt Wavelog API:er.'; $lang['admin_user_line3'] = 'Den för närvarande inloggade användaren visas uppe till höger på varje sida.'; $lang['admin_user_line4'] = "With the password reset button, you can send a user an email containing a link to reset their password. To achieve this, ensure that the email settings in the global options are configured correctly."; diff --git a/application/language/swedish/awards_lang.php b/application/language/swedish/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/swedish/awards_lang.php +++ b/application/language/swedish/awards_lang.php @@ -49,7 +49,7 @@ ________________________________________________________________________________ $lang['awards_dxcc_description_ln1'] = "DXCC Award"; $lang['awards_dxcc_description_ln2'] = "DXCC stands for 'DX Century Club,' an award based on worked countries. The DXCC List is based on an article created in 1935 by Clinton B. DeSoto, W1CBD, titled 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Cloudlog. Be aware that these DXCC entities are outdated and no longer valid."; +$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Wavelog. Be aware that these DXCC entities are outdated and no longer valid."; /* @@ -95,7 +95,7 @@ ________________________________________________________________________________ */ $lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Cloudlog."; +$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; $lang['awards_sig_description_ln3'] = "The reason for this is that the common ADIF format provides only a few dedicated fields for certain awards. SIG still makes it possible to use and evaluate all other types of signature markers."; $lang['awards_sig_description_ln4'] = "In the QSO processing, you will find two fields: 'SIG' contains the actual marker, which is also visible in the award evaluation, and 'SIG INFO,' which contains a description of the signature. Both fields are freely customizable."; diff --git a/application/language/swedish/general_words_lang.php b/application/language/swedish/general_words_lang.php index 7734dd6eb..5e90e0d3f 100644 --- a/application/language/swedish/general_words_lang.php +++ b/application/language/swedish/general_words_lang.php @@ -111,8 +111,8 @@ $lang['general_total_distance'] = 'Totalt avstånd'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Stationsplats'; +// Wavelog Terms +$lang['wavelog_station_profile'] = 'Stationsplats'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/swedish/lotw_lang.php b/application/language/swedish/lotw_lang.php index 4eaa19ddd..d45d6aef9 100644 --- a/application/language/swedish/lotw_lang.php +++ b/application/language/swedish/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Loggfil måste vara av format .adi'; $lang['lotw_pull_lotw_data_for_me'] = 'Hämta LoTW data'; $lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; -$lang['lotw_report_download_overview_helptext'] = 'Cloudlog använder LoTW användarnamn och lösenord som är sparat i din användarprofil för att ladda ner repport från LoTW. Rapporten Cloudlog kommer att ladda ner kommer att ha alla bekräftelser sedan valt datum, eller sedan din senaste LoTW-bekräftelse (hämtad från din logg), fram till nu.'; +$lang['lotw_report_download_overview_helptext'] = 'Wavelog använder LoTW användarnamn och lösenord som är sparat i din användarprofil för att ladda ner repport från LoTW. Rapporten Wavelog kommer att ladda ner kommer att ha alla bekräftelser sedan valt datum, eller sedan din senaste LoTW-bekräftelse (hämtad från din logg), fram till nu.'; // Buttons $lang['lotw_btn_lotw_import'] = 'LoTW import'; diff --git a/application/language/swedish/options_lang.php b/application/language/swedish/options_lang.php index 4003275f3..b77bc074d 100644 --- a/application/language/swedish/options_lang.php +++ b/application/language/swedish/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Cloudlog-alternativ'; -$lang['options_message1'] = 'Cloudlog-alternativ är globala inställningar som används för alla användare av installationen, som åsidosätts om det finns en inställning på användarnivå.'; +$lang['options_wavelog_options'] = 'Wavelog-alternativ'; +$lang['options_message1'] = 'Wavelog-alternativ är globala inställningar som används för alla användare av installationen, som åsidosätts om det finns en inställning på användarnivå.'; $lang['options_appearance'] = 'Utseende'; $lang['options_theme'] = 'Tema'; @@ -42,8 +42,8 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully."; $lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again."; $lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails."; $lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL."; -$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'"; +$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'"; $lang['options_smtp_host_hint'] = "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')"; $lang['options_smtp_port_hint'] = "The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is used -> '465'"; $lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; diff --git a/application/language/swedish/qso_lang.php b/application/language/swedish/qso_lang.php index 4de77389b..cad2a332b 100644 --- a/application/language/swedish/qso_lang.php +++ b/application/language/swedish/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Exempel: DA/NW-357'; $lang['qso_dok_helptext'] = 'Exempel: Q03'; -$lang['qso_notes_helptext'] = 'Detta innehåll används bara inom Cloudlog och kommer inte att exporteras.'; +$lang['qso_notes_helptext'] = 'Detta innehåll används bara inom Wavelog och kommer inte att exporteras.'; $lang['qsl_notes_helptext'] = 'Detta innehåll exporteras till QSL-services som eqsl etc.'; $lang['qso_eqsl_qslmsg_helptext'] = "Get the default message for eQSL, for this station."; @@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "What is that?"; $lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)"; $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and efficiently. Due to its syntax, only a minimum of input is required to log many QSOs with as little effort as possible."; $lang['qso_simplefle_info_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs."; -$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found here."; +$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Wavelog. Information about the syntax and how FLE works can be found here."; $lang['qso_simplefle_qso_data'] = "QSO Data"; $lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; $lang['qso_simplefle_qso_list'] = "QSO List"; @@ -67,7 +67,7 @@ $lang['qso_simplefle_utc_time'] = "Current UTC Time"; $lang['qso_simplefle_enter_the_data'] = "Enter the Data"; $lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; $lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Cloudlog"; +$lang['qso_simplefle_save'] = "Save in Wavelog"; $lang['qso_simplefle_clear'] = "Clear Logging Session"; $lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; @@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please n $lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; $lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; $lang['qso_simplefle_syntax_help_ln4'] = "To begin, ensure you have already filled in the form on the left with the date, station call, and operator's call. The main data includes the band (or QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the first QSO, which is essentially the callsign."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 2M0SQL on 20m SSB."; +$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; $lang['qso_simplefle_syntax_help_ln6'] = "If you don't provide any RST information, the syntax will use 59 (599 for data). Our next QSO wasn't 59 on both sides, so we provide the information with the sent RST first. It was 2 minutes later than the first QSO."; $lang['qso_simplefle_syntax_help_ln7'] = "The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We write down 6 because this is the only data that changed here. The information about band and mode didn't change, so this data is omitted."; $lang['qso_simplefle_syntax_help_ln8'] = "For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but still on SSB. If no RST information is given, the syntax will use 59 for every new QSO. Therefore we can add another QSO which took place at the exact same time two days later. The date must be in format YYYY-MM-DD."; diff --git a/application/language/swedish/station_lang.php b/application/language/swedish/station_lang.php index 01acd54b3..1d80fedb1 100644 --- a/application/language/swedish/station_lang.php +++ b/application/language/swedish/station_lang.php @@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the $lang['station_logbooks_view_public'] = "View Public Page for Logbook: "; $lang['station_logbooks_create_name'] = "Station Logbook Name"; $lang['station_logbooks_create_name_hint'] = "You can call a station logbook anything."; -$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (IO87IP)"; +$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (HM54ip)"; $lang['station_logbooks_edit_name_update'] = "Update Station Logbook Name"; $lang['station_logbooks_public_slug'] = "Public Slug"; $lang['station_logbooks_public_slug_hint'] = "Setting a public slug allows you to share your logbook with anyone via a custom website address, this slug can contain letters & numbers only."; @@ -57,11 +57,11 @@ $lang['station_location_edit'] = 'Edit Station Location: '; $lang['station_location_updated_suff'] = ' Updated.'; $lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.'; $lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.'; +$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; $lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)'; +$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; $lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P'; +$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; $lang['station_location_power'] = 'Station Power (W)'; $lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; $lang['station_location_emptylog'] = 'Empty Log'; @@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr $lang['station_location_county'] = 'Station County'; $lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; $lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: IO87IP. If you don't know your grid square then click here!"; +$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; $lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; $lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; $lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; diff --git a/application/language/turkish/account_lang.php b/application/language/turkish/account_lang.php index 60ba989fc..84eb94e4e 100644 --- a/application/language/turkish/account_lang.php +++ b/application/language/turkish/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Callsign'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences'; +$lang['account_wavelog_preferences'] = 'Wavelog Preferences'; $lang['account_timezone'] = 'Timezone'; $lang['account_date_format'] = 'Date Format'; $lang['account_log_end_time'] = 'Log End Times for QSOs Separately'; @@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign"; $lang['account_measurement_preferences'] = 'Measurement preference'; $lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Select how you would like dates shown when logged into your account.'; $lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Choose which unit distances will be shown in'; -$lang['account_cloudlog_language'] = 'Cloudlog Language'; -$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.'; +$lang['account_wavelog_language'] = 'Wavelog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.'; $lang['account_main_menu'] = 'Menu Options'; $lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.'; @@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirm Password'; $lang['account_forgot_your_password'] = 'Forgot your password?'; -$lang['account_login_to_cloudlog'] = 'Login to Cloudlog'; +$lang['account_login_to_wavelog'] = 'Login to Wavelog'; $lang['account_login'] = 'Login'; $lang['account_mastodon'] = 'Mastodonserver'; @@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Default Band'; $lang['account_qsl_settings'] = 'Default QSL-Methods'; $lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/wavelog/wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/turkish/adif_lang.php b/application/language/turkish/adif_lang.php index 4000ec252..f2eddfeb6 100644 --- a/application/language/turkish/adif_lang.php +++ b/application/language/turkish/adif_lang.php @@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook $lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook"; $lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "If not selected, Cloudlog will attempt to determine DXCC information automatically."; +$lang['adif_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically."; $lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import"; $lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import"; -$lang['adif_ignore_station_call_hint'] = "If selected, Cloudlog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; +$lang['adif_ignore_station_call_hint'] = "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location."; $lang['adif_upload'] = "Upload"; @@ -94,10 +94,10 @@ $lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL. $lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL."; $lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)"; -$lang['overwrite_by_dcl_hint'] = "If checked Cloudlog will forcibly overwrite existing DOK with DOK from DCL log."; +$lang['overwrite_by_dcl_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log."; $lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched"; -$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Cloudlog will be displayed."; +$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed."; /* ___________________________________________________________________________________________ diff --git a/application/language/turkish/admin_lang.php b/application/language/turkish/admin_lang.php index 1431b16ad..dc9484620 100644 --- a/application/language/turkish/admin_lang.php +++ b/application/language/turkish/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('Doğrudan komut dosyası erişimine izin verilmez'); -$lang['admin_user_line1'] = 'Cloudlog needs at least one user configured in order to operate.'; -$lang['admin_user_line2'] = 'Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Cloudlog APIs.'; +$lang['admin_user_line1'] = 'Wavelog needs at least one user configured in order to operate.'; +$lang['admin_user_line2'] = 'Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Wavelog APIs.'; $lang['admin_user_line3'] = 'The currently logged-in user is displayed at the upper-right of each page.'; $lang['admin_user_line4'] = "With the password reset button, you can send a user an email containing a link to reset their password. To achieve this, ensure that the email settings in the global options are configured correctly."; diff --git a/application/language/turkish/awards_lang.php b/application/language/turkish/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/turkish/awards_lang.php +++ b/application/language/turkish/awards_lang.php @@ -49,7 +49,7 @@ ________________________________________________________________________________ $lang['awards_dxcc_description_ln1'] = "DXCC Award"; $lang['awards_dxcc_description_ln2'] = "DXCC stands for 'DX Century Club,' an award based on worked countries. The DXCC List is based on an article created in 1935 by Clinton B. DeSoto, W1CBD, titled 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Cloudlog. Be aware that these DXCC entities are outdated and no longer valid."; +$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Wavelog. Be aware that these DXCC entities are outdated and no longer valid."; /* @@ -95,7 +95,7 @@ ________________________________________________________________________________ */ $lang['awards_sig_description_ln1'] = "SIG Information"; -$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Cloudlog."; +$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog."; $lang['awards_sig_description_ln3'] = "The reason for this is that the common ADIF format provides only a few dedicated fields for certain awards. SIG still makes it possible to use and evaluate all other types of signature markers."; $lang['awards_sig_description_ln4'] = "In the QSO processing, you will find two fields: 'SIG' contains the actual marker, which is also visible in the award evaluation, and 'SIG INFO,' which contains a description of the signature. Both fields are freely customizable."; diff --git a/application/language/turkish/general_words_lang.php b/application/language/turkish/general_words_lang.php index 6743f6771..bfe432b1d 100644 --- a/application/language/turkish/general_words_lang.php +++ b/application/language/turkish/general_words_lang.php @@ -110,8 +110,8 @@ $lang['general_total_distance'] = 'Topam mesafe'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms -$lang['cloudlog_station_profile'] = 'İstasyon Konumu'; +// Wavelog Terms +$lang['wavelog_station_profile'] = 'İstasyon Konumu'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/turkish/lotw_lang.php b/application/language/turkish/lotw_lang.php index f17af9022..2728c3591 100644 --- a/application/language/turkish/lotw_lang.php +++ b/application/language/turkish/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Günlük dosyaları .adi dosya tipine s $lang['lotw_pull_lotw_data_for_me'] = 'Benim için LoTW verilerini çek'; $lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; -$lang['lotw_report_download_overview_helptext'] ='Cloudlog, sizin için LoTW\'den bir rapor indirmek için kullanıcı profilinizde kayıtlı LoTW kullanıcı adını ve şifreyi kullanacak. Cloudlog indirmeleri raporu, seçilen tarihten itibaren veya son LoTW onayınızdan (günlüğünüzden alınır) bu yana şimdiye kadarki tüm onaylara sahip olacaktır.'; +$lang['lotw_report_download_overview_helptext'] ='Wavelog, sizin için LoTW\'den bir rapor indirmek için kullanıcı profilinizde kayıtlı LoTW kullanıcı adını ve şifreyi kullanacak. Wavelog indirmeleri raporu, seçilen tarihten itibaren veya son LoTW onayınızdan (günlüğünüzden alınır) bu yana şimdiye kadarki tüm onaylara sahip olacaktır.'; // Düğmeler $lang['lotw_btn_lotw_import'] = 'LoTW İçe Aktarma'; diff --git a/application/language/turkish/options_lang.php b/application/language/turkish/options_lang.php index a4f8b3cd0..c72f036d7 100644 --- a/application/language/turkish/options_lang.php +++ b/application/language/turkish/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Cloudlog Options'; -$lang['options_message1'] = 'Cloudlog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.'; +$lang['options_wavelog_options'] = 'Wavelog Options'; +$lang['options_message1'] = 'Wavelog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.'; $lang['options_appearance'] = 'Appearance'; $lang['options_theme'] = 'Theme'; @@ -42,8 +42,8 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully."; $lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again."; $lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails."; $lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL."; -$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'"; +$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'"; $lang['options_smtp_host_hint'] = "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')"; $lang['options_smtp_port_hint'] = "The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is used -> '465'"; $lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used."; diff --git a/application/language/turkish/qso_lang.php b/application/language/turkish/qso_lang.php index 83a07fea2..bd24eea6e 100644 --- a/application/language/turkish/qso_lang.php +++ b/application/language/turkish/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Örnek: DA/NW-357'; $lang['qso_dok_helptext'] = 'Örnek: Q03'; -$lang['qso_notes_helptext'] = 'Not içeriği yalnızca Cloudlog içinde kullanılır ve diğer servislere aktarılmaz'; +$lang['qso_notes_helptext'] = 'Not içeriği yalnızca Wavelog içinde kullanılır ve diğer servislere aktarılmaz'; $lang['qsl_notes_helptext'] = 'Bu not içeriği eqsl.cc gibi QSL servislere aktarılır'; $lang['qso_eqsl_qslmsg_helptext'] = "Get the default message for eQSL, for this station."; @@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "What is that?"; $lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)"; $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and efficiently. Due to its syntax, only a minimum of input is required to log many QSOs with as little effort as possible."; $lang['qso_simplefle_info_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs."; -$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found here."; +$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Wavelog. Information about the syntax and how FLE works can be found here."; $lang['qso_simplefle_qso_data'] = "QSO Data"; $lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used."; $lang['qso_simplefle_qso_list'] = "QSO List"; @@ -67,7 +67,7 @@ $lang['qso_simplefle_utc_time'] = "Current UTC Time"; $lang['qso_simplefle_enter_the_data'] = "Enter the Data"; $lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data"; $lang['qso_simplefle_reload'] = "Reload QSO List"; -$lang['qso_simplefle_save'] = "Save in Cloudlog"; +$lang['qso_simplefle_save'] = "Save in Wavelog"; $lang['qso_simplefle_clear'] = "Clear Logging Session"; $lang['qso_simplefle_refs_hint'] = "The Refs can be either SOTA, IOTA, POTA or WWFF"; @@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please n $lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line."; $lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO."; $lang['qso_simplefle_syntax_help_ln4'] = "To begin, ensure you have already filled in the form on the left with the date, station call, and operator's call. The main data includes the band (or QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the first QSO, which is essentially the callsign."; -$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 2M0SQL on 20m SSB."; +$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB."; $lang['qso_simplefle_syntax_help_ln6'] = "If you don't provide any RST information, the syntax will use 59 (599 for data). Our next QSO wasn't 59 on both sides, so we provide the information with the sent RST first. It was 2 minutes later than the first QSO."; $lang['qso_simplefle_syntax_help_ln7'] = "The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We write down 6 because this is the only data that changed here. The information about band and mode didn't change, so this data is omitted."; $lang['qso_simplefle_syntax_help_ln8'] = "For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but still on SSB. If no RST information is given, the syntax will use 59 for every new QSO. Therefore we can add another QSO which took place at the exact same time two days later. The date must be in format YYYY-MM-DD."; diff --git a/application/language/turkish/station_lang.php b/application/language/turkish/station_lang.php index 01acd54b3..1d80fedb1 100644 --- a/application/language/turkish/station_lang.php +++ b/application/language/turkish/station_lang.php @@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the $lang['station_logbooks_view_public'] = "View Public Page for Logbook: "; $lang['station_logbooks_create_name'] = "Station Logbook Name"; $lang['station_logbooks_create_name_hint'] = "You can call a station logbook anything."; -$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (IO87IP)"; +$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (HM54ip)"; $lang['station_logbooks_edit_name_update'] = "Update Station Logbook Name"; $lang['station_logbooks_public_slug'] = "Public Slug"; $lang['station_logbooks_public_slug_hint'] = "Setting a public slug allows you to share your logbook with anyone via a custom website address, this slug can contain letters & numbers only."; @@ -57,11 +57,11 @@ $lang['station_location_edit'] = 'Edit Station Location: '; $lang['station_location_updated_suff'] = ' Updated.'; $lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.'; $lang['station_location_reassign_at'] = 'Please reassign them at '; -$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.'; +$lang['station_location_warning_reassign'] = 'Due to recent changes within Wavelog you need to reassign QSOs to your station profiles.'; $lang['station_location_name'] = 'Profile Name'; -$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)'; +$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)'; $lang['station_location_callsign'] = 'Station Callsign'; -$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P'; +$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/P'; $lang['station_location_power'] = 'Station Power (W)'; $lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.'; $lang['station_location_emptylog'] = 'Empty Log'; @@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr $lang['station_location_county'] = 'Station County'; $lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).'; $lang['station_location_gridsquare'] = 'Station Gridsquare'; -$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: IO87IP. If you don't know your grid square then click here!"; +$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: HM54ip. If you don't know your grid square then click here!"; $lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88."; $lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005"; $lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the IOTA World website."; diff --git a/application/libraries/Cabrilloformat.php b/application/libraries/Cabrilloformat.php index 764aa52b2..78fca1339 100644 --- a/application/libraries/Cabrilloformat.php +++ b/application/libraries/Cabrilloformat.php @@ -43,7 +43,7 @@ class Cabrilloformat { $cab_header .= "GRID-LOCATOR: ".$gridlocator."\r\n"; } - $cab_header .= "CREATED-BY: Cloudlog"."\r\n"; + $cab_header .= "CREATED-BY: Wavelog"."\r\n"; return $cab_header; diff --git a/application/libraries/Hamqth.php b/application/libraries/Hamqth.php index 6689ba3cd..171eb6d77 100644 --- a/application/libraries/Hamqth.php +++ b/application/libraries/Hamqth.php @@ -59,7 +59,7 @@ class Hamqth { $data = null; try { // URL to the XML Source - $xml_feed_url = 'https://www.hamqth.com/xml.php?id=' . $key . '&callsign=' . $callsign . '&prg=cloudlog'; + $xml_feed_url = 'https://www.hamqth.com/xml.php?id=' . $key . '&callsign=' . $callsign . '&prg=wavelog'; // CURL Functions $ch = curl_init(); diff --git a/application/libraries/Qrz.php b/application/libraries/Qrz.php index cfecdac10..5a44825ac 100755 --- a/application/libraries/Qrz.php +++ b/application/libraries/Qrz.php @@ -10,7 +10,7 @@ class Qrz { // Return session key public function session($username, $password) { // URL to the XML Source - $xml_feed_url = 'http://xmldata.qrz.com/xml/current/?username='.$username.';password='.urlencode($password).';agent=cloudlog'; + $xml_feed_url = 'http://xmldata.qrz.com/xml/current/?username='.$username.';password='.urlencode($password).';agent=wavelog'; // CURL Functions $ch = curl_init(); @@ -33,7 +33,7 @@ class Qrz { $ci = & get_instance(); // URL to the XML Source - $xml_feed_url = 'http://xmldata.qrz.com/xml/current/?username='.$username.';password='.urlencode($password).';agent=cloudlog'; + $xml_feed_url = 'http://xmldata.qrz.com/xml/current/?username='.$username.';password='.urlencode($password).';agent=wavelog'; // CURL Functions $ch = curl_init(); diff --git a/application/migrations/058_new_options_table.php b/application/migrations/058_new_options_table.php index 6c8889856..3bc288025 100644 --- a/application/migrations/058_new_options_table.php +++ b/application/migrations/058_new_options_table.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration creates a table called options which will hold global options needed within cloudlog +* This migration creates a table called options which will hold global options needed within wavelog * removing the need for lots of configuration files. */ diff --git a/application/migrations/059_add_default_theme_to_options_table.php b/application/migrations/059_add_default_theme_to_options_table.php index f4d2c748a..d79f7b9fb 100644 --- a/application/migrations/059_add_default_theme_to_options_table.php +++ b/application/migrations/059_add_default_theme_to_options_table.php @@ -3,8 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration creates a table called options which will hold global options needed within cloudlog -* removing the need for lots of configuration files. +* This migration adds the theme 'default' as standard/default theme to wavelog. */ class Migration_add_default_theme_to_options_table extends CI_Migration { diff --git a/application/migrations/060_add_tileserver_to_options.php b/application/migrations/060_add_tileserver_to_options.php index 837160a73..98d622751 100644 --- a/application/migrations/060_add_tileserver_to_options.php +++ b/application/migrations/060_add_tileserver_to_options.php @@ -3,8 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration creates a table called options which will hold global options needed within cloudlog -* removing the need for lots of configuration files. +* This migration adds the url for the maptileserver to the options table in wavelog */ class Migration_add_tileserver_to_options extends CI_Migration { diff --git a/application/migrations/061_add_lang_to_options.php b/application/migrations/061_add_lang_to_options.php index 6a424b199..c915a3b9b 100644 --- a/application/migrations/061_add_lang_to_options.php +++ b/application/migrations/061_add_lang_to_options.php @@ -3,8 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration creates a table called options which will hold global options needed within cloudlog -* removing the need for lots of configuration files. +* This migration set's english as default language in the options table */ class Migration_add_lang_to_options extends CI_Migration { diff --git a/application/migrations/062_add_globalsearch_to_options.php b/application/migrations/062_add_globalsearch_to_options.php index 08b5ebb6f..02df4f43f 100644 --- a/application/migrations/062_add_globalsearch_to_options.php +++ b/application/migrations/062_add_globalsearch_to_options.php @@ -3,8 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration creates a table called options which will hold global options needed within cloudlog -* removing the need for lots of configuration files. +* This migration adds the global_search to the options table. */ class Migration_add_globalsearch_to_options extends CI_Migration { diff --git a/application/migrations/064_add_user_sota_lookup.php b/application/migrations/064_add_user_sota_lookup.php index 5a050e22b..5a7fd018c 100644 --- a/application/migrations/064_add_user_sota_lookup.php +++ b/application/migrations/064_add_user_sota_lookup.php @@ -3,8 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration creates a table called options which will hold global options needed within cloudlog -* removing the need for lots of configuration files. +* This adds user_sota_lookup to the users table. */ class Migration_add_user_sota_lookup extends CI_Migration { diff --git a/application/migrations/065_changed_dxcc_tables_utf8mb4.php b/application/migrations/065_changed_dxcc_tables_utf8mb4.php index d13473575..a8fbe3249 100644 --- a/application/migrations/065_changed_dxcc_tables_utf8mb4.php +++ b/application/migrations/065_changed_dxcc_tables_utf8mb4.php @@ -3,8 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration creates a table called options which will hold global options needed within cloudlog -* removing the need for lots of configuration files. +* This migration converts the dxcc_* tables to a utf8mb4 charachter set. */ class Migration_changed_dxcc_tables_utf8mb4 extends CI_Migration { diff --git a/application/migrations/066_add_user_hide_notes.php b/application/migrations/066_add_user_hide_notes.php index 447be1226..a08e5840a 100644 --- a/application/migrations/066_add_user_hide_notes.php +++ b/application/migrations/066_add_user_hide_notes.php @@ -3,8 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration creates a table called options which will hold global options needed within cloudlog -* removing the need for lots of configuration files. +* This allows the user to disable notes in the header menu. */ class Migration_add_user_hide_notes extends CI_Migration { diff --git a/application/migrations/067_add_index_cqz_prop.php b/application/migrations/067_add_index_cqz_prop.php index 79698faf5..bd161b2a2 100644 --- a/application/migrations/067_add_index_cqz_prop.php +++ b/application/migrations/067_add_index_cqz_prop.php @@ -3,8 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration creates a table called options which will hold global options needed within cloudlog -* removing the need for lots of configuration files. +* This migration adds index to COL_CQZ and COL_PROP_MODE in the QSO table. */ class Migration_add_index_cqz_prop extends CI_Migration { diff --git a/application/migrations/068_add_cat_timeout_to_options.php b/application/migrations/068_add_cat_timeout_to_options.php index 96f2f1b40..0f1858c38 100644 --- a/application/migrations/068_add_cat_timeout_to_options.php +++ b/application/migrations/068_add_cat_timeout_to_options.php @@ -3,8 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration creates a table called options which will hold global options needed within cloudlog -* removing the need for lots of configuration files. +* This migration adds a value to the options table which is used as cat_timeout */ class Migration_add_cat_timeout_to_options extends CI_Migration { diff --git a/application/migrations/069_add_user_definable_columns.php b/application/migrations/069_add_user_definable_columns.php index 064269e92..60a0ca578 100644 --- a/application/migrations/069_add_user_definable_columns.php +++ b/application/migrations/069_add_user_definable_columns.php @@ -3,8 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration creates a table called options which will hold global options needed within cloudlog -* removing the need for lots of configuration files. +* This migration allows the user to define which columns are shown in the logbook. */ class Migration_add_user_definable_columns extends CI_Migration { diff --git a/application/migrations/070_add_fifth_column.php b/application/migrations/070_add_fifth_column.php index 745469c7d..bf53a1537 100644 --- a/application/migrations/070_add_fifth_column.php +++ b/application/migrations/070_add_fifth_column.php @@ -3,8 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration creates a table called options which will hold global options needed within cloudlog -* removing the need for lots of configuration files. +* This migration adds a fifth column recarding to migration no. 69 */ class Migration_add_fifth_column extends CI_Migration { diff --git a/application/migrations/072_create_station_logbook_table.php b/application/migrations/072_create_station_logbook_table.php index 452ec50b8..7a43932bb 100644 --- a/application/migrations/072_create_station_logbook_table.php +++ b/application/migrations/072_create_station_logbook_table.php @@ -3,8 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration creates a table called options which will hold global options needed within cloudlog -* removing the need for lots of configuration files. +* Initial creation of the station logbooks database */ class Migration_create_station_logbook_table extends CI_Migration { diff --git a/application/migrations/073_create_station_logbook_relationship_table.php b/application/migrations/073_create_station_logbook_relationship_table.php index 1c3b76331..8b2fd39bb 100644 --- a/application/migrations/073_create_station_logbook_relationship_table.php +++ b/application/migrations/073_create_station_logbook_relationship_table.php @@ -3,8 +3,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration creates a table called options which will hold global options needed within cloudlog -* removing the need for lots of configuration files. +* Next step after Migration No. 72 is to create a datatable which contains the relations +* between station logbooks and station locations. */ class Migration_create_station_logbook_relationship_table extends CI_Migration { diff --git a/application/migrations/075_add_active_station_logbook_to_user_table.php b/application/migrations/075_add_active_station_logbook_to_user_table.php index 89967405b..bf331d2ca 100644 --- a/application/migrations/075_add_active_station_logbook_to_user_table.php +++ b/application/migrations/075_add_active_station_logbook_to_user_table.php @@ -3,8 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration creates a table called options which will hold global options needed within cloudlog -* removing the need for lots of configuration files. +* Allows the user to set which station logbook is the active/selected at the moment. */ class Migration_add_active_station_logbook_to_user_table extends CI_Migration { diff --git a/application/migrations/083_create_station_logbook_relationship_table2.php b/application/migrations/083_create_station_logbook_relationship_table2.php index b6f48a27d..8cf4cd084 100644 --- a/application/migrations/083_create_station_logbook_relationship_table2.php +++ b/application/migrations/083_create_station_logbook_relationship_table2.php @@ -3,8 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration creates a table called options which will hold global options needed within cloudlog -* removing the need for lots of configuration files. +* Same as Migration No. 073 */ class Migration_create_station_logbook_relationship_table2 extends CI_Migration { diff --git a/application/migrations/102_add_version_two_trigger_to_options.php b/application/migrations/102_add_version_two_trigger_to_options.php index f1da08677..c63c3c92a 100644 --- a/application/migrations/102_add_version_two_trigger_to_options.php +++ b/application/migrations/102_add_version_two_trigger_to_options.php @@ -3,8 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration creates a table called options which will hold global options needed within cloudlog -* removing the need for lots of configuration files. +* This migration adds an trigger for the switch from 1.* to 2.* */ class Migration_add_version_two_trigger_to_options extends CI_Migration { diff --git a/application/migrations/130_add_version_to_config.php b/application/migrations/130_add_version_to_config.php index 968377e07..2bce2913f 100644 --- a/application/migrations/130_add_version_to_config.php +++ b/application/migrations/130_add_version_to_config.php @@ -3,8 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration creates a table called options which will hold global options needed within cloudlog -* removing the need for lots of configuration files. +* This adds the version to the database. */ class Migration_add_version_to_config extends CI_Migration { diff --git a/application/migrations/136_tag_2_4_6.php b/application/migrations/136_tag_2_4_6.php index 377b6d58f..8d05eef7e 100644 --- a/application/migrations/136_tag_2_4_6.php +++ b/application/migrations/136_tag_2_4_6.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.4.6 +* Tag Wavelog as 2.4.6 */ class Migration_tag_2_4_6 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_4_6 extends CI_Migration { public function up() { - // Tag Cloudlog 2.4.6 + // Tag Wavelog 2.4.6 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.4.6')); } diff --git a/application/migrations/137_tag_2_4_7.php b/application/migrations/137_tag_2_4_7.php index ebfd269cd..5351229e5 100644 --- a/application/migrations/137_tag_2_4_7.php +++ b/application/migrations/137_tag_2_4_7.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.4.7 +* Tag Wavelog as 2.4.7 */ class Migration_tag_2_4_7 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_4_7 extends CI_Migration { public function up() { - // Tag Cloudlog 2.4.7 + // Tag Wavelog 2.4.7 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.4.7')); } diff --git a/application/migrations/140_tag_2_4_8.php b/application/migrations/140_tag_2_4_8.php index ee070205d..5df370824 100644 --- a/application/migrations/140_tag_2_4_8.php +++ b/application/migrations/140_tag_2_4_8.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.4.8 +* Tag Wavelog as 2.4.8 */ class Migration_tag_2_4_8 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_4_8 extends CI_Migration { public function up() { - // Tag Cloudlog 2.4.7 + // Tag Wavelog 2.4.7 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.4.8')); } diff --git a/application/migrations/143_tag_2_4_9.php b/application/migrations/143_tag_2_4_9.php index ec1bd57ec..756893850 100644 --- a/application/migrations/143_tag_2_4_9.php +++ b/application/migrations/143_tag_2_4_9.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.4.9 +* Tag Wavelog as 2.4.9 */ class Migration_tag_2_4_9 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_4_9 extends CI_Migration { public function up() { - // Tag Cloudlog 2.4.9 + // Tag Wavelog 2.4.9 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.4.9')); } diff --git a/application/migrations/144_tag_2_4_10.php b/application/migrations/144_tag_2_4_10.php index 413bfd9ce..bf85d9436 100644 --- a/application/migrations/144_tag_2_4_10.php +++ b/application/migrations/144_tag_2_4_10.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.4.10 +* Tag Wavelog as 2.4.10 */ class Migration_tag_2_4_10 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_4_10 extends CI_Migration { public function up() { - // Tag Cloudlog 2.4.10 + // Tag Wavelog 2.4.10 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.4.10')); } diff --git a/application/migrations/147_tag_2_4_11.php b/application/migrations/147_tag_2_4_11.php index 80050932d..10d53ade8 100644 --- a/application/migrations/147_tag_2_4_11.php +++ b/application/migrations/147_tag_2_4_11.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.4.11 +* Tag Wavelog as 2.4.11 */ class Migration_tag_2_4_11 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_4_11 extends CI_Migration { public function up() { - // Tag Cloudlog 2.4.11 + // Tag Wavelog 2.4.11 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.4.11')); } diff --git a/application/migrations/150_tag_2_5_0.php b/application/migrations/150_tag_2_5_0.php index 2adab425e..4d3e33348 100644 --- a/application/migrations/150_tag_2_5_0.php +++ b/application/migrations/150_tag_2_5_0.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.5.0 +* Tag Wavelog as 2.5.0 */ class Migration_tag_2_5_0 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_5_0 extends CI_Migration { public function up() { - // Tag Cloudlog 2.5.0 + // Tag Wavelog 2.5.0 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.5.0')); } diff --git a/application/migrations/152_tag_2_5_1.php b/application/migrations/152_tag_2_5_1.php index ad90a8b0d..0d95b6549 100644 --- a/application/migrations/152_tag_2_5_1.php +++ b/application/migrations/152_tag_2_5_1.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.5.1 +* Tag Wavelog as 2.5.1 */ class Migration_tag_2_5_1 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_5_1 extends CI_Migration { public function up() { - // Tag Cloudlog 2.5.1 + // Tag Wavelog 2.5.1 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.5.1')); } diff --git a/application/migrations/153_tag_2_5_2.php b/application/migrations/153_tag_2_5_2.php index 9be710c13..1c3794983 100644 --- a/application/migrations/153_tag_2_5_2.php +++ b/application/migrations/153_tag_2_5_2.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.5.1 +* Tag Wavelog as 2.5.1 */ class Migration_tag_2_5_2 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_5_2 extends CI_Migration { public function up() { - // Tag Cloudlog 2.5.1 + // Tag Wavelog 2.5.1 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.5.2')); } diff --git a/application/migrations/160_tag_2_6_0.php b/application/migrations/160_tag_2_6_0.php index 071e2d4ec..fff580e48 100644 --- a/application/migrations/160_tag_2_6_0.php +++ b/application/migrations/160_tag_2_6_0.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.6.0 +* Tag Wavelog as 2.6.0 */ class Migration_tag_2_6_0 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_6_0 extends CI_Migration { public function up() { - // Tag Cloudlog 2.5.1 + // Tag Wavelog 2.5.1 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.6.0')); diff --git a/application/migrations/165_tag_2_6_1.php b/application/migrations/165_tag_2_6_1.php index 9836c6aeb..2267560fd 100644 --- a/application/migrations/165_tag_2_6_1.php +++ b/application/migrations/165_tag_2_6_1.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.6.1 +* Tag Wavelog as 2.6.1 */ class Migration_tag_2_6_1 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_6_1 extends CI_Migration { public function up() { - // Tag Cloudlog 2.6.1 + // Tag Wavelog 2.6.1 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.6.1')); diff --git a/application/migrations/169_tag_2_6_2.php b/application/migrations/169_tag_2_6_2.php index 4c9533011..e999486e6 100644 --- a/application/migrations/169_tag_2_6_2.php +++ b/application/migrations/169_tag_2_6_2.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.6.2 +* Tag Wavelog as 2.6.2 */ class Migration_tag_2_6_2 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_6_2 extends CI_Migration { public function up() { - // Tag Cloudlog 2.6.2 + // Tag Wavelog 2.6.2 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.6.2')); diff --git a/application/models/Api_model.php b/application/models/Api_model.php index 9b13d237e..45931e564 100644 --- a/application/models/Api_model.php +++ b/application/models/Api_model.php @@ -30,7 +30,7 @@ class API_Model extends CI_Model { $data = array( 'user_id' => $id, ); - + $this->db->update('api', $data); } @@ -73,7 +73,7 @@ class API_Model extends CI_Model { // Expects either rw (Read, Write) or r (read only) // Generate Unique Key - $data['key'] = uniqid("cl"); + $data['key'] = uniqid("wl"); $data['rights'] = $rights; @@ -189,7 +189,7 @@ class API_Model extends CI_Model { return 0; } - + // ARRAY: $_columnName // An array matching MySQL column names to friendly names, descriptions and types private $_columnName = array( diff --git a/application/models/Dxcluster_model.php b/application/models/Dxcluster_model.php index 9d66e2f96..2ffb265eb 100644 --- a/application/models/Dxcluster_model.php +++ b/application/models/Dxcluster_model.php @@ -1,6 +1,6 @@ optionslib->get_option('version').' DXLookup'); + curl_setopt($ch, CURLOPT_USERAGENT, 'Wavelog '.$this->optionslib->get_option('version').' DXLookup'); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $jsonraw = curl_exec($ch); @@ -89,7 +89,7 @@ class Dxcluster_model extends CI_Model { // CURL Functions $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $dxcache_url); - curl_setopt($ch, CURLOPT_USERAGENT, 'Cloudlog '.$this->optionslib->get_option('version').' DXLookup by QRG'); + curl_setopt($ch, CURLOPT_USERAGENT, 'Wavelog '.$this->optionslib->get_option('version').' DXLookup by QRG'); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $jsonraw = curl_exec($ch); diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 00e73a5ce..1de9bf1a2 100755 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -3057,7 +3057,7 @@ function lotw_last_qsl_date($user_id) { /* * $skipDuplicate - used in ADIF import to skip duplicate checking when importing QSOs * $markLoTW - used in ADIF import to mark QSOs as exported to LoTW when importing QSOs - * $dxccAdif - used in ADIF import to determine if DXCC From ADIF is used, or if Cloudlog should try to guess + * $dxccAdif - used in ADIF import to determine if DXCC From ADIF is used, or if Wavelog should try to guess * $markQrz - used in ADIF import to mark QSOs as exported to QRZ Logbook when importing QSOs * $markHrd - used in ADIF import to mark QSOs as exported to HRDLog.net Logbook when importing QSOs * $skipexport - used in ADIF import to skip the realtime upload to QRZ Logbook when importing QSOs from ADIF @@ -3078,7 +3078,7 @@ function lotw_last_qsl_date($user_id) { if ((!$skipStationCheck) && ($station_id != 0) && (strtoupper($record['station_callsign']) != strtoupper($station_profile_call))) { // Check if station_call from import matches profile ONLY when submitting via GUI. return "Wrong station callsign \"".htmlentities($record['station_callsign'])."\" while importing QSO with ".$record['call']." for ".$station_profile_call." : SKIPPED" . - "
See the Cloudlog Wiki for hints about errors in ADIF files."; + "
See the Wavelog Wiki for hints about errors in ADIF files."; } $this->load->library('frequency'); diff --git a/application/models/Logbookadvanced_model.php b/application/models/Logbookadvanced_model.php index 3e7775d8e..f98ba17e7 100644 --- a/application/models/Logbookadvanced_model.php +++ b/application/models/Logbookadvanced_model.php @@ -1,5 +1,5 @@ session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } ?> diff --git a/application/views/adif/data/clublog.php b/application/views/adif/data/clublog.php index 3e44ae4f3..3f44b6bbc 100644 --- a/application/views/adif/data/clublog.php +++ b/application/views/adif/data/clublog.php @@ -1,4 +1,4 @@ -Cloudlog ADIF export +Wavelog ADIF export 3.1.4 config->item('app_name')); ?>>config->item('app_name')."\r\n"; ?> optionslib->get_option('version')); ?>>optionslib->get_option('version')."\r\n"; ?> diff --git a/application/views/adif/data/exportall.php b/application/views/adif/data/exportall.php index d0dd52dc9..13120f148 100644 --- a/application/views/adif/data/exportall.php +++ b/application/views/adif/data/exportall.php @@ -2,7 +2,7 @@ header('Content-Type: text/plain; charset=utf-8'); header('Content-Disposition: attachment; filename="'.$this->session->userdata('user_callsign').'-'.date('Ymd-Hi').'.adi"') ?> -Cloudlog ADIF export +Wavelog ADIF export 3.1.4 config->item('app_name')); ?>>config->item('app_name')."\r\n"; ?> optionslib->get_option('version')); ?>>optionslib->get_option('version')."\r\n"; ?> diff --git a/application/views/adif/data/exportsat.php b/application/views/adif/data/exportsat.php index d0dd52dc9..13120f148 100644 --- a/application/views/adif/data/exportsat.php +++ b/application/views/adif/data/exportsat.php @@ -2,7 +2,7 @@ header('Content-Type: text/plain; charset=utf-8'); header('Content-Disposition: attachment; filename="'.$this->session->userdata('user_callsign').'-'.date('Ymd-Hi').'.adi"') ?> -Cloudlog ADIF export +Wavelog ADIF export 3.1.4 config->item('app_name')); ?>>config->item('app_name')."\r\n"; ?> optionslib->get_option('version')); ?>>optionslib->get_option('version')."\r\n"; ?> diff --git a/application/views/api/help.php b/application/views/api/help.php index a6113362b..bbc2b9fd9 100644 --- a/application/views/api/help.php +++ b/application/views/api/help.php @@ -14,9 +14,9 @@ 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.

-

API URL The API URL for this Cloudlog instance is:

+

The Wavelog API (Application Programming Interface) lets third party systems access Wavelog 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. WavelogCAT). Generate a read-write key if the application needs to send data to Wavelog. Generate a read-only key if the application only needs to obtain data from Wavelog.

+

API URL The API URL for this Wavelog instance is:

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

num_rows() > 0) { ?> diff --git a/application/views/api/index.php b/application/views/api/index.php index 32eff35bd..008da5436 100644 --- a/application/views/api/index.php +++ b/application/views/api/index.php @@ -11,7 +11,7 @@ if($data['format'] == "xml") { // Get the method called, and build the root node $call = $data['queryInfo']['call']; -$rootNode = $xmlDoc->createElement("Cloudlog-API"); +$rootNode = $xmlDoc->createElement("Wavelog-API"); $parentNode = $xmlDoc->appendChild($rootNode); // Get the results output diff --git a/application/views/awards/pota/index.php b/application/views/awards/pota/index.php index cbbf460ae..6c56aa4a3 100644 --- a/application/views/awards/pota/index.php +++ b/application/views/awards/pota/index.php @@ -19,7 +19,7 @@ // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } ?> diff --git a/application/views/awards/wwff/index.php b/application/views/awards/wwff/index.php index 885ce7355..95cb52e3b 100644 --- a/application/views/awards/wwff/index.php +++ b/application/views/awards/wwff/index.php @@ -19,7 +19,7 @@ // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } ?> diff --git a/application/views/backup/exportall.php b/application/views/backup/exportall.php index 5175a21bd..456bdf101 100644 --- a/application/views/backup/exportall.php +++ b/application/views/backup/exportall.php @@ -1,4 +1,4 @@ -Cloudlog ADIF export +Wavelog ADIF export 3.1.4 config->item('app_name')); ?>>config->item('app_name')."\n"; ?> optionslib->get_option('version')); ?>>optionslib->get_option('version')."\r\n"; ?> diff --git a/application/views/backup/main.php b/application/views/backup/main.php index d9afabede..bd341f7a8 100644 --- a/application/views/backup/main.php +++ b/application/views/backup/main.php @@ -14,7 +14,7 @@ Backup
-

Some of the data stored in Cloudlog can be exported so that you can keep a backup copy elsewhere.

+

Some of the data stored in Wavelog can be exported so that you can keep a backup copy elsewhere.

It's recommended to create backups on a regular basis to protect your data.

Backup ADIF data

Backup Notes

diff --git a/application/views/components/hamsat/table.php b/application/views/components/hamsat/table.php index 80dad90b5..485c28d7a 100644 --- a/application/views/components/hamsat/table.php +++ b/application/views/components/hamsat/table.php @@ -31,7 +31,7 @@ // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } diff --git a/application/views/csv/index.php b/application/views/csv/index.php index 1e38c5a9c..c7d9c419c 100644 --- a/application/views/csv/index.php +++ b/application/views/csv/index.php @@ -16,7 +16,7 @@
- + result() as $station) { ?> diff --git a/application/views/email/admin_reset_password.php b/application/views/email/admin_reset_password.php index 954b1c730..7de2ffbc6 100644 --- a/application/views/email/admin_reset_password.php +++ b/application/views/email/admin_reset_password.php @@ -1,7 +1,7 @@ Hello -An admin initiated a password reset for your Cloudlog account. +An admin initiated a password reset for your Wavelog account. Your username is: @@ -9,7 +9,8 @@ Your username is: Click here to reset your password: -If you didn't request any password reset, just ignore this email and talk to an admin of your Cloudlog instance. +If you didn't request any password reset, just ignore this email and talk to an admin of your Wavelog instance. Regards, -Cloudlog + +Wavelog diff --git a/application/views/email/forgot_password.php b/application/views/email/forgot_password.php index 36855ce0b..4e7414664 100644 --- a/application/views/email/forgot_password.php +++ b/application/views/email/forgot_password.php @@ -1,6 +1,6 @@ Hi, -You or someone else has requested a password reset on your Cloudlog account. +You or someone else has requested a password reset on your Wavelog account. Your password reset code is: @@ -12,4 +12,4 @@ If you didn't request this just ignore. Regards, -Cloudlog. \ No newline at end of file +Wavelog \ No newline at end of file diff --git a/application/views/email/oqrs_request.php b/application/views/email/oqrs_request.php index c35ec6cc4..8c1b92c14 100644 --- a/application/views/email/oqrs_request.php +++ b/application/views/email/oqrs_request.php @@ -7,8 +7,8 @@ The user entered the following message: -Please log into your Cloudlog and process it. +Please log into your Wavelog and process it. Regards, -Cloudlog. +Wavelog diff --git a/application/views/email/testmail.php b/application/views/email/testmail.php index 116023d5e..70bf8e60c 100644 --- a/application/views/email/testmail.php +++ b/application/views/email/testmail.php @@ -1,9 +1,9 @@ Hi, -This is a test email from your Cloudlog instance. +This is a test email from your Wavelog instance. If you received this email, your mail settings are correct. Regards, -Cloudlog. \ No newline at end of file +Wavelog \ No newline at end of file diff --git a/application/views/eqsl/download.php b/application/views/eqsl/download.php index d4c2319b1..54944f958 100644 --- a/application/views/eqsl/download.php +++ b/application/views/eqsl/download.php @@ -63,7 +63,7 @@ foreach ($qslsnotdownloaded->result_array() as $qsl) {
-

Cloudlog will use the eQSL credentials from your Cloudlog user profile to connect to eQSL and download confirmations.

+

Wavelog will use the eQSL credentials from your Wavelog user profile to connect to eQSL and download confirmations.

diff --git a/application/views/eqsl/import.php b/application/views/eqsl/import.php index 55ebb169c..c6e6c76dc 100644 --- a/application/views/eqsl/import.php +++ b/application/views/eqsl/import.php @@ -48,7 +48,7 @@
-

Cloudlog will use the eQSL credentials from your Cloudlog user profile to connect to eQSL and download confirmations.

+

Wavelog will use the eQSL credentials from your Wavelog user profile to connect to eQSL and download confirmations.

diff --git a/application/views/eqslcard/index.php b/application/views/eqslcard/index.php index 4d2580862..674a900ed 100644 --- a/application/views/eqslcard/index.php +++ b/application/views/eqslcard/index.php @@ -14,7 +14,7 @@ // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index c08ad1e8e..1090b0188 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -29,7 +29,7 @@ var lang_admin_close = ""; var lang_admin_clear = ""; - + @@ -2350,7 +2350,7 @@ $(document).ready(function(){ // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } @@ -3019,7 +3019,7 @@ function viewEqsl(picture, callsign) { // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } diff --git a/application/views/interface_assets/header.php b/application/views/interface_assets/header.php index 40d2b21c0..870c9f3f8 100644 --- a/application/views/interface_assets/header.php +++ b/application/views/interface_assets/header.php @@ -58,14 +58,14 @@ <?php if (isset($page_title)) { echo $page_title; - } ?> - Cloudlog + } ?> - Wavelog
- : + :
-

Below is a list of active radios that are connected to Cloudlog.

+

Below is a list of active radios that are connected to Wavelog.

If you haven't connected any radios yet, see the API page to generate API keys.

@@ -24,7 +24,7 @@

- Info You can find out how to use the radio functions in the wiki. + Info You can find out how to use the radio functions in the wiki.

diff --git a/application/views/search/cqzones_result.php b/application/views/search/cqzones_result.php index 65cad4a08..d4f55428e 100644 --- a/application/views/search/cqzones_result.php +++ b/application/views/search/cqzones_result.php @@ -22,7 +22,7 @@ if ($qsos->result() != NULL) { // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } diff --git a/application/views/search/duplicates_result.php b/application/views/search/duplicates_result.php index eacd1988f..6a6a84971 100644 --- a/application/views/search/duplicates_result.php +++ b/application/views/search/duplicates_result.php @@ -21,7 +21,7 @@ if ($qsos->result() != NULL) { // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } diff --git a/application/views/search/filter.php b/application/views/search/filter.php index 78fb4d753..8eca767f7 100644 --- a/application/views/search/filter.php +++ b/application/views/search/filter.php @@ -69,7 +69,7 @@ } ?> -
Info You can find out how to use the search filter functions in the wiki.
+
Info You can find out how to use the search filter functions in the wiki.
diff --git a/application/views/search/lotw_unconfirmed_result.php b/application/views/search/lotw_unconfirmed_result.php index 99dfcc658..867e7d253 100644 --- a/application/views/search/lotw_unconfirmed_result.php +++ b/application/views/search/lotw_unconfirmed_result.php @@ -17,7 +17,7 @@ if ($qsos->result() != NULL) { // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } diff --git a/application/views/search/search_result_ajax.php b/application/views/search/search_result_ajax.php index 16c94bfbc..639fe95ea 100644 --- a/application/views/search/search_result_ajax.php +++ b/application/views/search/search_result_ajax.php @@ -117,7 +117,7 @@ $ci =& get_instance(); // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } ?> diff --git a/application/views/setup/check_list.php b/application/views/setup/check_list.php index 47cd9c926..77e9688bd 100644 --- a/application/views/setup/check_list.php +++ b/application/views/setup/check_list.php @@ -2,7 +2,7 @@

-

Welcome to Cloudlog, before you can start logging QSOs you need to carry out the following.

+

Welcome to Wavelog, before you can start logging QSOs you need to carry out the following.

  • Install Country Files
  • diff --git a/application/views/station_profile/create.php b/application/views/station_profile/create.php index 8cdcaca07..945c9481c 100644 --- a/application/views/station_profile/create.php +++ b/application/views/station_profile/create.php @@ -36,7 +36,7 @@
    - +
    diff --git a/application/views/stations/index.php b/application/views/stations/index.php index d677c489a..7d3c43996 100644 --- a/application/views/stations/index.php +++ b/application/views/stations/index.php @@ -31,7 +31,7 @@ = 1) { ?> diff --git a/application/views/timeline/index.php b/application/views/timeline/index.php index a50552336..90502a154 100644 --- a/application/views/timeline/index.php +++ b/application/views/timeline/index.php @@ -80,7 +80,7 @@ // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } ?> diff --git a/application/views/update/index.php b/application/views/update/index.php index e2e75c82e..20fb9f2c4 100644 --- a/application/views/update/index.php +++ b/application/views/update/index.php @@ -33,7 +33,7 @@
    Apply DXCC Data to Logbook

    - After updating, Cloudlog can fill in missing callsign information in the logbook using the newly-obtained DXCC data. + After updating, Wavelog can fill in missing callsign information in the logbook using the newly-obtained DXCC data. You can choose to check just the QSOs in the logbook that are missing DXCC metadata or to re-check the entire logbook and update existing metadata as well, in case it has changed.

    @@ -42,7 +42,7 @@
    Apply Continent Data to Logbook

    - This function can be used to update QSO continent information for all QSOs in Cloudlog missing that information. + This function can be used to update QSO continent information for all QSOs in Wavelog missing that information.

    Check QSOs missing continent data

    - +
    @@ -57,4 +57,4 @@ input[type="email"] {
    -
    \ No newline at end of file + diff --git a/application/views/user/login.php b/application/views/user/login.php index 7ce6d8771..efa8ae318 100644 --- a/application/views/user/login.php +++ b/application/views/user/login.php @@ -30,10 +30,10 @@ body { }
    - +
    -

    +

    form_validation->set_error_delimiters('', ''); ?> @@ -56,4 +56,4 @@ body {
    -
    \ No newline at end of file + diff --git a/application/views/version_dialog/index.php b/application/views/version_dialog/index.php index 14288b16d..b91a31ed0 100644 --- a/application/views/version_dialog/index.php +++ b/application/views/version_dialog/index.php @@ -27,10 +27,10 @@ ?>
    [ - 'header' => 'User-Agent: Cloudlog - Amateur Radio Logbook' + 'header' => 'User-Agent: Wavelog - Amateur Radio Logbook' ] ]; $context = stream_context_create($options); diff --git a/application/views/view_log/partial/log.php b/application/views/view_log/partial/log.php index cc3c935f2..f43beebcf 100644 --- a/application/views/view_log/partial/log.php +++ b/application/views/view_log/partial/log.php @@ -32,7 +32,7 @@ // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } ?> diff --git a/application/views/view_log/partial/log_ajax.php b/application/views/view_log/partial/log_ajax.php index 5678497fc..60ab52880 100644 --- a/application/views/view_log/partial/log_ajax.php +++ b/application/views/view_log/partial/log_ajax.php @@ -15,7 +15,7 @@ function echo_table_header_col($ctx, $name) { case 'Band': echo ''.$ctx->lang->line('gen_hamradio_band').''; break; case 'Frequency': echo ''.$ctx->lang->line('gen_hamradio_frequency').''; break; case 'Operator': echo ''.$ctx->lang->line('gen_hamradio_operator').''; break; - case 'Location': echo ''.$ctx->lang->line('cloudlog_station_profile').''; break; + case 'Location': echo ''.$ctx->lang->line('wavelog_station_profile').''; break; case 'Name': echo ''.$ctx->lang->line('general_word_name').''; break; } } @@ -96,7 +96,7 @@ function echoQrbCalcLink($mygrid, $grid, $vucc) { // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } echo ''; ?> diff --git a/application/views/view_log/qso.php b/application/views/view_log/qso.php index 313c64ff1..fb9a47474 100644 --- a/application/views/view_log/qso.php +++ b/application/views/view_log/qso.php @@ -6,7 +6,7 @@ COL_NOTES != null) {?> @@ -62,7 +62,7 @@ // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } @@ -402,10 +402,10 @@ if($row->COL_SAT_NAME != null) { $twitter_band_sat = $row->COL_SAT_NAME." \u{1F6F0}\u{FE0F}"; - $hashtags = "#hamr #cloudlog #amsat"; + $hashtags = "#hamr #wavelog #amsat"; } else { $twitter_band_sat = $row->COL_BAND; - $hashtags = "#hamr #cloudlog"; + $hashtags = "#hamr #wavelog"; } if($row->COL_IOTA != null) { $hashtags .= " #IOTA ".$row->COL_IOTA; diff --git a/application/views/visitor/index.php b/application/views/visitor/index.php index f8974ac5d..2805749d4 100644 --- a/application/views/visitor/index.php +++ b/application/views/visitor/index.php @@ -89,7 +89,7 @@ function echoQrbCalcLink($mygrid, $grid, $vucc) { // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } diff --git a/application/views/visitor/layout/footer.php b/application/views/visitor/layout/footer.php index a0976e887..ac9895e02 100644 --- a/application/views/visitor/layout/footer.php +++ b/application/views/visitor/layout/footer.php @@ -1,4 +1,4 @@ - + diff --git a/application/views/visitor/layout/header.php b/application/views/visitor/layout/header.php index 718252a58..3bc813e01 100644 --- a/application/views/visitor/layout/header.php +++ b/application/views/visitor/layout/header.php @@ -33,7 +33,7 @@ - <?php if(isset($page_title)) { echo $page_title; } ?> - Cloudlog + <?php if(isset($page_title)) { echo $page_title; } ?> - Wavelog @@ -42,9 +42,9 @@ Cloudlog'; + echo 'Wavelog'; } else { - echo 'Cloudlog'; + echo 'Wavelog'; } ?> diff --git a/application/views/welcome/index.php b/application/views/welcome/index.php index 36f8b2fb9..21b9d5af1 100644 --- a/application/views/welcome/index.php +++ b/application/views/welcome/index.php @@ -11,8 +11,6 @@

    -

    After many years and hard work Cloudlog version 2.0 has finally arrived, this brings multi-user support, logbooks to group station locations, improved code with lots of speed increases sprinkled around.

    -

    This guide is to help you get your installation configured to work with all the new features please follow it!

    @@ -60,8 +58,8 @@

    Theres some new cronjobs to add with version 2.0.

    - # Update the Cloudlog installation every day at midnight
    - 0 0 * * * /bin/bash -c "Full-Path-To-Bash-Script/cloudlog.sh"
    + # Update the Wavelog installation every day at midnight
    + 0 0 * * * /bin/bash -c "Full-Path-To-Bash-Script/wavelog.sh"

    # Upload QSOs to Club Log (ignore cron job if this integration is not required)
    0 */6 * * * curl --silent /clublog/upload/username-with-clublog-login &>/dev/null
    @@ -99,7 +97,7 @@
    Assign ALL Station Locations to this username
    -

    With Cloudlog Version 2.0, Station Locations must be associated with a user pressing the button below will assign all Station Locations to the first user in the database

    +

    With Wavelog Version 2.0, Station Locations must be associated with a user pressing the button below will assign all Station Locations to the first user in the database

    @@ -111,7 +109,7 @@
    Create Station Logbooks
    -

    All the views now in Cloudlog are based around Station Logbooks, you can create as many as you want and group Station Locations it makes tracking awards a lot easier.

    +

    All the views now in Wavelog are based around Station Logbooks, you can create as many as you want and group Station Locations it makes tracking awards a lot easier.

    You don't have one at the moment and it can cause issues so press the button below and create a default logbook, you can change this later!

    @@ -146,7 +144,7 @@
    Update Country Files
    -

    Just a friendly reminder to update country files within Cloudlog so they are nice and up to date :)

    +

    Just a friendly reminder to update country files within Wavelog so they are nice and up to date :)

    diff --git a/application/views/widgets/qsos.php b/application/views/widgets/qsos.php index 7bb4b02f5..0e08f75f7 100644 --- a/application/views/widgets/qsos.php +++ b/application/views/widgets/qsos.php @@ -30,7 +30,7 @@ // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { - // Get Default date format from /config/cloudlog.php + // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } diff --git a/install/config/config.php b/install/config/config.php index 1950c5af0..eeea5f495 100644 --- a/install/config/config.php +++ b/install/config/config.php @@ -7,14 +7,12 @@ defined('BASEPATH') OR exit('No direct script access allowed'); | Install Options |-------------------------------------------------------------------------- | -| 'app_name' Name of the App 'Cloudlog' -| 'app_version' Set by the dev team. -| 'directory' directory where cloudlog is installed eg "logger" +| 'app_name' Name of the App 'Wavelog' +| 'directory' directory where wavelog is installed eg "logger" | 'callbook' Selects which Callbook lookup to use defaults "hamqth" but supports "qrz" */ -$config['app_name'] = "Cloudlog"; -$config['app_version'] = "2.4.5"; +$config['app_name'] = "Wavelog"; $config['directory'] = "%directory%"; $config['callbook'] = "hamqth"; // Options are hamqth or qrz @@ -510,7 +508,7 @@ $config['encryption_key'] = 'flossie1234555541'; | */ $config['sess_driver'] = 'files'; -$config['sess_cookie_name'] = 'ci_cloudlog'; +$config['sess_cookie_name'] = 'ci_wavelog'; $config['sess_expiration'] = 0; $config['sess_save_path'] = '/tmp'; $config['sess_match_ip'] = FALSE; diff --git a/install/index.php b/install/index.php index 9524e520a..7db827881 100644 --- a/install/index.php +++ b/install/index.php @@ -64,12 +64,12 @@ if($_POST) { $ch = curl_init(); $protocol=((!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') || $_SERVER['SERVER_PORT'] == 443) ? "https" : "http"; list($realHost,)=explode(':',$_SERVER['HTTP_HOST']); - $cloudlog_url=$protocol."://".$realHost.":".$_SERVER['SERVER_PORT']; - curl_setopt($ch, CURLOPT_URL,$cloudlog_url); + $wavelog_url=$protocol."://".$realHost.":".$_SERVER['SERVER_PORT']; + curl_setopt($ch, CURLOPT_URL,$wavelog_url); curl_setopt($ch, CURLOPT_VERBOSE, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($ch); - curl_setopt($ch, CURLOPT_URL,$cloudlog_url."/index.php/update/dxcc"); + curl_setopt($ch, CURLOPT_URL,$wavelog_url."/index.php/update/dxcc"); $result = curl_exec($ch); delDir(getcwd()); header('Location: '.$protocol."://".$_SERVER['HTTP_HOST'].$_POST['directory']); @@ -89,7 +89,7 @@ if($_POST) { - Install | Cloudlog + Install | Wavelog