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..973398985 100644 --- a/application/config/config.sample.php +++ b/application/config/config.sample.php @@ -9,7 +9,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); | | 'app_name' Name of the App 'Cloudlog' | 'app_version' Set by the dev team. -| 'directory' directory where cloudlog is installed eg "logger" +| 'directory' directory where wavelog is installed eg "logger" | 'callbook' Selects which Callbook lookup to use defaults "hamqth" but supports "qrz" */ @@ -508,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/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/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/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/Logbook.php b/application/controllers/Logbook.php index 84cef182c..da892bc69 100644 --- a/application/controllers/Logbook.php +++ b/application/controllers/Logbook.php @@ -695,7 +695,7 @@ class Logbook extends CI_Controller { // 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/controllers/Logbookadvanced.php b/application/controllers/Logbookadvanced.php index 19c60a604..2c277e1d9 100644 --- a/application/controllers/Logbookadvanced.php +++ b/application/controllers/Logbookadvanced.php @@ -62,7 +62,7 @@ class Logbookadvanced 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'); } @@ -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/Lotw.php b/application/controllers/Lotw.php index a328824a9..7ba36172d 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -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..46f6017f5 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')); @@ -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')); @@ -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/Qrz.php b/application/controllers/Qrz.php index 9ecfb72b6..c19c2e877 100644 --- a/application/controllers/Qrz.php +++ b/application/controllers/Qrz.php @@ -13,7 +13,7 @@ class Qrz extends CI_Controller { /* * Upload QSO to QRZ.com - * When called from the url cloudlog/qrz/upload, the function loops through all station_id's with a qrz api key defined. + * When called from the url wavelog/qrz/upload, the function loops through all station_id's with a qrz api key defined. * All QSOs not previously uploaded, will then be uploaded, one at a time */ public function upload() { 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/language/bulgarian/account_lang.php b/application/language/bulgarian/account_lang.php index e71da6d1b..91f0ea86e 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'] = 'Cloudlog 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'] = 'Cloudlog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Cloudlog 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 Cloudlog'; $lang['account_login'] = 'Login'; $lang['account_mastodon'] = 'Mastodonserver'; diff --git a/application/language/bulgarian/general_words_lang.php b/application/language/bulgarian/general_words_lang.php index a05f3b1d0..d5b8ceba8 100644 --- a/application/language/bulgarian/general_words_lang.php +++ b/application/language/bulgarian/general_words_lang.php @@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Общо разстояние'; $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; // Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Местоположение на станцията'; +$lang['wavelog_station_profile'] = 'Местоположение на станцията'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/bulgarian/options_lang.php b/application/language/bulgarian/options_lang.php index 837fe329d..72bcc76c9 100644 --- a/application/language/bulgarian/options_lang.php +++ b/application/language/bulgarian/options_lang.php @@ -2,7 +2,7 @@ defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта'); -$lang['options_cloudlog_options'] = 'Cloudlog Options'; +$lang['options_wavelog_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_appearance'] = 'Appearance'; @@ -42,7 +42,7 @@ $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_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. 'Cloudlog'"; $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'"; diff --git a/application/language/chinese_simplified/account_lang.php b/application/language/chinese_simplified/account_lang.php index 13a72ea9f..cef67ae11 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'] = 'Cloudlog语言'; +$lang['account_choose_wavelog_language'] = '选择Cloudlog语言'; $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'] = '登录Cloudlog'; $lang['account_login'] = '登录'; $lang['account_mastodon'] = 'Mastodon服务器'; diff --git a/application/language/chinese_simplified/general_words_lang.php b/application/language/chinese_simplified/general_words_lang.php index 2ef1d9c17..b493a299f 100644 --- a/application/language/chinese_simplified/general_words_lang.php +++ b/application/language/chinese_simplified/general_words_lang.php @@ -111,7 +111,7 @@ $lang['general_total_distance'] = '总计距离'; $lang['gen_max_file_upload_size'] = '最大上传文件大小是'; // Cloudlog Terms -$lang['cloudlog_station_profile'] = '电台站地址'; +$lang['wavelog_station_profile'] = '电台站地址'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/chinese_simplified/options_lang.php b/application/language/chinese_simplified/options_lang.php index 49989c024..0cd970921 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'] = 'Cloudlog 设置'; $lang['options_message1'] = '本设置是针对所有用户的全局设置,会覆盖对于单个用户的设置。'; $lang['options_appearance'] = '外观'; @@ -42,7 +42,7 @@ $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_address_hint'] = "发送邮件的邮箱地址,例如:'wavelog@example.com'"; $lang['options_email_sender_name_hint'] = "发送者的名字,例如:'Cloudlog'"; $lang['options_smtp_host_hint'] = "邮件服务器的域名,例如:'mail.example.com' (不带'ssl://'或'tls://')"; $lang['options_smtp_port_hint'] = "邮件服务器的SMTP端口,例如:如果使用了TLS -> '587',如果使用了SSL -> '465'"; diff --git a/application/language/czech/account_lang.php b/application/language/czech/account_lang.php index b524c7f2c..384765ed1 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í Cloudlogu'; $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'] = 'Cloudlog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Cloudlog 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 Cloudlogu'; $lang['account_login'] = 'Přihlásit se'; $lang['account_mastodon'] = 'Mastodon server'; diff --git a/application/language/czech/general_words_lang.php b/application/language/czech/general_words_lang.php index 46cb6d959..2faa97ea6 100644 --- a/application/language/czech/general_words_lang.php +++ b/application/language/czech/general_words_lang.php @@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Celková vzdálenost'; $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; // Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Umístění stanice'; +$lang['wavelog_station_profile'] = 'Umístění stanice'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/czech/options_lang.php b/application/language/czech/options_lang.php index b1bde5033..702727b99 100644 --- a/application/language/czech/options_lang.php +++ b/application/language/czech/options_lang.php @@ -2,7 +2,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Možnosti Cloudlogu'; +$lang['options_wavelog_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_appearance'] = 'Vzhled'; @@ -42,7 +42,7 @@ $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_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. 'Cloudlog'"; $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'"; diff --git a/application/language/dutch/account_lang.php b/application/language/dutch/account_lang.php index 72491743f..dd3fde62c 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'] = 'Cloudlog 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'] = 'Cloudlog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Cloudlog 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 Cloudlog'; $lang['account_login'] = 'Login'; $lang['account_mastodon'] = 'Mastodonserver'; diff --git a/application/language/dutch/general_words_lang.php b/application/language/dutch/general_words_lang.php index de05c57a3..c1a570c25 100644 --- a/application/language/dutch/general_words_lang.php +++ b/application/language/dutch/general_words_lang.php @@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Total Distance'; $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; // Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Station Profiel'; +$lang['wavelog_station_profile'] = 'Station Profiel'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/dutch/options_lang.php b/application/language/dutch/options_lang.php index c26ac382c..f7fb16fc0 100644 --- a/application/language/dutch/options_lang.php +++ b/application/language/dutch/options_lang.php @@ -2,7 +2,7 @@ defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan'); -$lang['options_cloudlog_options'] = 'Cloudlog Options'; +$lang['options_wavelog_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_appearance'] = 'Appearance'; @@ -42,7 +42,7 @@ $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_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. 'Cloudlog'"; $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'"; diff --git a/application/language/english/account_lang.php b/application/language/english/account_lang.php index a461e07e2..1048c01ed 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'] = 'Cloudlog 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'] = 'Cloudlog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Cloudlog 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 Cloudlog'; $lang['account_login'] = 'Login'; $lang['account_mastodon'] = 'Mastodonserver'; diff --git a/application/language/english/general_words_lang.php b/application/language/english/general_words_lang.php index 680b8b33e..3246c61b2 100644 --- a/application/language/english/general_words_lang.php +++ b/application/language/english/general_words_lang.php @@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Total Distance'; $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; // Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Station Location'; +$lang['wavelog_station_profile'] = 'Station Location'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/english/options_lang.php b/application/language/english/options_lang.php index a4f8b3cd0..c8e7f662b 100644 --- a/application/language/english/options_lang.php +++ b/application/language/english/options_lang.php @@ -2,7 +2,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Cloudlog Options'; +$lang['options_wavelog_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_appearance'] = 'Appearance'; @@ -42,7 +42,7 @@ $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_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. 'Cloudlog'"; $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'"; diff --git a/application/language/finnish/account_lang.php b/application/language/finnish/account_lang.php index 217044f23..2505eb491 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'] = 'Cloudlog 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'] = 'Cloudlog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Cloudlog 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 Cloudlogiin'; $lang['account_login'] = 'Kirjaudu'; $lang['account_mastodon'] = 'Mastodonserver'; diff --git a/application/language/finnish/general_words_lang.php b/application/language/finnish/general_words_lang.php index 4021a0d93..800a34d03 100644 --- a/application/language/finnish/general_words_lang.php +++ b/application/language/finnish/general_words_lang.php @@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Kokonaismatka'; $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; // Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Asemaprofiili'; +$lang['wavelog_station_profile'] = 'Asemaprofiili'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/finnish/options_lang.php b/application/language/finnish/options_lang.php index ce1763c6f..b01d19b4e 100644 --- a/application/language/finnish/options_lang.php +++ b/application/language/finnish/options_lang.php @@ -2,7 +2,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Cloudlog Options'; +$lang['options_wavelog_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_appearance'] = 'Ulkoasu'; @@ -42,7 +42,7 @@ $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_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. 'Cloudlog'"; $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'"; diff --git a/application/language/french/account_lang.php b/application/language/french/account_lang.php index 9f5dd6a33..d037d51db 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 Cloudlog"; $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 Cloudlog"; +$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 à Cloudlog"; $lang['account_login'] = "Login"; $lang['account_mastodon'] = "Mastodon Serveur"; diff --git a/application/language/french/general_words_lang.php b/application/language/french/general_words_lang.php index 59ce6705d..8dca91a7a 100644 --- a/application/language/french/general_words_lang.php +++ b/application/language/french/general_words_lang.php @@ -111,7 +111,7 @@ $lang['general_total_distance'] = "Distance Totale"; $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"; +$lang['wavelog_station_profile'] = "Profil de la Station"; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/french/options_lang.php b/application/language/french/options_lang.php index a4f8b3cd0..c8e7f662b 100644 --- a/application/language/french/options_lang.php +++ b/application/language/french/options_lang.php @@ -2,7 +2,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Cloudlog Options'; +$lang['options_wavelog_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_appearance'] = 'Appearance'; @@ -42,7 +42,7 @@ $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_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. 'Cloudlog'"; $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'"; diff --git a/application/language/german/account_lang.php b/application/language/german/account_lang.php index e9e4cac61..7ed2fdffc 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'] = 'Cloudlog 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'] = 'Cloudlog Sprache'; +$lang['account_choose_wavelog_language'] = 'Wähle eine Sprache für Cloudlog.'; $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 Cloudlog'; $lang['account_login'] = 'Anmeldung'; $lang['account_mastodon'] = 'Mastodonserver'; diff --git a/application/language/german/general_words_lang.php b/application/language/german/general_words_lang.php index 19a1c1967..28e59f787 100644 --- a/application/language/german/general_words_lang.php +++ b/application/language/german/general_words_lang.php @@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Entfernung'; $lang['gen_max_file_upload_size'] = 'Die max. Dateigrösse für Uploads beträgt '; // Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Stationsprofil'; +$lang['wavelog_station_profile'] = 'Stationsprofil'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/german/options_lang.php b/application/language/german/options_lang.php index c6055f53b..4b985b01b 100644 --- a/application/language/german/options_lang.php +++ b/application/language/german/options_lang.php @@ -2,7 +2,7 @@ defined('BASEPATH') OR exit('Direkter Zugriff auf Skripte ist nicht erlaubt'); -$lang['options_cloudlog_options'] = 'Cloudlog Optionen'; +$lang['options_wavelog_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_appearance'] = 'Erscheinungsbild'; @@ -42,7 +42,7 @@ $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_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. 'Cloudlog'"; $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'"; diff --git a/application/language/greek/account_lang.php b/application/language/greek/account_lang.php index d832b6ccd..2fc57257d 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'] = 'Cloudlog 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'] = 'Cloudlog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Cloudlog 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 Cloudlog'; $lang['account_login'] = 'Login'; $lang['account_mastodon'] = 'Mastodonserver'; diff --git a/application/language/greek/general_words_lang.php b/application/language/greek/general_words_lang.php index f8094920c..93d058291 100644 --- a/application/language/greek/general_words_lang.php +++ b/application/language/greek/general_words_lang.php @@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Συνολική Απόσταση'; $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; // Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Τοποθεσία Σταθμού'; +$lang['wavelog_station_profile'] = 'Τοποθεσία Σταθμού'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/greek/options_lang.php b/application/language/greek/options_lang.php index a4f8b3cd0..c8e7f662b 100644 --- a/application/language/greek/options_lang.php +++ b/application/language/greek/options_lang.php @@ -2,7 +2,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Cloudlog Options'; +$lang['options_wavelog_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_appearance'] = 'Appearance'; @@ -42,7 +42,7 @@ $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_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. 'Cloudlog'"; $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'"; diff --git a/application/language/italian/account_lang.php b/application/language/italian/account_lang.php index 439380ef2..aef83941f 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'] = 'Cloudlog 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'] = 'Cloudlog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Cloudlog 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 Cloudlog'; $lang['account_login'] = 'Login'; $lang['account_mastodon'] = 'Mastodonserver'; diff --git a/application/language/italian/general_words_lang.php b/application/language/italian/general_words_lang.php index 4d253f61b..561974d29 100644 --- a/application/language/italian/general_words_lang.php +++ b/application/language/italian/general_words_lang.php @@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Distanza Totale'; $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; // Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Luogo Stazione'; +$lang['wavelog_station_profile'] = 'Luogo Stazione'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/italian/options_lang.php b/application/language/italian/options_lang.php index a4f8b3cd0..c8e7f662b 100644 --- a/application/language/italian/options_lang.php +++ b/application/language/italian/options_lang.php @@ -2,7 +2,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Cloudlog Options'; +$lang['options_wavelog_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_appearance'] = 'Appearance'; @@ -42,7 +42,7 @@ $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_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. 'Cloudlog'"; $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'"; diff --git a/application/language/polish/account_lang.php b/application/language/polish/account_lang.php index b163ed3f7..548957e53 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'] = 'Cloudlog 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'] = 'Cloudlog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Cloudlog 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 Cloudlog'; $lang['account_login'] = 'Login'; $lang['account_mastodon'] = 'Mastodonserver'; diff --git a/application/language/polish/general_words_lang.php b/application/language/polish/general_words_lang.php index 23a436ef9..feda9eef3 100644 --- a/application/language/polish/general_words_lang.php +++ b/application/language/polish/general_words_lang.php @@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Suma odległości'; $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; // Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Lokalizacja stacji'; +$lang['wavelog_station_profile'] = 'Lokalizacja stacji'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/polish/options_lang.php b/application/language/polish/options_lang.php index a4f8b3cd0..c8e7f662b 100644 --- a/application/language/polish/options_lang.php +++ b/application/language/polish/options_lang.php @@ -2,7 +2,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Cloudlog Options'; +$lang['options_wavelog_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_appearance'] = 'Appearance'; @@ -42,7 +42,7 @@ $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_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. 'Cloudlog'"; $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'"; diff --git a/application/language/russian/account_lang.php b/application/language/russian/account_lang.php index fb94eb671..bd45504d6 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'] = 'Настройки Cloudlog'; $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'] = 'Язык Cloudlog'; +$lang['account_choose_wavelog_language'] = 'Выберите язык Cloudlog.'; $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'] = 'Вход в Cloudlog'; $lang['account_login'] = 'Вход'; $lang['account_mastodon'] = 'Сервер Mastodon'; diff --git a/application/language/russian/general_words_lang.php b/application/language/russian/general_words_lang.php index cbe48368d..dcf104bc0 100644 --- a/application/language/russian/general_words_lang.php +++ b/application/language/russian/general_words_lang.php @@ -112,7 +112,7 @@ $lang['general_total_distance'] = 'Суммарная дистанция'; $lang['gen_max_file_upload_size'] = 'Максимальный размер загружаемого файла '; // Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Месторасположение станции'; +$lang['wavelog_station_profile'] = 'Месторасположение станции'; $lang['gen_hamradio_cq'] = "CQ"; // ham radio terms diff --git a/application/language/russian/options_lang.php b/application/language/russian/options_lang.php index 9c8819786..aaabf95c4 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,7 +42,7 @@ $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_address_hint'] = "Адрес, с которого будет отправляться емэйл, к примеру, 'wavelog@example.com'"; $lang['options_email_sender_name_hint'] = "Имя отправителя, к примеру, 'Cloudlog'"; $lang['options_smtp_host_hint'] = "Адрес почтового сервера, к примеру, 'mail.example.com' (без 'ssl://' или 'tls://')"; $lang['options_smtp_port_hint'] = "SMTP порт почтового сервера, к примеру, при использовании TLS -> '587', при использовании SSL -> '465'"; diff --git a/application/language/spanish/account_lang.php b/application/language/spanish/account_lang.php index c0e4eb2ae..327b4f518 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 Cloudlog'; $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 Cloudlog'; +$lang['account_choose_wavelog_language'] = 'Seleccione el lenguaje de Cloudlog 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 Cloudlog'; $lang['account_login'] = 'Iniciar Sesión'; $lang['account_mastodon'] = 'Servidor de Mastodon'; diff --git a/application/language/spanish/general_words_lang.php b/application/language/spanish/general_words_lang.php index 92fd5f3ab..f0cc50dbb 100644 --- a/application/language/spanish/general_words_lang.php +++ b/application/language/spanish/general_words_lang.php @@ -112,7 +112,7 @@ $lang['general_total_distance'] = 'Distancia total'; $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'; +$lang['wavelog_station_profile'] = 'Perfil de estación'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/spanish/options_lang.php b/application/language/spanish/options_lang.php index 5428c39ca..6a34336dc 100644 --- a/application/language/spanish/options_lang.php +++ b/application/language/spanish/options_lang.php @@ -2,7 +2,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Opciones de Cloudlog'; +$lang['options_wavelog_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_appearance'] = 'Apariencia'; @@ -42,7 +42,7 @@ $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_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. 'Cloudlog'"; $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'"; diff --git a/application/language/swedish/account_lang.php b/application/language/swedish/account_lang.php index 5cad692a3..6cc35ca55 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'] = 'Cloudlog 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'] = 'Cloudlog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Cloudlog 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 Cloudlog'; $lang['account_login'] = 'Login'; $lang['account_mastodon'] = 'Mastodonserver'; diff --git a/application/language/swedish/general_words_lang.php b/application/language/swedish/general_words_lang.php index 7734dd6eb..b05858c8c 100644 --- a/application/language/swedish/general_words_lang.php +++ b/application/language/swedish/general_words_lang.php @@ -112,7 +112,7 @@ $lang['general_total_distance'] = 'Totalt avstånd'; $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; // Cloudlog Terms -$lang['cloudlog_station_profile'] = 'Stationsplats'; +$lang['wavelog_station_profile'] = 'Stationsplats'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/swedish/options_lang.php b/application/language/swedish/options_lang.php index 4003275f3..6df51a2df 100644 --- a/application/language/swedish/options_lang.php +++ b/application/language/swedish/options_lang.php @@ -2,7 +2,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Cloudlog-alternativ'; +$lang['options_wavelog_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_appearance'] = 'Utseende'; @@ -42,7 +42,7 @@ $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_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. 'Cloudlog'"; $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'"; diff --git a/application/language/turkish/account_lang.php b/application/language/turkish/account_lang.php index 60ba989fc..3bcbbe081 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'] = 'Cloudlog 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'] = 'Cloudlog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Cloudlog 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 Cloudlog'; $lang['account_login'] = 'Login'; $lang['account_mastodon'] = 'Mastodonserver'; diff --git a/application/language/turkish/general_words_lang.php b/application/language/turkish/general_words_lang.php index 6743f6771..81de8b45f 100644 --- a/application/language/turkish/general_words_lang.php +++ b/application/language/turkish/general_words_lang.php @@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Topam mesafe'; $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; // Cloudlog Terms -$lang['cloudlog_station_profile'] = 'İstasyon Konumu'; +$lang['wavelog_station_profile'] = 'İstasyon Konumu'; // ham radio terms $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/turkish/options_lang.php b/application/language/turkish/options_lang.php index a4f8b3cd0..c8e7f662b 100644 --- a/application/language/turkish/options_lang.php +++ b/application/language/turkish/options_lang.php @@ -2,7 +2,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_cloudlog_options'] = 'Cloudlog Options'; +$lang['options_wavelog_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_appearance'] = 'Appearance'; @@ -42,7 +42,7 @@ $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_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. 'Cloudlog'"; $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'"; 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..b5183fcfc 100644 --- a/application/migrations/059_add_default_theme_to_options_table.php +++ b/application/migrations/059_add_default_theme_to_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/060_add_tileserver_to_options.php b/application/migrations/060_add_tileserver_to_options.php index 837160a73..3ecc70875 100644 --- a/application/migrations/060_add_tileserver_to_options.php +++ b/application/migrations/060_add_tileserver_to_options.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/061_add_lang_to_options.php b/application/migrations/061_add_lang_to_options.php index 6a424b199..be28d9996 100644 --- a/application/migrations/061_add_lang_to_options.php +++ b/application/migrations/061_add_lang_to_options.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/062_add_globalsearch_to_options.php b/application/migrations/062_add_globalsearch_to_options.php index 08b5ebb6f..319fec446 100644 --- a/application/migrations/062_add_globalsearch_to_options.php +++ b/application/migrations/062_add_globalsearch_to_options.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/064_add_user_sota_lookup.php b/application/migrations/064_add_user_sota_lookup.php index 5a050e22b..ac7d08c34 100644 --- a/application/migrations/064_add_user_sota_lookup.php +++ b/application/migrations/064_add_user_sota_lookup.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/065_changed_dxcc_tables_utf8mb4.php b/application/migrations/065_changed_dxcc_tables_utf8mb4.php index d13473575..eb062106c 100644 --- a/application/migrations/065_changed_dxcc_tables_utf8mb4.php +++ b/application/migrations/065_changed_dxcc_tables_utf8mb4.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/066_add_user_hide_notes.php b/application/migrations/066_add_user_hide_notes.php index 447be1226..c92d21bb1 100644 --- a/application/migrations/066_add_user_hide_notes.php +++ b/application/migrations/066_add_user_hide_notes.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/067_add_index_cqz_prop.php b/application/migrations/067_add_index_cqz_prop.php index 79698faf5..5ac00a47a 100644 --- a/application/migrations/067_add_index_cqz_prop.php +++ b/application/migrations/067_add_index_cqz_prop.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/068_add_cat_timeout_to_options.php b/application/migrations/068_add_cat_timeout_to_options.php index 96f2f1b40..738eedc85 100644 --- a/application/migrations/068_add_cat_timeout_to_options.php +++ b/application/migrations/068_add_cat_timeout_to_options.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/069_add_user_definable_columns.php b/application/migrations/069_add_user_definable_columns.php index 064269e92..43a9e620f 100644 --- a/application/migrations/069_add_user_definable_columns.php +++ b/application/migrations/069_add_user_definable_columns.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/070_add_fifth_column.php b/application/migrations/070_add_fifth_column.php index 745469c7d..cd90db0c8 100644 --- a/application/migrations/070_add_fifth_column.php +++ b/application/migrations/070_add_fifth_column.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/072_create_station_logbook_table.php b/application/migrations/072_create_station_logbook_table.php index 452ec50b8..81ba41a03 100644 --- a/application/migrations/072_create_station_logbook_table.php +++ b/application/migrations/072_create_station_logbook_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/073_create_station_logbook_relationship_table.php b/application/migrations/073_create_station_logbook_relationship_table.php index 1c3b76331..c76871d7b 100644 --- a/application/migrations/073_create_station_logbook_relationship_table.php +++ b/application/migrations/073_create_station_logbook_relationship_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/075_add_active_station_logbook_to_user_table.php b/application/migrations/075_add_active_station_logbook_to_user_table.php index 89967405b..dea42b6bc 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,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/083_create_station_logbook_relationship_table2.php b/application/migrations/083_create_station_logbook_relationship_table2.php index b6f48a27d..4335013b5 100644 --- a/application/migrations/083_create_station_logbook_relationship_table2.php +++ b/application/migrations/083_create_station_logbook_relationship_table2.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/102_add_version_two_trigger_to_options.php b/application/migrations/102_add_version_two_trigger_to_options.php index f1da08677..8e8bd225f 100644 --- a/application/migrations/102_add_version_two_trigger_to_options.php +++ b/application/migrations/102_add_version_two_trigger_to_options.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/130_add_version_to_config.php b/application/migrations/130_add_version_to_config.php index 968377e07..1893b92ae 100644 --- a/application/migrations/130_add_version_to_config.php +++ b/application/migrations/130_add_version_to_config.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/models/Options_model.php b/application/models/Options_model.php index d323e10f8..a1fa58d49 100644 --- a/application/models/Options_model.php +++ b/application/models/Options_model.php @@ -3,7 +3,7 @@ /* Class: Options_model This model handles all database interactions for the options table - used for global settings within cloudlog. + used for global settings within wavelog. */ class Options_model extends CI_Model { diff --git a/application/views/activators/index.php b/application/views/activators/index.php index ef899bc17..bcc6041b2 100644 --- a/application/views/activators/index.php +++ b/application/views/activators/index.php @@ -59,7 +59,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/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/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 @@